Role experiment
Record Key
tid
Timestamp-based ID
Properties
accounts
array
of
ref
net.atview.experimental.account
Required
No description available.
createdAt
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",
"accounts"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
},
"accounts": {
"type": "array",
"items": {
"ref": "net.atview.experimental.account",
"type": "ref"
}
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 2560,
"maxGraphemes": 256
}
}
},
"description": "Role experiment"
}