Browse Source

ParseJsonSchema load schema derefrenced into constructer

tsteuer 5 years ago
parent
commit
a48e90af61

+ 1 - 0
cdplib/db_migration/MigrationCleaning.py

@@ -562,3 +562,4 @@ if __name__ == "__main__":
         data = cleaner.filter_notallowed_values(data)
 
     print("Done!")
+    

+ 6 - 3
cdplib/db_migration/ParseJsonSchema.py

@@ -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()
+    
+
+