mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-14 22:30:51 +01:00
24 lines
507 B
JSON
24 lines
507 B
JSON
{
|
|
"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
|
|
},
|
|
"factionSymbol": {
|
|
"type": "string",
|
|
"description": "The symbol of the faction the ship is registered with",
|
|
"minLength": 1
|
|
},
|
|
"role": {
|
|
"$ref": "./ShipRole.json"
|
|
}
|
|
}
|
|
} |