mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-15 06:40:51 +01:00
34 lines
495 B
JSON
34 lines
495 B
JSON
|
{
|
||
|
"description": "",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"symbol": {
|
||
|
"type": "string",
|
||
|
"minLength": 1
|
||
|
},
|
||
|
"sectorSymbol": {
|
||
|
"type": "string",
|
||
|
"minLength": 1
|
||
|
},
|
||
|
"type": {
|
||
|
"$ref": "./SystemType.json"
|
||
|
},
|
||
|
"x": {
|
||
|
"type": "integer"
|
||
|
},
|
||
|
"y": {
|
||
|
"type": "integer"
|
||
|
},
|
||
|
"distance": {
|
||
|
"type": "integer"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"symbol",
|
||
|
"sectorSymbol",
|
||
|
"type",
|
||
|
"x",
|
||
|
"y",
|
||
|
"distance"
|
||
|
]
|
||
|
}
|