api-docs/models/Faction.json

43 lines
962 B
JSON
Raw Normal View History

2022-10-06 01:42:15 +02:00
{
2023-06-09 22:50:36 +02:00
"description": "Faction details.",
2022-10-06 01:42:15 +02:00
"type": "object",
"properties": {
"symbol": {
"$ref": "./FactionSymbol.json"
2022-10-06 01:42:15 +02:00
},
"name": {
"type": "string",
2023-06-09 22:50:36 +02:00
"minLength": 1,
"description": "Name of the faction."
2022-10-06 01:42:15 +02:00
},
"description": {
"type": "string",
2023-06-09 22:50:36 +02:00
"minLength": 1,
"description": "Description of the faction."
2022-10-06 01:42:15 +02:00
},
"headquarters": {
"type": "string",
2023-06-09 22:50:36 +02:00
"minLength": 1,
"description": "The waypoint in which the faction's HQ is located in."
2022-10-06 01:42:15 +02:00
},
"traits": {
"type": "array",
2023-06-09 22:50:36 +02:00
"description": "List of traits that define this faction.",
2022-10-06 01:42:15 +02:00
"items": {
2022-10-22 18:05:01 +02:00
"$ref": "./FactionTrait.json"
2022-10-06 01:42:15 +02:00
}
},
"isRecruiting": {
"type": "boolean",
"description": "Whether or not the faction is currently recruiting new agents."
2022-10-06 01:42:15 +02:00
}
},
"required": [
"symbol",
"name",
"description",
"headquarters",
"traits",
"isRecruiting"
2022-10-06 01:42:15 +02:00
]
}