A group of image variants for display purposes
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"main",
"thumbnail",
"parent"
],
"properties": {
"main": {
"type": "blob",
"accept": [
"image/jpeg",
"image/png"
],
"maxSize": 3000000
},
"parent": {
"type": "object",
"required": [
"cid",
"atUri"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"atUri": {
"type": "string",
"format": "at-uri"
}
}
},
"thumbnail": {
"type": "blob",
"accept": [
"image/jpeg",
"image/png"
],
"maxSize": 100000
}
}
},
"description": "A group of image variants for display purposes"
}