2022-10-22 18:05:01 +02:00
|
|
|
{
|
|
|
|
"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",
|
2023-06-02 01:36:17 +02:00
|
|
|
"format": "int64",
|
2022-10-22 18:05:01 +02:00
|
|
|
"description": "The number of credits the agent has available. Credits can be negative if funds have been overdrawn."
|
2023-05-20 03:40:48 +02:00
|
|
|
},
|
|
|
|
"startingFaction": {
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1,
|
|
|
|
"description": "The faction the agent started with."
|
2022-10-22 18:05:01 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"accountId",
|
|
|
|
"symbol",
|
|
|
|
"headquarters",
|
2023-05-20 03:40:48 +02:00
|
|
|
"credits",
|
|
|
|
"startingFaction"
|
2022-10-22 18:05:01 +02:00
|
|
|
]
|
2023-06-02 01:36:17 +02:00
|
|
|
}
|