Files
nana-story/contracts/schema/item-spec.schema.json
T
2026-07-28 12:51:00 +08:00

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"
}
}
}