Unciv/docs/Modders/schemas/uniques.json
2023-09-22 11:22:37 +03:00

21 lines
612 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "array",
"description": "https://yairm210.github.io/Unciv/Modders/uniques/",
"items": {
"type": "string",
"allOf": [
{
"type": "string",
"description": "All <> brackets come in pairs",
"pattern": "^[^><]*(\\<[^>]*\\>[^><]*)*$"
},
{
"type": "string",
"description": "All [] brackets come in pairs",
"pattern": "^[^\\[\\]]*(\\[[^\\[\\]]*\\][^\\[\\]]*)*$"
}
]
}
}