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": {
|
2023-12-16 17:46:48 +01:00
|
|
|
"$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
|
|
|
}
|
2023-05-20 03:41:47 +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",
|
2023-05-20 03:41:47 +02:00
|
|
|
"traits",
|
|
|
|
"isRecruiting"
|
2022-10-06 01:42:15 +02:00
|
|
|
]
|
|
|
|
}
|