From b277bdc7d6bd24a5fb4e10a4c3350dbd24a3eb3d Mon Sep 17 00:00:00 2001 From: SpaceAdmiral Date: Fri, 19 May 2023 18:40:48 -0700 Subject: [PATCH] update: add starting faction to agent model --- models/Agent.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/models/Agent.json b/models/Agent.json index 75b5beb..045f5c7 100644 --- a/models/Agent.json +++ b/models/Agent.json @@ -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" ] } \ No newline at end of file