use oxigraph::model::NamedNodeRef;
pub const NAMESPACE: &str = "http://www.w3.org/2002/07/owl#";
pub const THING: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#Thing");
pub const NOTHING: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#Nothing");
pub const CLASS: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#Class");
pub const OBJECT_PROPERTY: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#ObjectProperty");
pub const DATATYPE_PROPERTY: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#DatatypeProperty");
pub const EQUIVALENT_CLASS: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#equivalentClass");
pub const EQUIVALENT_PROPERTY: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#equivalentProperty");
pub const SAME_AS: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#sameAs");
pub const DIFFERENT_FROM: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#differentFrom");
pub const RESTRICTION: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#Restriction");
pub const ON_PROPERTY: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#onProperty");
pub const SOME_VALUES_FROM: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#someValuesFrom");
pub const ALL_VALUES_FROM: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#allValuesFrom");
pub const HAS_VALUE: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#hasValue");
pub const MIN_CARDINALITY: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#minCardinality");
pub const MAX_CARDINALITY: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#maxCardinality");
pub const CARDINALITY: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#cardinality");
pub const ANNOTATION_PROPERTY: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#AnnotationProperty");
pub const ONTOLOGY: NamedNodeRef<'static> =
NamedNodeRef::new_unchecked("http://www.w3.org/2002/07/owl#Ontology");