| Index: tools/json_schema_compiler/model.py
|
| diff --git a/tools/json_schema_compiler/model.py b/tools/json_schema_compiler/model.py
|
| index 75ae60e439f3676a8ed895fa110e23a610a5f55d..86716a550e58438b759e1f3d2d0cfdcb85e87b5f 100644
|
| --- a/tools/json_schema_compiler/model.py
|
| +++ b/tools/json_schema_compiler/model.py
|
| @@ -76,6 +76,8 @@ class Type(object):
|
| self.item_type = Property(self, name + "Element", json['items'],
|
| from_json=True,
|
| from_client=True)
|
| + elif json.get('type') == 'string':
|
| + self.type_ = PropertyType.STRING
|
| else:
|
| if not (
|
| 'properties' in json or
|
|
|