themes-noir/blocks/image_pair.schema.json

27 lines
682 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Image Pair",
"description": "50/50 photograph diptych with a shared caption beneath.",
"type": "object",
"properties": {
"left": {
"type": "string",
"title": "Left Image",
"description": "Left photograph in the diptych.",
"x-editor": "media"
},
"right": {
"type": "string",
"title": "Right Image",
"description": "Right photograph in the diptych.",
"x-editor": "media"
},
"caption": {
"type": "string",
"title": "Caption",
"description": "Shared caption shown beneath both images.",
"x-editor": "text"
}
}
}