summaryrefslogtreecommitdiff
path: root/python/settings.py
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2024-09-19 12:45:07 -0400
committerBrian Potchik <brian@vector35.com>2024-09-19 12:45:07 -0400
commit43d5fb9103cde2941948f3e7dfb1b38bb67fac23 (patch)
tree0de7716c72495071d09a277cff0329dffc4c8506 /python/settings.py
parentafb41a37f9f6fa9e3c2d8df35fa9c9ae215299ee (diff)
Add additional testing and handling for object settings.
Diffstat (limited to 'python/settings.py')
-rw-r--r--python/settings.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/settings.py b/python/settings.py
index 6a2227ae..8737e652 100644
--- a/python/settings.py
+++ b/python/settings.py
@@ -66,9 +66,9 @@ class Settings:
Property JSON Data Type Prerequisite Optional {Allowed Values} and Notes
=================== ====================================== ================== ======== =======================================================================
"title" string None No Concise Setting Title
- "type" string None No {"array", "boolean", "number", "string"}
- "elementType" string "type" is "array" No {"string"}
- "sorted" boolean "type" is "array" Yes Automatically sort list items (default is true)
+ "type" string None No {"array", "boolean", "number", "string", "object"}
+ "sorted" boolean "type" is "array" Yes Automatically sort list items (default is false)
+ "isSerialized" boolean "type" is "string" Yes Treat the string as a serialized JSON object
"enum" array : {string} "type" is "string" Yes Enumeration definitions
"enumDescriptions" array : {string} "type" is "string" Yes Enumeration descriptions that match "enum" array
"minValue" number "type" is "number" Yes Specify 0 to infer unsigned (default is signed)