1
0
cms11/resources/schemas/index.json

64 lines
1.6 KiB
JSON
Raw Normal View History

2024-04-26 12:50:38 +02:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Bundle metadata",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"hideTitle": {
"type": "boolean"
},
"subTitle": {
"type": "string"
},
"date": {
"type": "string",
"pattern": "^(\\d{4}-\\d{2}-\\d{2}(T\\d{2}:\\d{2}:\\d{2}(\\+|-)\\d{2}:\\d{2})?)$"
},
2024-05-05 11:16:18 +02:00
"lastModified": {
"type": "string",
"pattern": "^(\\d{4}-\\d{2}-\\d{2}(T\\d{2}:\\d{2}:\\d{2}(\\+|-)\\d{2}:\\d{2})?)$"
},
"lastRendered": {
"type": "string",
"pattern": "^(\\d{4}-\\d{2}-\\d{2}(T\\d{2}:\\d{2}:\\d{2}(\\+|-)\\d{2}:\\d{2})?)$"
},
2024-04-26 12:50:38 +02:00
"coauthor": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"required": [
"name"
]
}
},
"cover": {
"type": "string"
},
"logo": {
"type": "string"
},
"virtualMetadata": {
"type": "array"
},
"wikidataEntityId": {
"type": "string"
},
"rebrickableId": {
"type": "string"
},
"productId": {
"type": "string"
}
},
"required": [
"title"
],
"additionalProperties": false
}