2022-09-18 17:49:41 +02:00
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
|
|
"name",
|
|
|
|
"faction",
|
|
|
|
"role"
|
|
|
|
],
|
|
|
|
"description": "The public registration information of the ship",
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "The agent's registered name of the ship",
|
|
|
|
"minLength": 1,
|
|
|
|
"examples": [
|
|
|
|
"Red Falcon",
|
|
|
|
"Black Pearl IV",
|
|
|
|
"The Flying Dutchman"
|
|
|
|
]
|
|
|
|
},
|
2022-09-19 19:22:16 +02:00
|
|
|
"factionSymbol": {
|
2022-09-18 17:49:41 +02:00
|
|
|
"type": "string",
|
|
|
|
"description": "The symbol of the faction the ship is registered with",
|
|
|
|
"minLength": 1,
|
|
|
|
"examples": [
|
|
|
|
"F_COMM"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"role": {
|
|
|
|
"$ref": "./ShipRole.json"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|