Managed Role experiment
Record Key
tid
Timestamp-based ID
Properties
color
string
Optional
Hex color code
maxLength: 64 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
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"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
},
"color": {
"type": "string",
"maxLength": 64,
"description": "Hex color code"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 2560,
"maxGraphemes": 256
}
}
},
"description": "Managed Role experiment"
}