From 8b4e8dc7dc6f368050b8199982fb00d3f5cd502c Mon Sep 17 00:00:00 2001 From: SpaceAdmiral Date: Fri, 17 Nov 2023 16:59:33 -0800 Subject: [PATCH] add new restricted enum on ActivityLevel --- models/ActivityLevel.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/models/ActivityLevel.json b/models/ActivityLevel.json index 7cd5ef5..2a8d4b8 100644 --- a/models/ActivityLevel.json +++ b/models/ActivityLevel.json @@ -1,9 +1,16 @@ { "type": "string", - "description": "The activity level of a trade good. If the good is an import, this represents how strong consumption is for the good. If the good is an export, this represents how strong the production is for the good.", + "description": "The activity level of a trade good. If the good is an import, this represents how strong consumption is. If the good is an export, this represents how strong the production is for the good. When activity is strong, consumption or production is near maximum capacity. When activity is weak, consumption or production is near minimum capacity.", "enum": [ "WEAK", "GROWING", - "STRONG" - ] + "STRONG", + "RESTRICTED" + ], + "x-enumDescriptions": { + "WEAK": "Indicates very low production or consumption activity. This may suggest a surplus in supply or a lack of demand.", + "GROWING": "Represents increasing activity in production or consumption, suggesting a developing market.", + "STRONG": "Signifies high levels of production or consumption. Indicates a healthy and active market with high demand or supply.", + "RESTRICTED": "Reflects a bottlneck in production or consumption, possibly due to a lack of supply or demand in related goods." + } } \ No newline at end of file