You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Get the ontology graph for the given case_version and any supplemental graphs.
100
-
101
-
:param case_version: the version of the CASE ontology to use. If None (i.e. null), the most recent version will be used. If "none" (the string), no pre-built version of CASE will be used.
102
-
:param supplemental_graphs: a list of supplemental graphs to use. If None, no supplemental graphs will be used.
103
-
:return: the ontology graph against which to validate the data graph.
104
-
"""
105
-
ontology_graph=rdflib.Graph()
106
-
107
-
ifcase_version!="none":
108
-
# Load bundled CASE ontology at requested version.
Get the ontology graph for the given case_version and any supplemental graphs.
198
+
199
+
:param case_version: the version of the CASE ontology to use. If None (i.e. null), the most recent version will be used. If "none" (the string), no pre-built version of CASE will be used.
200
+
:param supplemental_graphs: a list of supplemental graphs to use. If None, no supplemental graphs will be used.
201
+
:return: the ontology graph against which to validate the data graph.
202
+
"""
203
+
ontology_graph=rdflib.Graph()
204
+
205
+
ifcase_version!="none":
206
+
# Load bundled CASE ontology at requested version.
0 commit comments