Skip to main content
Module

x/ldkit/namespaces/owl.ts

LDkit - Linked Data query toolkit for TypeScript developers
Latest
File
import { createNamespace } from "../library/namespace.ts";
/** * OWL Web Ontology Language * * `@owl: <http://www.w3.org/2002/07/owl#>`, */export const owl = createNamespace( { iri: "http://www.w3.org/2002/07/owl#", prefix: "owl:", terms: [ "owl:AllDifferent", "owl:AllDisjointClasses", "owl:AllDisjointProperties", "owl:allValuesFrom", "owl:annotatedProperty", "owl:annotatedSource", "owl:annotatedTarget", "owl:Annotation", "owl:AnnotationProperty", "owl:assertionProperty", "owl:AsymmetricProperty", "owl:Axiom", "owl:backwardCompatibleWith", "owl:bottomDataProperty", "owl:bottomObjectProperty", "owl:cardinality", "owl:Class", "owl:complementOf", "owl:DataRange", "owl:datatypeComplementOf", "owl:DatatypeProperty", "owl:deprecated", "owl:DeprecatedClass", "owl:DeprecatedProperty", "owl:differentFrom", "owl:disjointUnionOf", "owl:disjointWith", "owl:distinctMembers", "owl:equivalentClass", "owl:equivalentProperty", "owl:FunctionalProperty", "owl:hasKey", "owl:hasSelf", "owl:hasValue", "owl:imports", "owl:incompatibleWith", "owl:intersectionOf", "owl:InverseFunctionalProperty", "owl:inverseOf", "owl:IrreflexiveProperty", "owl:maxCardinality", "owl:maxQualifiedCardinality", "owl:members", "owl:minCardinality", "owl:minQualifiedCardinality", "owl:NamedIndividual", "owl:NegativePropertyAssertion", "owl:Nothing", "owl:ObjectProperty", "owl:onClass", "owl:onDataRange", "owl:onDatatype", "owl:oneOf", "owl:onProperty", "owl:onProperties", "owl:Ontology", "owl:OntologyProperty", "owl:priorVersion", "owl:propertyChainAxiom", "owl:propertyDisjointWith", "owl:qualifiedCardinality", "owl:rational", "owl:real", "owl:ReflexiveProperty", "owl:Restriction", "owl:sameAs", "owl:someValuesFrom", "owl:sourceIndividual", "owl:SymmetricProperty", "owl:targetIndividual", "owl:targetValue", "owl:Thing", "owl:topDataProperty", "owl:topObjectProperty", "owl:TransitiveProperty", "owl:unionOf", "owl:versionInfo", "owl:versionIRI", "owl:withRestrictions", ], } as const,);