1
0
cms11/resources/schemas/index.json

56 lines
1.3 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"
},
2024-05-15 11:23:43 +02:00
"description": {
"type": "string"
},
2024-04-26 12:50:38 +02:00
"date": {
"type": "string",
"pattern": "^(\\d{4}-\\d{2}-\\d{2}(T\\d{2}:\\d{2}:\\d{2}(\\+|-)\\d{2}:\\d{2})?)$"
},
"coauthor": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
2024-05-09 21:51:12 +02:00
"required": ["name"]
2024-04-26 12:50:38 +02:00
}
},
"cover": {
"type": "string"
},
"logo": {
"type": "string"
},
"virtualMetadata": {
"type": "array"
},
"wikidataEntityId": {
"type": "string"
},
"rebrickableId": {
"type": "string"
},
"productId": {
"type": "string"
}
},
2024-05-09 21:51:12 +02:00
"required": ["title"],
2024-04-26 12:50:38 +02:00
"additionalProperties": false
2024-05-09 21:51:12 +02:00
}