api-docs/models/Faction.json
2022-12-07 22:41:33 -08:00

36 lines
580 B
JSON

{
"description": "",
"type": "object",
"properties": {
"symbol": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string",
"minLength": 1
},
"headquarters": {
"type": "string",
"minLength": 1
},
"traits": {
"type": "array",
"items": {
"type": "object",
"$ref": "./FactionTrait.json"
}
}
},
"required": [
"symbol",
"name",
"description",
"headquarters",
"traits"
]
}