Managed profile experiment
Record Key
tid
Timestamp-based ID
Properties
avatar
string
uri
Optional
A valid URI.
maxLength: 2048 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Required
No description available.
maxLength: 2560 bytesmaxGraphemes: 256 graphemesname
string
Required
No description available.
maxLength: 640 bytesmaxGraphemes: 64 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt",
"name",
"description"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
},
"avatar": {
"type": "string",
"format": "uri",
"maxLength": 2048
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 2560,
"maxGraphemes": 256
}
}
},
"description": "Managed profile experiment"
}