No description available.
Properties
aspectRatio
string
Optional
Aspect ratio mode
caption
string
Optional
Grid caption
gridRows
integer
Optional
Number of rows in the grid
minimum: 1maximum: 2images
array
of ref#gridImage
Required
Array of images in the grid (2-6)
maxLength: 6 itemsminLength: 2 itemsView raw schema
{
"type": "object",
"required": [
"images"
],
"properties": {
"images": {
"type": "array",
"items": {
"ref": "#gridImage",
"type": "ref"
},
"required": true,
"maxLength": 6,
"minLength": 2,
"description": "Array of images in the grid (2-6)"
},
"caption": {
"type": "string",
"description": "Grid caption"
},
"gridRows": {
"type": "integer",
"maximum": 2,
"minimum": 1,
"description": "Number of rows in the grid"
},
"aspectRatio": {
"enum": [
"landscape",
"portrait",
"square",
"mosaic"
],
"type": "string",
"description": "Aspect ratio mode"
}
}
}