No description available.
Record Key
tid
Timestamp-based ID
Properties
caption
string
Optional
Optional caption for the entire gallery
maxLength: 3000 bytesmaxGraphemes: 300 graphemesimages
array
of
ref
blog.pckt.block.image#imageAttrs
Required
Array of image blocks in display order
maxLength: 50 itemsminLength: 1 itemslayout
string
Optional
Layout style for rendering the gallery (e.g. grid, carousel, masonry, list)
maxLength: 50 bytestitle
string
Optional
Optional title for the gallery
maxLength: 200 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"images"
],
"properties": {
"title": {
"type": "string",
"maxLength": 200,
"description": "Optional title for the gallery"
},
"images": {
"type": "array",
"items": {
"ref": "blog.pckt.block.image#imageAttrs",
"type": "ref"
},
"maxLength": 50,
"minLength": 1,
"description": "Array of image blocks in display order"
},
"layout": {
"type": "string",
"maxLength": 50,
"description": "Layout style for rendering the gallery (e.g. grid, carousel, masonry, list)"
},
"caption": {
"type": "string",
"maxLength": 3000,
"description": "Optional caption for the entire gallery",
"maxGraphemes": 300
}
}
}
}