api-docs/models/ShipRegistration.json

24 lines
513 B
JSON
Raw Permalink Normal View History

2022-09-18 17:49:41 +02:00
{
"type": "object",
"description": "The public registration information of the ship",
"properties": {
"name": {
"type": "string",
"description": "The agent's registered name of the ship",
2022-10-16 06:34:08 +02:00
"minLength": 1
2022-09-18 17:49:41 +02:00
},
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",
2022-10-16 06:34:08 +02:00
"minLength": 1
2022-09-18 17:49:41 +02:00
},
"role": {
"$ref": "./ShipRole.json"
}
2022-10-22 18:05:01 +02:00
},
"required": [
"name",
"factionSymbol",
2022-10-22 18:05:01 +02:00
"role"
]
2022-09-18 17:49:41 +02:00
}