mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-14 22:30:51 +01:00
29 lines
592 B
JSON
29 lines
592 B
JSON
|
{
|
||
|
"description": "",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"accountId": {
|
||
|
"type": "string",
|
||
|
"minLength": 1
|
||
|
},
|
||
|
"symbol": {
|
||
|
"type": "string",
|
||
|
"minLength": 1
|
||
|
},
|
||
|
"headquarters": {
|
||
|
"type": "string",
|
||
|
"minLength": 1,
|
||
|
"description": "The headquarters of the agent."
|
||
|
},
|
||
|
"credits": {
|
||
|
"type": "integer",
|
||
|
"description": "The number of credits the agent has available. Credits can be negative if funds have been overdrawn."
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"accountId",
|
||
|
"symbol",
|
||
|
"headquarters",
|
||
|
"credits"
|
||
|
]
|
||
|
}
|