An example record for showing permissions ets
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"minLength": 1,
"description": "A name of something",
"maxGraphemes": 64
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "An example record for showing permissions ets"
}