39 lines
635 B
JSON
39 lines
635 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "ItemSpec",
|
|
"type": "object",
|
|
"required": [
|
|
"header",
|
|
"name",
|
|
"description",
|
|
"tags",
|
|
"lore_refs",
|
|
"mechanics",
|
|
"hidden_facts"
|
|
],
|
|
"properties": {
|
|
"header": {
|
|
"$ref": "resource-header.schema.json"
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"description": {
|
|
"type": "string"
|
|
},
|
|
"tags": {
|
|
"type": "array"
|
|
},
|
|
"lore_refs": {
|
|
"type": "array"
|
|
},
|
|
"mechanics": {
|
|
"type": "object"
|
|
},
|
|
"hidden_facts": {
|
|
"type": "array"
|
|
}
|
|
}
|
|
}
|