2024-02-10 15:25:47 -05:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
"title": "Section",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"title": { "type": "string" },
|
|
|
|
"slug": { "type": "string" },
|
|
|
|
"description": { "type": "string" },
|
|
|
|
"intro": { "type": "string" },
|
|
|
|
"icon": { "type": "string" },
|
|
|
|
"color": { "type": "string" },
|
|
|
|
"checklist": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"point": { "type": "string" },
|
2024-03-10 19:03:58 -04:00
|
|
|
"priority": { "type": "string", "enum": ["essential", "optional", "advanced"] },
|
2024-02-10 15:25:47 -05:00
|
|
|
"details": { "type": "string" }
|
|
|
|
},
|
|
|
|
"required": ["point", "priority", "details"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"furtherLinks": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"title": { "type": "string" },
|
|
|
|
"url": { "type": "string", "format": "uri" },
|
|
|
|
"description": { "type": "string" }
|
|
|
|
},
|
|
|
|
"required": ["title", "url", "description"]
|
|
|
|
},
|
|
|
|
"minItems": 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["title", "slug", "description", "intro", "checklist"],
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|
|
|
|
}
|