JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Equipment",
"type": "object",
"properties": {
"slug": {
"type": "string"
},
"name": {
"type": "string"
},
"name_en": {
"type": [
"string",
"null"
]
},
"section": {
"type": "string",
"enum": [
"tools",
"adventuring_gear"
]
},
"cost": {
"type": [
"string",
"null"
]
},
"weight": {
"type": [
"string",
"null"
]
},
"ability": {
"type": [
"string",
"null"
]
},
"utilize": {
"type": [
"string",
"null"
]
},
"craft": {
"type": "array",
"items": {
"type": "string"
}
},
"variants": {
"type": [
"string",
"null"
]
},
"description_md": {
"type": "string"
}
},
"required": [
"slug",
"name",
"name_en",
"section",
"cost",
"weight",
"ability",
"utilize",
"craft",
"variants",
"description_md"
],
"additionalProperties": false
}