115 lines
2.3 KiB
JSON
115 lines
2.3 KiB
JSON
{
|
||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
"additionalProperties": true,
|
||
"properties": {
|
||
"_slug": {
|
||
"description": "Entry identifier (URL slug / filename without extension)",
|
||
"type": "string"
|
||
},
|
||
"author": {
|
||
"description": "Author or source of quote",
|
||
"type": "string"
|
||
},
|
||
"layout": {
|
||
"description": "Column width (grid) like CF_ComponentLayout",
|
||
"properties": {
|
||
"breakout": {
|
||
"default": false,
|
||
"description": "Breakout layout (full width)",
|
||
"type": "boolean"
|
||
},
|
||
"desktop": {
|
||
"description": "Width on desktop (optional)",
|
||
"enum": [
|
||
"1",
|
||
"2",
|
||
"3",
|
||
"4",
|
||
"5",
|
||
"6",
|
||
"7",
|
||
"8",
|
||
"9",
|
||
"10",
|
||
"11",
|
||
"12"
|
||
],
|
||
"type": "string"
|
||
},
|
||
"mobile": {
|
||
"default": "12",
|
||
"description": "Width on mobile (1–12)",
|
||
"enum": [
|
||
"1",
|
||
"2",
|
||
"3",
|
||
"4",
|
||
"5",
|
||
"6",
|
||
"7",
|
||
"8",
|
||
"9",
|
||
"10",
|
||
"11",
|
||
"12"
|
||
],
|
||
"type": "string"
|
||
},
|
||
"spaceBottom": {
|
||
"default": 0,
|
||
"description": "Space below (rem)",
|
||
"enum": [
|
||
0,
|
||
0.5,
|
||
1,
|
||
1.5,
|
||
2
|
||
],
|
||
"type": "number"
|
||
},
|
||
"tablet": {
|
||
"description": "Width on tablet (optional)",
|
||
"enum": [
|
||
"1",
|
||
"2",
|
||
"3",
|
||
"4",
|
||
"5",
|
||
"6",
|
||
"7",
|
||
"8",
|
||
"9",
|
||
"10",
|
||
"11",
|
||
"12"
|
||
],
|
||
"type": "string"
|
||
}
|
||
},
|
||
"required": [
|
||
"mobile"
|
||
],
|
||
"type": "object"
|
||
},
|
||
"quote": {
|
||
"description": "Quote text",
|
||
"type": "string"
|
||
},
|
||
"variant": {
|
||
"default": "left",
|
||
"description": "Quote alignment",
|
||
"enum": [
|
||
"left",
|
||
"right"
|
||
],
|
||
"type": "string"
|
||
}
|
||
},
|
||
"required": [
|
||
"_slug",
|
||
"quote",
|
||
"author",
|
||
"variant"
|
||
],
|
||
"type": "object"
|
||
} |