some example cat lexicon
Record Key
any
Any valid record key
Properties
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"minLength": 1,
"description": "cat name",
"maxGraphemes": 64
},
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 2000000,
"description": "picture of the cat"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "some example cat lexicon"
}