summaryrefslogtreecommitdiffstats
path: root/tools/json_schema_compiler/model.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/json_schema_compiler/model.py')
-rw-r--r--tools/json_schema_compiler/model.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/json_schema_compiler/model.py b/tools/json_schema_compiler/model.py
index 63973d4..bb3fe0e 100644
--- a/tools/json_schema_compiler/model.py
+++ b/tools/json_schema_compiler/model.py
@@ -193,7 +193,9 @@ class Property(object):
elif '$ref' in json:
self.ref_type = json['$ref']
self.type_ = PropertyType.REF
- elif 'enum' in json:
+ elif 'enum' in json and json.get('type') == 'string':
+ # Non-string enums (as in the case of [legalValues=(1,2)]) should fall
+ # through to the next elif.
self.enum_values = []
for value in json['enum']:
self.enum_values.append(value)