apxtrib/nationschainssave/schema/tribes.json
2023-04-29 06:32:56 +00:00

38 lines
922 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "nationchains/schema/tribes",
"title": "Tribes",
"description": "A tribe belonging to a town",
"type": "object",
"properties": {
"tribeId":{
"type":"string",
"pattern":"^[a-z0-9]*$"
},
"townId": {
"type": "string",
"$ref": "nationchains/towns/idx/towns_uuid_uuid.json"
},
"nationId": {
"type": "string",
"$ref": "nationchains/nations/idx/nations_uuid_uuid.json"
},
"status": {
"default": "unchain",
"type": "string",
"enum": ["chain","tochain","unchain"]
},
"dns": {
"type": "array",
"items":{"type":"string", "uniqueItems":true}
}
},
"required": ["townId", "status", "nationId", "dns"],
"apxprimarykey": ["tribeId"],
"apxsearchindex": [
{ "key": "status", "value": "tribeId" },
{ "key": "tribeId", "value": [] }
]
}