We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e6f934 commit 0b6cc54Copy full SHA for 0b6cc54
scripts/write_jsonschemas_to_table.py
@@ -28,6 +28,7 @@ def main():
28
"sage.schemas.v2571",
29
"sage.schemas.v2581",
30
"MultiConsortiaCoordinatingCenter",
31
+ "org.synapse.nf",
32
]
33
js = syn.service("json_schema")
34
to_write_schemas = []
@@ -60,6 +61,9 @@ def main():
60
61
# only include the latest version of MCC schemas
62
dcc = "MC2"
63
datatype = version["schemaName"]
64
+ elif organization_name == "org.synapse.nf":
65
+ dcc = "NF-OSI"
66
+ datatype = version["schemaName"]
67
else:
68
dcc = version["schemaName"].split(".")[0]
69
datatype = version["schemaName"].split(".")[1]
0 commit comments