Merge pull request #61 from arihant2math/main

waypoint and system symbol mocks
This commit is contained in:
SpaceAdmiral 2023-12-05 08:35:46 -08:00 committed by GitHub
commit 7d108a7d9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 25 additions and 16 deletions

View File

@ -3,7 +3,7 @@
"description": "The chart of a system or waypoint, which makes the location visible to other agents.", "description": "The chart of a system or waypoint, which makes the location visible to other agents.",
"properties": { "properties": {
"waypointSymbol": { "waypointSymbol": {
"type": "string", "$ref": "./WaypointSymbol.json",
"description": "The symbol of the waypoint." "description": "The symbol of the waypoint."
}, },
"submittedBy": { "submittedBy": {

View File

@ -2,7 +2,7 @@
"type": "object", "type": "object",
"properties": { "properties": {
"waypointSymbol": { "waypointSymbol": {
"type": "string", "$ref": "./WaypointSymbol.json",
"description": "The symbol of the waypoint where the transaction took place." "description": "The symbol of the waypoint where the transaction took place."
}, },
"shipSymbol": { "shipSymbol": {

View File

@ -3,16 +3,14 @@
"type": "object", "type": "object",
"properties": { "properties": {
"symbol": { "symbol": {
"type": "string", "$ref": "./WaypointSymbol.json",
"minLength": 1,
"description": "Symbol of the waypoint." "description": "Symbol of the waypoint."
}, },
"type": { "type": {
"$ref": "./WaypointType.json" "$ref": "./WaypointType.json"
}, },
"systemSymbol": { "systemSymbol": {
"type": "string", "$ref": "./SystemSymbol.json",
"minLength": 1,
"description": "Symbol of the system." "description": "Symbol of the system."
}, },
"x": { "x": {

View File

@ -3,11 +3,11 @@
"description": "The navigation information of the ship.", "description": "The navigation information of the ship.",
"properties": { "properties": {
"systemSymbol": { "systemSymbol": {
"type": "string", "$ref": "./SystemSymbol.json",
"description": "The system symbol of the ship's current location." "description": "The system symbol of the ship's current location."
}, },
"waypointSymbol": { "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." "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": { "route": {

View File

@ -11,8 +11,7 @@
"$ref": "./WaypointType.json" "$ref": "./WaypointType.json"
}, },
"systemSymbol": { "systemSymbol": {
"type": "string", "$ref": "./SystemSymbol.json",
"minLength": 1,
"description": "The symbol of the system the waypoint is in." "description": "The symbol of the system the waypoint is in."
}, },
"x": { "x": {

View File

@ -3,7 +3,7 @@
"description": "Results of a transaction with a shipyard.", "description": "Results of a transaction with a shipyard.",
"properties": { "properties": {
"waypointSymbol": { "waypointSymbol": {
"type": "string", "$ref": "./WaypointSymbol.json",
"description": "The symbol of the waypoint where the transaction took place." "description": "The symbol of the waypoint where the transaction took place."
}, },
"shipSymbol": { "shipSymbol": {

7
models/SystemSymbol.json Normal file
View File

@ -0,0 +1,7 @@
{
"type": "string",
"minLength": 1,
"x-faker": {
"fake": ["X1-{{random.alphaNumeric(5)}}"]
}
}

View File

@ -2,7 +2,7 @@
"type": "object", "type": "object",
"properties": { "properties": {
"symbol": { "symbol": {
"type": "string", "$ref": "./WaypointSymbol.json",
"description": "The symbol of the waypoint." "description": "The symbol of the waypoint."
}, },
"type": { "type": {

View File

@ -3,16 +3,14 @@
"type": "object", "type": "object",
"properties": { "properties": {
"symbol": { "symbol": {
"type": "string", "$ref": "./WaypointSymbol.json",
"minLength": 1,
"description": "Symbol fo the waypoint." "description": "Symbol fo the waypoint."
}, },
"type": { "type": {
"$ref": "./WaypointType.json" "$ref": "./WaypointType.json"
}, },
"systemSymbol": { "systemSymbol": {
"type": "string", "$ref": "./SystemSymbol.json",
"minLength": 1,
"description": "The symbol of the system this waypoint belongs to." "description": "The symbol of the system this waypoint belongs to."
}, },
"x": { "x": {

View File

@ -0,0 +1,7 @@
{
"type": "string",
"minLength": 1,
"x-faker": {
"fake": ["X1-{{random.alphaNumeric(5)}}-{{random.alphaNumeric(5)}}"]
}
}