55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "notarius.dnd.spells",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["spell_casts"],
|
|
"properties": {
|
|
"spell_casts": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"caster",
|
|
"spell",
|
|
"source_refs"
|
|
],
|
|
"properties": {
|
|
"caster": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"spell": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"source_refs": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["source_id", "start_unit_id", "end_unit_id"],
|
|
"properties": {
|
|
"source_id": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"start_unit_id": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"end_unit_id": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|