2024-03-10 02:54:56 +07:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"name": { "type": "string" },
|
|
|
|
"text": { "type": "string" },
|
2024-08-25 06:04:00 +07:00
|
|
|
"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" },
|
|
|
|
|
2024-03-10 02:54:56 +07:00
|
|
|
"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-03-10 02:54:56 +07:00
|
|
|
},
|
2024-09-06 14:34:34 +07:00
|
|
|
"required": ["text", "uniques"],
|
2024-03-10 02:54:56 +07:00
|
|
|
"additionalProperties": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
2024-06-16 03:14:51 +07:00
|
|
|
"name"
|
2024-03-10 02:54:56 +07:00
|
|
|
],
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|
|
|
|
}
|