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": { "credits": {
"type": "integer", "type": "integer",
"description": "The number of credits the agent has available. Credits can be negative if funds have been overdrawn." "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": [ "required": [
"accountId", "accountId",
"symbol", "symbol",
"headquarters", "headquarters",
"credits" "credits",
"startingFaction"
] ]
} }