Skip to content

Commit ebee1a2

Browse files
Merge pull request #67 from casework/add_namespaces
Add RDFS, OWL, and other Namespaces new to UCO 1.0.0
2 parents fa59d06 + 21e4978 commit ebee1a2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

case_utils/namespace.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@
2121

2222
import rdflib
2323

24-
NS_SH = rdflib.SH
24+
NS_OWL = rdflib.OWL
2525
NS_RDF = rdflib.RDF
26+
NS_RDFS = rdflib.RDFS
27+
NS_SH = rdflib.SH
2628
NS_XSD = rdflib.XSD
2729

2830
NS_CASE_INVESTIGATION = rdflib.Namespace(
@@ -31,9 +33,13 @@
3133
NS_CASE_VOCABULARY = rdflib.Namespace(
3234
"https://ontology.caseontology.org/case/vocabulary/"
3335
)
36+
NS_CO = rdflib.Namespace("http://purl.org/co/")
3437
NS_UCO_ACTION = rdflib.Namespace(
3538
"https://ontology.unifiedcyberontology.org/uco/action/"
3639
)
40+
NS_UCO_CONFIGURATION = rdflib.Namespace(
41+
"https://ontology.unifiedcyberontology.org/uco/configuration/"
42+
)
3743
NS_UCO_CORE = rdflib.Namespace("https://ontology.unifiedcyberontology.org/uco/core/")
3844
NS_UCO_IDENTITY = rdflib.Namespace(
3945
"https://ontology.unifiedcyberontology.org/uco/identity/"

0 commit comments

Comments
 (0)