{
"lexicon": 1,
"id": "app.nblr.experimental.collection",
"defs": {
"main": {
"type": "record",
"description": "Record representing a collection of AT Protocol records.",
"key": "tid",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 64,
"minLength": 1,
"description": "Display name for the collection."
},
"description": {
"type": "string",
"maxGraphemes": 300,
"maxLength": 3000,
"description": "Description of the collection."
},
"icon": {
"type": "string",
"minLength": 1,
"maxGraphemes": 1,
"maxLength": 32,
"description": "An emoji to represent the collection."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}
}
}