A collection to organize drawings into folders
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
Collection description
maxLength: 500 bytesmaxGraphemes: 200 graphemesisPublic
boolean
Optional
Whether the collection is publicly visible
Default:
truename
string
Required
Collection name
maxLength: 100 bytesminLength: 1 bytesmaxGraphemes: 50 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 100,
"minLength": 1,
"description": "Collection name",
"maxGraphemes": 50
},
"isPublic": {
"type": "boolean",
"default": true,
"description": "Whether the collection is publicly visible"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 500,
"description": "Collection description",
"maxGraphemes": 200
}
}
},
"description": "A collection to organize drawings into folders"
}