|
@@ -48,8 +48,8 @@ class ParseJsonSchema(ParseDbSchema):
|
|
|
|
|
|
for schema_path in schema_paths:
|
|
|
try:
|
|
|
- with open(schema_path, "r") as f:
|
|
|
- self.schemas.append(json.load(f))
|
|
|
+ # Load schmea dereferenced and cleaned by default values
|
|
|
+ self.schemas.append(self.read_schema_and_parse_for_mongodb(schema_path))
|
|
|
|
|
|
except Exception as e:
|
|
|
err = ("Could not load json schema, "
|
|
@@ -399,7 +399,7 @@ class ParseJsonSchema(ParseDbSchema):
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
|
- # Only for testing
|
|
|
+# Only for testing
|
|
|
|
|
|
schema_path = os.path.join(".", "mongo_schema", "schema_components.json")
|
|
|
|
|
@@ -422,3 +422,6 @@ if __name__ == "__main__":
|
|
|
allowed_values = parse_obj.get_allowed_values()
|
|
|
|
|
|
descriptions = parse_obj.get_field_descriptions()
|
|
|
+
|
|
|
+
|
|
|
+
|