mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-14 22:30:51 +01:00
Merge pull request #61 from arihant2math/main
waypoint and system symbol mocks
This commit is contained in:
commit
7d108a7d9d
@ -3,7 +3,7 @@
|
||||
"description": "The chart of a system or waypoint, which makes the location visible to other agents.",
|
||||
"properties": {
|
||||
"waypointSymbol": {
|
||||
"type": "string",
|
||||
"$ref": "./WaypointSymbol.json",
|
||||
"description": "The symbol of the waypoint."
|
||||
},
|
||||
"submittedBy": {
|
||||
|
@ -2,7 +2,7 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"waypointSymbol": {
|
||||
"type": "string",
|
||||
"$ref": "./WaypointSymbol.json",
|
||||
"description": "The symbol of the waypoint where the transaction took place."
|
||||
},
|
||||
"shipSymbol": {
|
||||
|
@ -3,16 +3,14 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"symbol": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"$ref": "./WaypointSymbol.json",
|
||||
"description": "Symbol of the waypoint."
|
||||
},
|
||||
"type": {
|
||||
"$ref": "./WaypointType.json"
|
||||
},
|
||||
"systemSymbol": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"$ref": "./SystemSymbol.json",
|
||||
"description": "Symbol of the system."
|
||||
},
|
||||
"x": {
|
||||
|
@ -3,11 +3,11 @@
|
||||
"description": "The navigation information of the ship.",
|
||||
"properties": {
|
||||
"systemSymbol": {
|
||||
"type": "string",
|
||||
"$ref": "./SystemSymbol.json",
|
||||
"description": "The system symbol of the ship's current location."
|
||||
},
|
||||
"waypointSymbol": {
|
||||
"type": "string",
|
||||
"$ref": "./WaypointSymbol.json",
|
||||
"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."
|
||||
},
|
||||
"route": {
|
||||
|
@ -11,8 +11,7 @@
|
||||
"$ref": "./WaypointType.json"
|
||||
},
|
||||
"systemSymbol": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"$ref": "./SystemSymbol.json",
|
||||
"description": "The symbol of the system the waypoint is in."
|
||||
},
|
||||
"x": {
|
||||
|
@ -3,7 +3,7 @@
|
||||
"description": "Results of a transaction with a shipyard.",
|
||||
"properties": {
|
||||
"waypointSymbol": {
|
||||
"type": "string",
|
||||
"$ref": "./WaypointSymbol.json",
|
||||
"description": "The symbol of the waypoint where the transaction took place."
|
||||
},
|
||||
"shipSymbol": {
|
||||
|
7
models/SystemSymbol.json
Normal file
7
models/SystemSymbol.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"x-faker": {
|
||||
"fake": ["X1-{{random.alphaNumeric(5)}}"]
|
||||
}
|
||||
}
|
@ -2,7 +2,7 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"symbol": {
|
||||
"type": "string",
|
||||
"$ref": "./WaypointSymbol.json",
|
||||
"description": "The symbol of the waypoint."
|
||||
},
|
||||
"type": {
|
||||
|
@ -3,16 +3,14 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"symbol": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"$ref": "./WaypointSymbol.json",
|
||||
"description": "Symbol fo the waypoint."
|
||||
},
|
||||
"type": {
|
||||
"$ref": "./WaypointType.json"
|
||||
},
|
||||
"systemSymbol": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"$ref": "./SystemSymbol.json",
|
||||
"description": "The symbol of the system this waypoint belongs to."
|
||||
},
|
||||
"x": {
|
||||
|
7
models/WaypointSymbol.json
Normal file
7
models/WaypointSymbol.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"x-faker": {
|
||||
"fake": ["X1-{{random.alphaNumeric(5)}}-{{random.alphaNumeric(5)}}"]
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user