update: add starting faction to agent model

This commit is contained in:
SpaceAdmiral 2023-05-19 18:40:48 -07:00
parent 4ec2806046
commit b277bdc7d6

View File

@ -18,12 +18,18 @@
"credits": {
"type": "integer",
"description": "The number of credits the agent has available. Credits can be negative if funds have been overdrawn."
},
"startingFaction": {
"type": "string",
"minLength": 1,
"description": "The faction the agent started with."
}
},
"required": [
"accountId",
"symbol",
"headquarters",
"credits"
"credits",
"startingFaction"
]
}