Skip to content

Commit

Permalink
Merge pull request #67 from casework/add_namespaces
Browse files Browse the repository at this point in the history
Add RDFS, OWL, and other Namespaces new to UCO 1.0.0
  • Loading branch information
ajnelson-nist committed Sep 2, 2022
2 parents fa59d06 + 21e4978 commit ebee1a2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion case_utils/namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@

import rdflib

NS_SH = rdflib.SH
NS_OWL = rdflib.OWL
NS_RDF = rdflib.RDF
NS_RDFS = rdflib.RDFS
NS_SH = rdflib.SH
NS_XSD = rdflib.XSD

NS_CASE_INVESTIGATION = rdflib.Namespace(
Expand All @@ -31,9 +33,13 @@
NS_CASE_VOCABULARY = rdflib.Namespace(
"https://ontology.caseontology.org/case/vocabulary/"
)
NS_CO = rdflib.Namespace("http://purl.org/co/")
NS_UCO_ACTION = rdflib.Namespace(
"https://ontology.unifiedcyberontology.org/uco/action/"
)
NS_UCO_CONFIGURATION = rdflib.Namespace(
"https://ontology.unifiedcyberontology.org/uco/configuration/"
)
NS_UCO_CORE = rdflib.Namespace("https://ontology.unifiedcyberontology.org/uco/core/")
NS_UCO_IDENTITY = rdflib.Namespace(
"https://ontology.unifiedcyberontology.org/uco/identity/"
Expand Down

0 comments on commit ebee1a2

Please sign in to comment.