api-docs/models/ShipRegistration.json
2023-05-10 08:11:12 -07:00

24 lines
513 B
JSON

{
"type": "object",
"description": "The public registration information of the ship",
"properties": {
"name": {
"type": "string",
"description": "The agent's registered name of the ship",
"minLength": 1
},
"factionSymbol": {
"type": "string",
"description": "The symbol of the faction the ship is registered with",
"minLength": 1
},
"role": {
"$ref": "./ShipRole.json"
}
},
"required": [
"name",
"factionSymbol",
"role"
]
}