Unciv/docs/Modders/schemas/events.json

33 lines
1.2 KiB
JSON
Raw Normal View History

{
"$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"] },
2024-09-06 14:34:34 +07:00
"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" },
2024-09-06 14:34:34 +07:00
"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" }
},
2024-09-06 14:34:34 +07:00
"required": ["text", "uniques"],
"additionalProperties": false
}
}
},
"required": [
2024-06-16 03:14:51 +07:00
"name"
],
"additionalProperties": false
}
}