add description, fix symbols

This commit is contained in:
Space Admiral 2022-12-05 09:54:01 -08:00
parent eac54a6f69
commit 9995cb9dcf
5 changed files with 9 additions and 3 deletions

View File

@ -31,6 +31,7 @@
"required": [ "required": [
"symbol", "symbol",
"name", "name",
"description",
"speed", "speed",
"requirements" "requirements"
] ]

View File

@ -49,6 +49,7 @@
"required": [ "required": [
"symbol", "symbol",
"name", "name",
"description",
"moduleSlots", "moduleSlots",
"mountingPoints", "mountingPoints",
"fuelCapacity", "fuelCapacity",

View File

@ -2,6 +2,10 @@
"type": "object", "type": "object",
"description": "The navigation information of the ship.", "description": "The navigation information of the ship.",
"properties": { "properties": {
"systemSymbol": {
"type": "string",
"description": "The system symbol of the ship's current location."
},
"waypointSymbol": { "waypointSymbol": {
"type": "string", "type": "string",
"description": "The waypoint symbol of the ship's current location, or if the ship is in-transit, the waypoint symbol of the ship's destination." "description": "The waypoint symbol of the ship's current location, or if the ship is in-transit, the waypoint symbol of the ship's destination."
@ -17,6 +21,7 @@
} }
}, },
"required": [ "required": [
"systemSymbol",
"waypointSymbol", "waypointSymbol",
"route", "route",
"status", "status",

View File

@ -32,6 +32,7 @@
"required": [ "required": [
"symbol", "symbol",
"name", "name",
"description",
"powerOutput", "powerOutput",
"requirements" "requirements"
] ]

View File

@ -62,9 +62,7 @@
"BARREN", "BARREN",
"TEMPERATE", "TEMPERATE",
"JUNGLE", "JUNGLE",
"OCEAN", "OCEAN"
"MARKETPLACE",
"SHIPYARD"
] ]
}, },
"name": { "name": {