Unciv/docs/Modders/schemas/events.json
2024-09-06 15:14:53 +03:00

33 lines
1.2 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"text": { "type": "string" },
"presentation": { "enum": ["None", "Alert", "Floating"] },
"uniques": { "$ref": "https://raw.githubusercontent.com/yairm210/Unciv/master/docs/Modders/schemas/uniques.json" },
"civilopediaText": { "$ref": "https://raw.githubusercontent.com/yairm210/Unciv/master/docs/Modders/schemas/civilopediaText.json" },
"choices": {
"type": "array",
"items": {
"properties": {
"text": { "type": "string" },
"uniques": { "$ref": "https://raw.githubusercontent.com/yairm210/Unciv/master/docs/Modders/schemas/uniques.json" },
"civilopediaText": { "$ref": "https://raw.githubusercontent.com/yairm210/Unciv/master/docs/Modders/schemas/civilopediaText.json" }
},
"required": ["text", "uniques"],
"additionalProperties": false
}
}
},
"required": [
"name"
],
"additionalProperties": false
}
}