Add stats as separate schema

This commit is contained in:
Yair Morgenstern
2023-09-21 23:37:34 +03:00
parent cb27d13723
commit 38e0d6bd38

View File

@ -0,0 +1,14 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"properties": {
"production": { "type": "number" },
"food": { "type": "number" },
"gold": { "type": "number" },
"science": { "type": "number" },
"culture": { "type": "number" },
"happiness": { "type": "number" },
"faith": { "type": "number" }
},
"additionalProperties": false
}