cdb/schema/item.json
2024-08-28 22:05:15 +02:00

38 lines
No EOL
1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"title": "Item",
"description": "Item Metadata",
"properties": {
"name": {
"type": "string",
"title": "Item Name",
"description": "The name of the Item"
},
"category": {
"title": "Category",
"description": "The category of the item",
"type": "string"
},
"variants": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"title": "Item Variant",
"description": "A Variant of an Item",
"properties": {
"name": {
"type": "string",
"title": "Variant Name",
"description": "The name of the Variant"
}
}
}
}
},
"required": [
"name",
"variants"
]
}