themes-noir/blocks/case_study.schema.json

49 lines
1.2 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Project Case Study",
"description": "Long-form project spread with sticky meta rail and image-led prose.",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Project Title",
"description": "Display title for the project.",
"x-editor": "text"
},
"client": {
"type": "string",
"title": "Client",
"description": "Client or commissioning party.",
"x-editor": "text"
},
"year": {
"type": "integer",
"title": "Year",
"description": "Year of the project.",
"x-editor": "number"
},
"credits": {
"type": "array",
"title": "Credits",
"description": "Production credits, one entry per line.",
"x-editor": "array",
"default": [],
"items": {
"type": "string",
"x-editor": "text"
}
},
"images": {
"type": "array",
"title": "Images",
"description": "Photographs in the case study spread.",
"x-editor": "array",
"default": [],
"items": {
"type": "string",
"x-editor": "media"
}
}
}
}