W3C

OWL 2 Web Ontology Language:
Mapping to RDF Graphs

W3C Working Draft 08 October 2008

This version:
http://www.w3.org/TR/2008/WD-owl2-mapping-to-rdf-20081008/
Latest version:
http://www.w3.org/TR/owl2-mapping-to-rdf/
Previous version:
http://www.w3.org/TR/2008/WD-owl2-mapping-to-rdf-20080411/
Editors:
Peter F. Patel-Schneider, Bell Labs Research, Alcatel-Lucent
Boris Motik, Oxford University
Contributors:
Bernardo Cuenca Grau, Oxford University
Ian Horrocks, Oxford University
Bijan Parsia, The University of Manchester
Note: The complete list of contributors is being compiled and will be included in the next draft.


Abstract

OWL 2 extends the W3C OWL Web Ontology Language with a small but useful set of features that have been requested by users, for which effective reasoning algorithms are now available, and that OWL tool developers are willing to support. The new features include extra syntactic sugar, additional property and qualified cardinality constructors, extended datatype support, simple metamodelling, and extended annotations.
This document provides a mapping from the functional-style syntax of OWL 2 to the RDF exchange syntax for OWL 2, and vice versa.

Status of this Document

May Be Superseded

This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.

This document is being published as one of a set of 7 documents:

  1. Structural Specification and Functional-Style Syntax
  2. Direct Semantics
  3. RDF-Based Semantics
  4. Mapping to RDF Graphs (this document)
  5. XML Serialization
  6. Profiles
  7. Conformance and Test Cases

Compatibility with OWL 1

The OWL Working Group intends to make OWL 2 be a superset of OWL 1, except for a limited number of situations where we believe the impact will be minimal. This means that OWL 2 will be backward compatible, and creators of OWL 1 documents need only move to OWL 2 when they want to make use of OWL 2 features. More details and advice concerning migration from OWL 1 to OWL 2 will be in future drafts.

Summary of Changes

The major change to this document since the version of 11 April 2008 reflects the major revamping of the functional syntax to disallow punning between classes and datatypes and between object, data, and annotation properties and to include mapping for new features such as keys. Some minor changes were made to reflect changes in the Functional Syntax.

Please Comment By 2008-10-23

The OWL Working Group seeks public feedback on these Working Drafts. Please send your comments to public-owl-comments@w3.org (public archive). If possible, please offer specific changes to the text that would address your concern. You may also wish to check the Wiki Version of this document for internal-review comments and changes being drafted which may address your concerns.

No Endorsement

Publication as a Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.

Patents

This document was produced by a group operating under the 5 February 2004 W3C Patent Policy. W3C maintains a public list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.


[Show Short TOC]

Contents


1 Introduction and Preliminaries

This document provides mappings by means of which every OWL 2 ontology in the functional-style syntax [OWL 2 Specification] can be mapped into RDF triples and back without any change in the formal meaning of the ontology. More precisely, let O be any OWL 2 ontology in functional-style syntax, let T(O) be the set of RDF triples obtained by transforming O into RDF triples as specified in Section 2, and let O' be the OWL 2 ontology in functional-style syntax obtained by applying the reverse transformation from Section 3 to T(O); then, O and O' are logically equivalent — that is, they have exactly the same set of models.

The RDF syntax of OWL 2 is backwards-compatible with that of OWL DL: every OWL DL ontology in RDF syntax can be mapped into a valid OWL 2 ontology using the reverse-transformation from Section 3 such that the resulting OWL 2 ontology has exactly the same set of models as the original OWL DL ontology.

The syntax for triples used in this document is the one used in the RDF Semantics [RDF Semantics]. Full URIs are abbreviated using the namespaces from the OWL 2 Specification [OWL 2 Specification].

The following notation is used throughout this document for referring to parts of RDF graphs:

The italicized keywords MUST, MUST NOT, SHOULD, SHOULD NOT, and MAY specify certain aspects of the normative behavior of OWL 2 tools, and are interpreted as specified in RFC 2119 [RFC 2119].

2 Mapping from Functional-Style Syntax to RDF Graphs

This section defines a mapping of an OWL 2 ontology O in functional-style syntax into a set of RDF triples T(O). The mapping is presented in three parts. Section 2.1 shows how to translate axioms that do not contain annotations, Section 2.2 shows how to translate annotations, and Section 2.3 shows how to translate axioms containing annotations.

2.1 Translation of Axioms without Annotations

Table 1 presents the operator T that maps an OWL 2 ontology O in functional-style syntax into a set of RDF triples T(O), provided that no axiom in O is annotated. The mapping is defined recursively, i.e., the mapping of a construct often depends on the mappings of its sub-constructs, but in a slightly unusual way. If the mapping of a construct refers to the mapping of a sub-construct, then the triples generated by the recursive invocation of T are added to the graph under construction, and its main node is used in place of the invocation itself.

The definition of the operator T uses the operator TANN in order to translate annotations. The operator TANN is defined in Section 2.2. It takes an annotation and an URI reference or a blank node and produces the triples that attach the annotation to the supplied object.

In the mapping, each generated blank node (i.e., each blank node that does not correspond to an anonymous individual) is fresh in each application of a mapping rule. Furthermore, the following conventions are used in this section to denote different syntactic parts of OWL 2 ontologies:

In this section, T(SEQ y1 ... yn) denotes the translation of a sequence of objects from the functional-style syntax into an RDF list, as shown in Table 1.

Table 1. Transformation to Triples
Functional-Style Syntax S Triples Generated in an Invocation of T(S) Main Node of T(S)
SEQ rdf:nil
SEQ y1 ... yn _:x rdf:first T(y1)
_:x rdf:rest T(SEQ y2 ... yn)
_:x
Ontology( ontologyURI [ versionURI ]
    Import( importedOntologyURI1 )
    ...
    Import( importedOntologyURIk )
    annotation1
    ...
    annotationm
    axiom1
    ...
    axiomn
)
ontologyURI rdf:type owl:Ontology
[ ontologyURI owl:versionInfo versionURI ]
ontologyURI owl:imports importedOntologyURI1
...
ontologyURI owl:imports importedOntologyURIk
TANN(annotation1,ontologyURI)
...
TANN(annotationm,ontologyURI)
T(axiom1)
...
T(axiomn)
ontologyURI
Ontology(
    Import( importedOntologyURI1 )
    ...
    Import( importedOntologyURIk )
    annotation1
    ...
    annotationm
    axiom1
    ...
    axiomn
)
_:x rdf:type owl:Ontology
_:x owl:imports importedOntologyURI1
...
_:x owl:imports importedOntologyURIk
TANN(annotation1,_:x)
...
TANN(annotationm,_:x)
T(axiom1)
...
T(axiomn)
_:x
C C
Class( C ) C
DT DT
Datatype( DT ) DT
OP OP
ObjectProperty( OP ) OP
DP DP
DataProperty( DP ) DP
AP AP
AnnotationProperty( AP ) AP
a a
NamedIndividual( *:a ) *:a
lt lt
Declaration( Datatype( DT ) ) T(DT) rdf:type rdfs:Datatype
Declaration( Class( C ) ) T(C) rdf:type owl:Class
Declaration( ObjectProperty( OP ) ) T(OP) rdf:type owl:ObjectProperty
Declaration( DataProperty( DP ) ) T(DP) rdf:type owl:DatatypeProperty
Declaration( AnnotationProperty( AP ) ) T(AP) rdf:type owl:AnnotationProperty
Declaration( NamedIndividual( *:a ) ) T(*:a) rdf:type owl:NamedIndividual
InverseOf( OP ) _:x owl:inverseOf T(OP) _:x
ComplementOf( DR ) _:x rdf:type rdfs:Datatype
_:x owl:datatypeComplementOf T(DR)
_:x
OneOf( lt1 ... ltn ) _:x rdf:type rdfs:Datatype
_:x owl:oneOf T(SEQ lt1 ... ltn)
_:x
DatatypeRestriction( DT
    f1 lt1
    ...
    fn ltn
)
_:x rdf:type rdfs:Datatype
_:x owl:onDatatype T(DT)
_:x owl:withRestrictions T(SEQ _:y1 ... _:yn)
_:y1 f1 lt1
...
_:yn fn ltn
_:x
IntersectionOf( CE1 ... CEn ) _:x rdf:type owl:Class
_:x owl:intersectionOf T(SEQ CE1 ... CEn)
_:x
UnionOf( CE1 ... CEn ) _:x rdf:type owl:Class
_:x owl:unionOf T(SEQ CE1 ... CEn)
_:x
ComplementOf( CE ) _:x rdf:type owl:Class
_:x owl:complementOf T(CE)
_:x
OneOf( a1 ... an ) _:x rdf:type owl:Class
_:x owl:oneOf T(SEQ a1 ... an)
_:x
SomeValuesFrom( OPE CE ) _:x rdf:type owl:Restriction
_:x owl:onProperty T(OPE)
_:x owl:someValuesFrom T(CE)
_:x
AllValuesFrom( OPE CE ) _:x rdf:type owl:Restriction
_:x owl:onProperty T(OPE)
_:x owl:allValuesFrom T(CE)
_:x
HasValue( OPE a ) _:x rdf:type owl:Restriction
_:x owl:onProperty T(OPE)
_:x owl:hasValue T(a)
_:x
ExistsSelf( OPE ) _:x rdf:type owl:SelfRestriction
_:x owl:onProperty T(OPE)
_:x
MinCardinality( n OPE ) _:x rdf:type owl:Restriction
_:x owl:minCardinality "n"^^xsd:nonNegativeInteger
_:x owl:onProperty T(OPE)
_:x
MinCardinality( n OPE CE ) _:x rdf:type owl:Restriction
_:x owl:minQualifiedCardinality "n"^^xsd:nonNegativeInteger
_:x owl:onProperty T(OPE)
_:x owl:onClass T(CE)
_:x
MaxCardinality( n OPE ) _:x rdf:type owl:Restriction
_:x owl:maxCardinality "n"^^xsd:nonNegativeInteger
_:x owl:onProperty T(OPE)
_:x
MaxCardinality( n OPE CE ) _:x rdf:type owl:Restriction
_:x owl:maxQualifiedCardinality "n"^^xsd:nonNegativeInteger
_:x owl:onProperty T(OPE)
_:x owl:onClass T(CE)
_:x
ExactCardinality( n OPE ) _:x rdf:type owl:Restriction
_:x owl:cardinality "n"^^xsd:nonNegativeInteger
_:x owl:onProperty T(OPE)
_:x
ExactCardinality( n OPE CE ) _:x rdf:type owl:Restriction
_:x owl:qualifiedCardinality "n"^^xsd:nonNegativeInteger
_:x owl:onProperty T(OPE)
_:x owl:onClass T(CE)
_:x
SomeValuesFrom( DPE DR ) _:x rdf:type owl:Restriction
_:x owl:onProperty T(DPE)
_:x owl:someValuesFrom T(DR)
_:x
SomeValuesFrom( DPE1 ... DPEn DR ), n ≥ 2 _:x rdf:type owl:Restriction
_:x owl:onProperties T(SEQ DPE1 ... DPEn)
_:x owl:someValuesFrom T(DR)
_:x
AllValuesFrom( DPE DR ) _:x rdf:type owl:Restriction
_:x owl:onProperty T(DPE)
_:x owl:allValuesFrom T(DR)
_:x
AllValuesFrom( DPE1 ... DPEn DR ), n ≥ 2 _:x rdf:type owl:Restriction
_:x owl:onProperties T(SEQ DPE1 ... DPEn)
_:x owl:allValuesFrom T(DR)
_:x
HasValue( DPE lt ) _:x rdf:type owl:Restriction
_:x owl:onProperty T(DPE)
_:x owl:hasValue T(lt)
_:x
MinCardinality( n DPE ) _:x rdf:type owl:Restriction
_:x owl:minCardinality "n"^^xsd:nonNegativeInteger
_:x owl:onProperty T(DPE)
_:x
MinCardinality( n DPE DR ) _:x rdf:type owl:Restriction
_:x owl:minQualifiedCardinality "n"^^xsd:nonNegativeInteger
_:x owl:onProperty T(DPE)
_:x owl:onDataRange T(DR)
_:x
MaxCardinality( n DPE ) _:x rdf:type owl:Restriction
_:x owl:maxCardinality "n"^^xsd:nonNegativeInteger
_:x owl:onProperty T(DPE)
_:x
MaxCardinality( n DPE DR ) _:x rdf:type owl:Restriction
_:x owl:maxQualifiedCardinality "n"^^xsd:nonNegativeInteger
_:x owl:onProperty T(DPE)
_:x owl:onDataRange T(DR)
_:x
ExactCardinality( n DPE ) _:x rdf:type owl:Restriction
_:x owl:cardinality "n"^^xsd:nonNegativeInteger
_:x owl:onProperty T(DPE)
_:x
ExactCardinality( n DPE DR ) _:x rdf:type owl:Restriction
_:x owl:qualifiedCardinality "n"^^xsd:nonNegativeInteger
_:x owl:onProperty T(DPE)
_:x owl:onDataRange T(DR)
_:x
SubClassOf( CE1 CE2 ) T(CE1) rdfs:subClassOf T(CE2)
EquivalentClasses( CE1 ... CEn ) T(CE1) owl:equivalentClass T(CE2)
...
T(CEn-1) owl:equivalentClass T(CEn)
DisjointClasses( CE1 CE2 ) T(CE1) owl:disjointWith T(CE2)
DisjointClasses( CE1 ... CEn ), n > 2 _:x rdf:type owl:AllDisjointClasses
_:x owl:members T(SEQ CE1 ... CEn)
DisjointUnion( C CE1 ... CEn ) T(C) owl:disjointUnionOf T(SEQ CE1 ... CEn)
SubPropertyOf( OPE1 OPE2 ) T(OPE1) rdfs:subPropertyOf T(OPE2)
SubPropertyOf( PropertyChain( OPE1 ... OPEn ) OPE ) _:x rdfs:subPropertyOf T(OPE)
_:x owl:propertyChain T(SEQ OPE1 ... OPEn)
EquivalentProperties( OPE1 ... OPEn ) T(OPE1) owl:equivalentProperty T(OPE2)
...
T(OPEn-1) owl:equivalentProperty T(OPEn)
DisjointProperties( OPE1 OPE2 ) T(op1) owl:propertyDisjointWith T(op2)
DisjointProperties( OPE1 ... OPEn), n > 2 _:x rdf:type owl:AllDisjointProperties
_:x owl:members T(SEQ OPE1 ... OPEn)
PropertyDomain( OPE CE ) T(OPE) rdfs:domain T(CE)
PropertyRange( OPE CE ) T(OPE) rdfs:range T(CE)
InverseProperties( OPE1 OPE2 ) T(OPE1) owl:inverseOf T(OPE2)
FunctionalProperty( OPE ) T(OPE) rdf:type owl:FunctionalProperty
InverseFunctionalProperty( OPE ) T(OPE) rdf:type owl:InverseFunctionalProperty
ReflexiveProperty( OPE ) T(OPE) rdf:type owl:ReflexiveProperty
IrreflexiveProperty( OPE ) T(OPE) rdf:type owl:IrreflexiveProperty
SymmetricProperty( OPE ) T(OPE) rdf:type owl:SymmetricProperty
AsymmetricProperty( OPE ) T(OPE) rdf:type owl:AsymmetricProperty
TransitiveProperty( OPE ) T(OPE) rdf:type owl:TransitiveProperty
SubPropertyOf( DPE1 DPE2 ) T(DPE1) rdfs:subPropertyOf T(DPE2)
EquivalentProperties( DPE1 ... DPEn ) T(DPE1) owl:equivalentProperty T(DPE2)
...
T(DPEn-1) owl:equivalentProperty T(DPEn)
DisjointProperties( DPE1 DPE2 ) T(DPE1) owl:propertyDisjointWith T(DPE2)
DisjointProperties( DPE1 ... DPEn ), n > 2 _:x rdf:type owl:AllDisjointProperties
_:x owl:members T(SEQ DPE1 ... DPEn)
PropertyDomain( DPE CE ) T(DPE) rdfs:domain T(CE)
PropertyRange( DPE DR ) T(DPE) rdfs:range T(DR)
FunctionalProperty( DPE ) T(DPE) rdf:type owl:FunctionalProperty
HasKey( CE PE1 ... PEn ) T(CE) owl:hasKey T(SEQ PE1 ... PEn)
SameIndividual( a1 ... an ) T(a1) owl:sameAs T(a2)
...
T(an-1) owl:sameAs T(an)
DifferentIndividuals( a1 a2 ) T(a1) owl:differentFrom T(a2)
DifferentIndividuals( a1 ... an ), n > 2 _:x rdf:type owl:AllDifferent
_:x owl:members T(SEQ a1 ... an)
ClassAssertion( CE a ) T(a) rdf:type T(CE)
PropertyAssertion( OP a1 a2 ) T(a1) T(OP) T(a2)
PropertyAssertion( InverseOf( OP ) a1 a2 ) T(a2) T(OP) T(a1)
NegativePropertyAssertion( OPE a1 a2 ) _:x rdf:type owl:NegativePropertyAssertion
_:x owl:sourceIndividual T(a1)
_:x owl:assertionProperty T(OPE)
_:x owl:targetIndividual T(a2)
PropertyAssertion( DPE a lt ) T(a) T(DPE) T(lt)
NegativePropertyAssertion( DPE a lt ) _:x rdf:type owl:NegativePropertyAssertion
_:x owl:sourceIndividual T(a)
_:x owl:assertionProperty T(DPE)
_:x owl:targetValue T(lt)
EntityAnnotation( Class( C )
    annotation1
    ...
    annotationm
)
TANN(annotation1,T(C))
...
TANN(annotationm,T(C))
EntityAnnotation( Datatype( DT )
    annotation1
    ...
    annotationm
)
TANN(annotation1,T(DT))
...
TANN(annotationm,T(DT))
EntityAnnotation( ObjectProperty( OP )
    annotation1
    ...
    annotationm
)
TANN(annotation1,T(OP))
...
TANN(annotationm,T(OP))
EntityAnnotation( DataProperty( DP )
    annotation1
    ...
    annotationm
)
TANN(annotation1,T(DP))
...
TANN(annotationm,T(DP))
EntityAnnotation( AnnotationProperty( AP )
    annotation1
    ...
    annotationm
)
TANN(annotation1,T(AP))
...
TANN(annotationm,T(AP))
EntityAnnotation( NamedIndividual( *:a )
    annotation1
    ...
    annotationm
)
TANN(annotation1,T(*:a))
...
TANN(annotationm,T(*:a))
AnonymousIndividualAnnotation( _:a
    annotation1
    ...
    annotationm
)
TANN(annotation1,T(_:a))
...
TANN(annotationm,T(_:a))

2.2 Translation of Annotations

The operator TANN, which translates annotations and attaches them to an URI reference or a blank node, is defined in Table 2. Note that Label, Comment, and Deprecated are syntactic abbreviations, so they are not listed in Table 2.

Table 2. Translation of Annotations
Annotation ann Triples Generated in an Invocation of TANN(ann,y)
Annotation( AP elt ) y T(AP) T(elt)
Annotation(
    annotation1
    ...
    annotationn
    AP elt
)
_:x rdf:type owl:Annotation
_:x owl:subject y
_:x owl:predicate T(AP)
_:x owl:object T(etl)
TANN(annotation1,_:x)
...
TANN(annotationn,_:x)

Consider the following entity annotation, which associates a:Peter with a simple label.

EntityAnnotation( NamedIndividual(a:Peter)
    Label( "Peter Griffin" )
)

This axiom is translated into the following triple:

a:Peter rdfs:label "Peter Griffin"^^xsd:string

Consider the following axioms, which associates a:Peter with an annotation containing a nested annotation.

EntityAnnotation( NamedIndividual(a:Peter)
    Annotation(
       Annotation( a:author a:Seth_MacFarlane )
       rdfs:label "Peter Griffin"
    )
)

This axiom is translated into the following triples:

_:x rdf:type owl:Annotation
_:x owl:subject a:Peter
_:x owl:predicate rdfs:label
_:x owl:object "Peter Griffin"^^xsd:string
_:x a:auhtor a:Seth_MacFarlane

2.3 Translation of Axioms with Annotations

If an axiom ax contains embedded annotations annotation1 ... annotationm, its serialization into RDF depends on the type of the axiom. In the following discussion, let ax' be the axiom that is obtained from ax by removing all annotations. Note that the Label and Comment annotations are just abbreviations, so they are serialized into RDF by expanding the abbreviation and then applying the serialization presented here.

2.3.1 Axioms that Generate a Single Triple or that Have a Main Triple

Editor's Note: OWL WG Issue 144 is related to this part of the mapping.

If ax' is translated into a single RDF triple s p o, then the axiom ax generates the following triples instead of triple s p o:

_:x rdf:type owl:Axiom
_:x owl:subject s
_:x owl:predicate p
_:x owl:object o
TANN(annotation1,_:x)
...
TANN(annotationm,_:x)

This is the case for the following axioms: SubClassOf, DisjointClasses with two classes, SubPropertyOf without a property chain as the subproperty expression, PropertyDomain, PropertyRange, InverseProperties, FunctionalProperty, InverseFunctionalProperty, ReflexiveProperty, IrreflexiveProperty, SymmetricProperty, AsymmetricProperty, TransitiveProperty, DisjointProperties with two properties, ClassAssertion, PropertyAssertion, Declaration, and DifferentIndividuals with two individuals.

Consider the following subclass axiom:

SubClassOf( Comment( "Children are people." ) a:Child a:Person )

Without the annotation, the axiom would be translated into the following triple:

a:Child rdfs:subClassOf a:Person

Thus, the annotated axiom is transformed into the following triples:

_:x rdf:type owl:Axiom
_:x owl:subject a:Child
_:x owl:predicate rdfs:subClassOf
_:x owl:object a:Person
_:x rdfs:comment "Children are people."

Axioms DisjointUnion, SubPropertyOf with a subproperty chain, and HasKey are, without annotations, translated into several, and not a single triple. If such such axioms are annotated, then the main triple is subjected to the transformation described above. The other triples — called side triples — are output without any change.

Consider the following subproperty axiom:

SubPropertyOf( Comment( "An aunt is a mother's sister." ) PropertyChain( a:hasMother a:hasSister ) a:hasAunt ) )

Without the annotation, the axiom would be translated into the following triples:

_:y rdfs:subPropertyOf a:hasAunt
_:y owl:propertyChain _:z1
_:z1 rdf:first a:hasMother
_:z1 rdf:rest _:z2
_:z2 rdf:first a:hasSister
_:z2 rdf:rest rdf:nil

In order to capture the annotation on the axiom, the first triple plays the role of the main triple for the axiom, so it is represented using a fresh blank node _:x in order to be able to attach the annotation to it.

_:x rdf:type owl:Axiom
_:x owl:subject _:y
_:x owl:predicate rdfs:subPropertyOf
_:x owl:object a:hasAunt
_:x rdfs:comment "An aunt is a mother's sister."

_:y owl:propertyChain _:z1
_:z1 rdf:first a:hasMother
_:z1 rdf:rest _:z2
_:z2 rdf:first a:hasSister
_:z2 rdf:rest rdf:nil

Consider the following key axiom:

HasKey( Comment( "SSN uniquely determines a person." ) a:Person a:hasSSN )

Without the annotation, the axiom would be translated into the following triples:

a:Person owl:hasKey _:y
_:y rdf:first a:hasSSN
_:y rdf:rest rdf:nil

In order to capture the annotation on the axiom, the first triple plays the role of the main triple for the axiom, so it is represented using a fresh blank node _:x in order to be able to attach the annotation to it.

_:x rdf:type owl:Axiom
_:x owl:subject a:Person
_:x owl:predicate owl:hasKey
_:x owl:object _:y
_:x rdfs:comment "SSN uniquely determines a person."

_:y rdf:first a:hasSSN
_:y rdf:rest rdf:nil

2.3.2 Axioms that are Translated to Multiple Triples

Editor's Note: OWL WG Issue 144 is related to this part of the mapping.

If the axiom ax' is of type EquivalentClasses, EquivalentProperties, SameIndividual, or EntityAnnotation its translation into RDF can be broken up into several RDF triples (because RDF can only represent binary relations). In this case, each of the RDF triples obtained by the translation of ax' is transformed as described in previous section, and the annotations are repeated for each of the triples obtained in the translation.

Consider the following individual equality axiom:

SameIndividual( Annotation( a:source a:Fox ) a:Meg a:Megan a:Megan_Griffin )

This axiom is first split into the following equalities between pairs of individuals, and the annotation is repeated on each axiom obtained in this process:

SameIndividual( Annotation( a:source a:Fox ) a:Meg a:Megan )
SameIndividual( Annotation( a:source a:Fox ) a:Megan a:Megan_Griffin )

Each of these axioms is now transformed into triples as explained in the previous section:

_:x1 rdf:type owl:Axiom
_:x1 owl:subject a:Meg
_:x1 owl:predicate owl:sameAs
_:x1 owl:object a:Megan
_:x1 a:source a:Fox

_:x2 rdf:type owl:Axiom
_:x2 owl:subject a:Megan
_:x2 owl:predicate owl:sameAs
_:x2 owl:object a:Megan_Griffin
_:x2 a:source a:Fox

2.3.3 Axioms Represented by Blank Nodes

If the axiom ax' is of type NegativePropertyAssertion, DisjointClasses with more than two classes, DisjointUnion with more than two properties, or DifferentIndividuals with more than two individuals, then its translation already requires introducing a blank node _:x. In such cases, ax is translated by first translating ax' into _:x as shown in Table 1, and then attaching the annotations of ax to _:x.

Consider the following negative property assertion:

NegativePropertyAssertion( Annotation( a:author a:Seth_MacFarlane ) a:brotherOf a:Chris a:Stewie )

Even without the annotation, this axiom would be represented using a blank node. The annotation can readily be attached to this node, so the axiom is transformed into the following triples:

_:x rdf:type owl:NegativePropertyAssertion
_:x owl:sourceIndividual a:Chris
_:x owl:assertionProperty a:brotherOf
_:x owl:targetIndividual a:Stewie
_:x a:author a:Seth_MacFarlane

3 Mapping from RDF Graphs to Functional-Style Syntax

This section specifies canonical RDF parsing — a process that transforms a set of RDF triples G into an OWL 2 ontology O in functional-style syntax, if possible. This process is specified as an instance of canonical parsing, defined in Section 5.9.3 of the OWL 2 Specification [OWL 2 Specification]. It is important to understand that canonical RDF parsing merely defines the result of the transformation. An OWL 2 implementation MAY implement whatever algorithm it chooses; however, the result MUST be structurally equivalent to the result of canonical RDF parsing.

Canonical RDF parsing maintains the following functions that map a URI reference or a blank node x occurring in G into a fragment of the functional-style syntax. In particular,

Initially, these functions are undefined for all URIs and blank nodes occurring in G; this is written as CE(x) = ε, DR(x) = ε, OPE(x) = ε, DPE(x) = ε, and AP(x) = ε. The functions are updated as parsing progresses. If at any point in time the following conditions become invalidated, G MUST be rejected as syntactically incorrect.

Firthermore, if there is an attempt to redefine the value of any of these functions for any x (i.e., if a function is not undefined for x and there is an attempt to change the function's value for x), then G MUST be rejected as syntactically incorrect.

The function OPEorDPE is defined as follows:

The following sections contain rules in which triple patterns are matched to G. The following notation is used to denote parts of the patterns that are matched to literals with integer value:

Additional conditions on the pattern are enclosed in curly braces { }. Some patterns use optional parts, which are enclosed in square brackets '[ ]'. If a pattern contains a variable number of triples, the maximal possible subset of G MUST be matched.

The abbreviation T(SEQ y1 ... yn) denotes the pattern corresponding to RDF lists, as shown in Table 3. This is similar to the mapping for lists presented in Table 1, but here the abbreviation is used to recognize lists instead of mapping them into RDF.

Table 3. Patterns Corresponding to RDF Lists
Sequence S Triples Corresponding to T(S) Main Node of T(S)
SEQ rdf:nil
SEQ y1 ... yn _:x rdf:first y1
_:x rdf:rest T(SEQ y2 ... yn)
_:x

3.1 Parsing Ontology Header and Declarations

First, the ontology header is extracted from G. In particular, if G does not contain a triple whose predicate is rdf:type and object is owl:Ontology, then the ontology header is Ontology( ... ). Otherwise, patterns from Table 4 are matched to G; if no such pattern can be matched in G, or if the pattern can be matched to G in more than one way, the graph G MUST be rejected as syntactically incorrect. Each time a triple pattern is matched, the matched triples are removed from G.

Table 4. Parsing the Ontology Header
If G contains this pattern... ...then the ontology header has this form.
*:x rdf:type owl:Ontology
[ *:x owl:versionInfo *:y ]
*:x owl:imports z1
...
*:x owl:imports zk
{ The following triple pattern cannot be matched in G:
    u w *:x
    u rdf:type owl:Ontology
    w rdf:type owl:OntologyProperty
}
Ontology( *:x [ *:y ]
    Import( z1 )
    ...
    Import( zk )
    ...
)
_:x rdf:type owl:Ontology
_:x owl:imports y1
...
_:x owl:imports yk
{ The following triple pattern cannot be matched in G:
    u w _:x
    u rdf:type owl:Ontology
    w rdf:type owl:OntologyProperty
}
Ontology(
    Import( y1 )
    ...
    Import( yk )
    ...
)

Next, for backwards compatibility with OWL DL, certain redundant triples are removed from G. In particular, if the triple pattern from the left-hand side of Table 5 is matched in G, then the triples on the right-hand side of Table 5 are removed from G.

Editor's Note: OWL WG Issue 137 is related to this part of the reverse mapping.
Table 5. Triples to be Removed for Backwards Compatibility with OWL DL
If G contains this pattern... ...then these triples are removed from G.
x rdf:type owl:Ontology x rdf:type owl:Ontology
x rdf:type owl:Class
x rdf:type rdfs:Class
x rdf:type rdfs:Class
x rdf:type rdfs:Datatype
x rdf:type rdfs:Class
x rdf:type rdfs:Class
x rdf:type owl:DataRange
x rdf:type rdfs:Class
x rdf:type rdfs:Class
x rdf:type owl:Restriction
x rdf:type rdfs:Class
x rdf:type rdfs:Class
x rdf:type owl:Restriction
x rdf:type owl:Class
x rdf:type owl:Class
x rdf:type owl:ObjectProperty
x rdf:type rdf:Property
x rdf:type rdf:Property
x rdf:type owl:FunctionalProperty
x rdf:type rdf:Property
x rdf:type rdf:Property
x rdf:type owl:InverseFunctionalProperty
x rdf:type rdf:Property
x rdf:type rdf:Property
x rdf:type owl:TransitiveProperty
x rdf:type rdf:Property
x rdf:type rdf:Property
x rdf:type owl:DatatypeProperty
x rdf:type rdf:Property
x rdf:type rdf:Property
x rdf:type owl:AnnotationProperty
x rdf:type rdf:Property
x rdf:type rdf:Property
x rdf:type owl:OntologyProperty
x rdf:type rdf:Property
x rdf:type rdf:Property
x rdf:type rdf:List
x rdf:first y
x rdf:rest z
x rdf:type rdf:List

Next, for backwards compatibility with OWL DL, G is modified such that declarations can be properly extracted in the next step. When a triple pattern from the first column of Table 6 is matched in G, the matching triples are replaced in G with the triples from the second column. This matching phase stops when matching a pattern and replacing it as specified does not change G. Note that G is a set and thus cannot contain duplicate triples, so this last condition prevents infinite matches.

Table 6. Additional Declaration Triples
If G contains this pattern... ...then the matched triples are replaced in G with these triples.
*:x rdf:type owl:OntologyProperty *:x rdf:type owl:AnnotationProperty
*:x rdf:type owl:InverseFunctionalProperty *:x rdf:type owl:ObjectProperty
*:x rdf:type owl:InverseFunctionalProperty
*:x rdf:type owl:TransitiveProperty *:x rdf:type owl:ObjectProperty
*:x rdf:type owl:TransitiveProperty
*:x rdf:type owl:SymmetricProperty *:x rdf:type owl:ObjectProperty
*:x rdf:type owl:SymmetricProperty

Finally, the set of declarations Decl(O) is extracted from G according to Table 7. The matched triples are not removed from G — the triples from Table 7 can contain annotations so, in order to correctly parse the annotations, they will be matched again in the step described in Section 3.4.

Table 7. Parsing Declarations in G
If G contains this pattern... ...then this declaration is added to Decl(O).
*:x rdf:type owl:Class Declaration( Class( *:x ) )
*:x rdf:type rdfs:Datatype Declaration( Datatype( *:x ) )
*:x rdf:type owl:ObjectProperty Declaration( ObjectProperty( *:x ) )
*:x rdf:type owl:DatatypeProperty Declaration( DataProperty( *:x ) )
*:x rdf:type owl:AnnotationProperty Declaration( AnnotationProperty( *:x ) )
*:x rdf:type owl:NamedIndividual Declaration( NamedIndividual( *:x ) )
_:x rdf:type owl:Axiom
_:x owl:subject *:y
_:x owl:predicate rdf:type
_:x owl:object owl:Class
Declaration( Class( *:y ) )
_:x rdf:type owl:Axiom
_:x owl:subject *:y
_:x owl:predicate rdf:type
_:x owl:object rdfs:Datatype
Declaration( Datatype( *:y ) )
_:x rdf:type owl:Axiom
_:x owl:subject *:y
_:x owl:predicate rdf:type
_:x owl:object owl:ObjectProperty
Declaration( ObjectProperty( *:y ) )
_:x rdf:type owl:Axiom
_:x owl:subject *:y
_:x owl:predicate rdf:type
_:x owl:object owl:DatatypeProperty
Declaration( DataProperty( *:y ) )
_:x rdf:type owl:Axiom
_:x owl:subject *:y
_:x owl:predicate rdf:type
_:x owl:object owl:AnnotationProperty
Declaration( AnnotationProperty( *:y ) )
_:x rdf:type owl:Axiom
_:x owl:subject *:y
_:x owl:predicate rdf:type
_:x owl:object owl:NamedIndividual
Declaration( NamedIndividual( *:y ) )

3.2 Parsing the Imported Ontologies

Next, for each ontology O' imported into O, the ontology header and declarations are determined. If the ontology O' is written in RDF then this is done as above. If the ontology O' is written in some other format then the ontology header and declarations are determined according to the rules appropriate to the ontology format.

3.3 Declaration Checking and Initialization

The set AllDecl(O) of all declarations is computed by taking the union of the set Decl(O), the sets Decl(O') for each ontology O' imported (directly or indirectly) into O, and the declarations for built-in entities from Table 10 of the OWL 2 Specification [OWL 2 Specification]. The declarations in AllDecl(O) are checked for typing constraints, as specified in Section 5.9.1 of the OWL 2 Specification [OWL 2 Specification]. If the constraints are not satisfied, the graph G MUST be rejected as syntactically incorrect.

Next, the functions CE, DR, OPE, DPE, and AP are initialized as shown in Table 8.

Table 8. Initialization of CE, DR, OPE, DPE, and AP
If AllDecl(O) contains this declaration... ...then perform this assignment.
Declaration( Class( *:x ) ) CE(*:x) := a class with the URI *:x
Declaration( Datatype( *:x ) ) DR(*:x) := a datatype with the URI *:x
Declaration( ObjectProperty( *:x ) ) OPE(*:x) := an object property with the URI *:x
Declaration( DataProperty( *:x ) ) DPE(*:x) := a data property with the URI *:x
Declaration( AnnotationProperty( *:x ) ) AP(*:x) := an annotation property with the URI *:x

3.4 Parsing of Annotations

Editor's Note: OWL WG Issue 144 is related to this part of the reverse mapping.

The annotations in G are parsed next. To this end, canonical RDF parsing uses a function ANN that assigns a set of annotations ANN(x) to each URI reference or a blank node x. This function is initialized by setting ANN(x) = ∅ for each each URI reference or a blank node x. Next, triple patters from the headers of Tables 9 and 10 are matched in G. For each matched pattern, ANN(x) is extended with all annotations from the right columns of the tables matching the respective conditions in the left columns. Each time one of these triple patterns is matched, the matched triples are removed from G. This process is repeated until no further matches are possible.

Table 9. Parsing of Simple Annotations
For each triple x *:y z in G where AP(*:y) ≠ ε, for each satisfied condition... ...this annotation is added to ANN(x).
z is a URI reference and CE(z) is a class Annotation( *:y Class( CE(z) ) )
z is a URI reference and DR(z) is a datatype Annotation( *:y Datatype( DR(z) ) )
z is a URI reference and OPE(z) is an object property Annotation( *:y ObjectProperty( OPE(z) ) )
z is a URI reference and DPE(z) is a data property Annotation( *:y DataProperty( DPE(z) ) )
z is a URI reference and AP(z) is an annotation property Annotation( *:y AnnotationProperty( AP(z) ) )
z is a URI reference and CE(z), DR(z), OPE(z),
DPE(z), and AP(z) are all equal to ε
Annotation( *:y NamedIndividual( z ) )
z is blank node Annotation( *:y z )
Table 10. Parsing of Annotations with Annotations
For each triple pattern in G of the form
_:w rdf:type owl:Annotation
_:w owl:subject x
_:w owl:predicate *:y
_:w owl:object z
such that AP(*:y) ≠ ε and
no triple in G contain _:w in subject or object position,
for each satisfied condition...
...this annotation is added to ANN(x).
z is a URI reference and CE(z) is a class Annotation( ANN(_:w) *:y Class( CE(z) ) )
z is a URI reference and DR(z) is a datatype Annotation( ANN(_:w) *:y Datatype( DR(z) ) )
z is a URI reference and OPE(z) is an object property Annotation( ANN(_:w) *:y ObjectProperty( OPE(z) ) )
z is a URI reference and DPE(z) is a data property Annotation( ANN(_:w) *:y DataProperty( DPE(z) ) )
z is a URI reference and AP(z) is an annotation property Annotation( ANN(_:w) *:y AnnotationProperty( AP(z) ) )
z is a URI reference and CE(z), DR(z), OPE(z),
DPE(z), and AP(z) are all equal to ε
Annotation( ANN(_:w) *:y NamedIndividual( z ) )
z is blank node Annotation( ANN(_:w) *:y z )

3.5 Parsing of Axioms

Let x be the node that is matched to *:x or _:x while parsing the ontology header of O according to the patterns from Table 4. Then, ANN(x) determines the set of ontology annotations of O.

Next, the functions OPE, DR, and CE are extended as shown in Tables 11, 12, and 13, as well as in Tables 14 and 15. The patterns in the latter two tables are not generated by the mapping from Section 2, but they can be present in RDF graphs that encode OWL DL ontologies. Each time a pattern is matched, the matched triples are removed from G. Pattern matching is repeated until no triple pattern can be matched to G.

Table 11. Parsing Object Property Expressions
If G contains this pattern... ...then OPE(_:x) is set to this object property expression.
_:x owl:inverseOf *:y
{ OPE(_:x) = ε and OPE(*:y) ≠ ε }
InverseOf( OPE(*:y) )
Table 12. Parsing of Data Ranges
If G contains this pattern... ...then DR(_:x) is set to this data range.
_:x rdf:type rdfs:Datatype
_:x owl:datatypeComplementOf y
{ DR(y) ≠ ε }
ComplementOf( DR(y) )
_:x rdf:type rdfs:Datatype
_:x owl:oneOf T(SEQ lt1 ... ltn)
{ n ≥ 1 }
OneOf( lt1 ... ltn )
_:x rdf:type rdfs:Datatype
_:x owl:onDatatype *:y
_:x owl:withRestrictions T(SEQ _:z1 ... _:zn)
_:z1 f1 lt1
...
_:zn fn ltn
{ DR(*:y) is a datatype }
DatatypeRestriction( DR(*:y)
    f1 lt1
    ...
    fn ltn
)
Table 13. Parsing of Class Expressions
If G contains this pattern... ...then CE(_:x) is set to this class expression.
_:x rdf:type owl:Class
_:x owl:complementOf y
{ CE(y) ≠ ε }
ComplementOf( CE(y) )
_:x rdf:type owl:Class
_:x owl:unionOf T(SEQ y1 ... yn)
{ n ≥ 2 and CE(yi) ≠ ε for each 1 ≤ i ≤ n }
UnionOf( CE(y1) ... CE(yn) )
_:x rdf:type owl:Class
_:x owl:intersectionOf T(SEQ y1 ... yn)
{ n ≥ 2 and CE(yi) ≠ ε for each 1 ≤ i ≤ n }
IntersectionOf( CE(y1) ... CE(yn) )
_:x rdf:type owl:Class
_:x owl:oneOf T(SEQ *:y1 ... *:yn)
{ n ≥ 1 }
OneOf( *:y1 ... *:yn )
_:x rdf:type owl:SelfRestriction
_:x owl:onProperty y
{ OPE(y) ≠ ε }
ExistsSelf( OPE(y) )
_:x rdf:type owl:Restriction
_:x owl:onProperty y
_:x owl:hasValue *:z
{ OPE(y) ≠ ε }
HasValue( OPE(y) *:z )
_:x rdf:type owl:Restriction
_:x owl:onProperty y
_:x owl:someValuesFrom z
{ OPE(y) ≠ ε and CE(z) ≠ ε }
SomeValuesFrom( OPE(y) CE(z) )
_:x rdf:type owl:Restriction
_:x owl:onProperty y
_:x owl:allValuesFrom z
{ OPE(y) ≠ ε and CE(z) ≠ ε }
AllValuesFrom( OPE(y) CE(z) )
_:x rdf:type owl:Restriction
_:x owl:minQualifiedCardinality NN_INT(n)
_:x owl:onProperty y
_:x owl:onClass z
{ OPE(y) ≠ ε and CE(z) ≠ ε }
MinCardinality( n OPE(y) CE(z) )
_:x rdf:type owl:Restriction
_:x owl:maxQualifiedCardinality NN_INT(n)
_:x owl:onProperty y
_:x owl:onClass z
{ OPE(y) ≠ ε and CE(z) ≠ ε }
MaxCardinality( n OPE(y) CE(z) )
_:x rdf:type owl:Restriction
_:x owl:qualifiedCardinality NN_INT(n)
_:x owl:onProperty y
_:x owl:onClass z
{ OPE(y) ≠ ε and CE(z) ≠ ε }
ExactCardinality( n OPE(y) CE(z) )
_:x rdf:type owl:Restriction
_:x owl:minCardinality NN_INT(n)
_:x owl:onProperty y
{ OPE(y) ≠ ε }
MinCardinality( n OPE(y) )
_:x rdf:type owl:Restriction
_:x owl:maxCardinality NN_INT(n)
_:x owl:onProperty y
{ OPE(y) ≠ ε }
MaxCardinality( n OPE(y) )
_:x rdf:type owl:Restriction
_:x owl:cardinality NN_INT(n)
_:x owl:onProperty y
{ OPE(y) ≠ ε }
ExactCardinality( n OPE(y) )
_:x rdf:type owl:Restriction
_:x owl:onProperty y
_:x owl:hasValue lt
{ DPE(y) ≠ ε }
HasValue( DPE(y) lt )
_:x rdf:type owl:Restriction
_:x owl:onProperty y
_:x owl:someValuesFrom z
{ DPE(y) ≠ ε and DR(z) ≠ ε }
SomeValuesFrom( DPE(y) DR(z) )
_:x rdf:type owl:Restriction
_:x owl:onProperties T(SEQ y1 ... yn)
_:x owl:someValuesFrom z
{ DPE(yi) ≠ ε for each 1 ≤ i ≤ n and DR(z) ≠ ε }
SomeValuesFrom( DPE(y1) ... DPE(yn) DR(z) )
_:x rdf:type owl:Restriction
_:x owl:onProperty y
_:x owl:allValuesFrom z
{ DPE(y) ≠ ε and DR(z) ≠ ε }
AllValuesFrom( DPE(y) DR(z) )
_:x rdf:type owl:Restriction
_:x owl:onProperties T(SEQ y1 ... yn)
_:x owl:allValuesFrom z
{ DPE(yi) ≠ ε for each 1 ≤ i ≤ n and DR(z) ≠ ε }
AllValuesFrom( DPE(y1) ... DPE(yn) DR(z) )
_:x rdf:type owl:Restriction
_:x owl:minQualifiedCardinality NN_INT(n)
_:x owl:onProperty y
_:x owl:onDataRange z
{ DPE(y) ≠ ε and DR(z) ≠ ε }
MinCardinality( n DPE(y) DR(z) )
_:x rdf:type owl:Restriction
_:x owl:maxQualifiedCardinality NN_INT(n)
_:x owl:onProperty y
_:x owl:onDataRange z
{ DPE(y) ≠ ε and DR(z) ≠ ε }
MaxCardinality( n DPE(y) DR(z) )
_:x rdf:type owl:Restriction
_:x owl:qualifiedCardinality NN_INT(n)
_:x owl:onProperty y
_:x owl:onDataRange z
{ DPE(y) ≠ ε and DR(z) ≠ ε }
ExactCardinality( n DPE(y) DR(z) )
_:x rdf:type owl:Restriction
_:x owl:minCardinality NN_INT(n)
_:x owl:onProperty y
{ DPE(y) ≠ ε }
MinCardinality( n DPE(y) )
_:x rdf:type owl:Restriction
_:x owl:maxCardinality NN_INT(n)
_:x owl:onProperty y
{ DPE(y) ≠ ε }
MaxCardinality( n DPE(y) )
_:x rdf:type owl:Restriction
_:x owl:cardinality NN_INT(n)
_:x owl:onProperty y
{ DPE(y) ≠ ε }
ExactCardinality( n DPE(y) )
Table 14. Parsing of Data Ranges for Compatibility with OWL DL
If G contains this pattern... ...then DR(_:x) is set to this object property expression.
_:x rdf:type owl:DataRange
_:x owl:oneOf T(SEQ lt1 ... ltn)
{ n ≥ 1 }
OneOf( lt1 ... ltn )
_:x rdf:type owl:DataRange
_:x owl:oneOf T(SEQ)
ComplementOf( rdfs:Literal )
Table 15. Parsing of Class Expressions for Compatibility with OWL DL
If G contains this pattern... ...then CE(_:x) is set to this class expression.
_:x rdf:type owl:Class
_:x owl:unionOf T(SEQ)
owl:Nothing
_:x rdf:type owl:Class
_:x owl:unionOf T(SEQ y)
{ CE(y) ≠ ε }
CE(y)
_:x rdf:type owl:Class
_:x owl:intersectionOf T(SEQ)
owl:Thing
_:x rdf:type owl:Class
_:x owl:intersectionOf T(SEQ y)
{ CE(y) ≠ ε }
CE(y)
_:x rdf:type owl:Class
_:x owl:oneOf T(SEQ)
owl:Nothing

The ontology O is then populated with axioms. The patterns from Table 16 are matched in G, the resulting axioms are added to O. Each time a pattern is matched, the matched triples are removed from G. The patterns for the EntityAnnotation and AnonymousIndividualAnnotation axioms can be matched to the empty set of triples so, in order to prevent infinite matches of the same pattern, these patterns are are matched to G at most once for each different URI reference *:x or blank node _:x.

Table 16. Parsing of Axioms
If G contains this pattern... ...then the following axiom is added to O.
*:x rdf:type owl:Class Declaration( Class( *:x ) )
*:x rdf:type rdfs:Datatype Declaration( Datatype( *:x ) )
*:x rdf:type owl:ObjectProperty Declaration( ObjectProperty( *:x ) )
*:x rdf:type owl:DatatypeProperty Declaration( DataProperty( *:x ) )
*:x rdf:type owl:AnnotationProperty Declaration( AnnotationProperty( *:x ) )
*:x rdf:type owl:NamedIndividual Declaration( NamedIndividual( *:x ) )
[ *:x rdf:type owl:DeprecatedClass ]
{ CE(*:x) ≠ ε, and
  ANN(*:x) ≠ ∅ or the optional triple is matched }
EntityAnnotation( Class( *:x )
    ANN(*:x)
    [ Deprecated ]
)
[ *:x rdf:type owl:DeprecatedClass ]
{ DR(*:x) ≠ ε, and
  ANN(*:x) ≠ ∅ or the optional triple is matched }
EntityAnnotation( Datatype( *:x )
    ANN(*:x)
    [ Deprecated ]
)
[ *:x rdf:type owl:DeprecatedProperty ]
{ OPE(*:x) ≠ ε, and
  ANN(*:x) ≠ ∅ or the optional triple is matched }
EntityAnnotation( ObjectProperty( *:x )
    ANN(*:x)
    [ Deprecated ]
)
[ *:x rdf:type owl:DeprecatedProperty ]
{ DPE(*:x) ≠ ε, and
  ANN(*:x) ≠ ∅ or the optional triple is matched }
EntityAnnotation( DataProperty( *:x )
    ANN(*:x)
    [ Deprecated ]
)
[ *:x rdf:type owl:DeprecatedProperty ]
{ AP(*:x) ≠ ε, and
  ANN(*:x) ≠ ∅ or the optional triple is matched }
EntityAnnotation( AnnotationProperty( *:x )
    ANN(*:x)
    [ Deprecated ]
)
{ CE(*:x) ≠ ε, DR(*:x) ≠ ε, OPE(*:x) ≠ ε,
  DPE(*:x) ≠ ε, AP(*:x) ≠ ε, and
  ANN(*:x) ≠ ∅ }
EntityAnnotation( Individual( *:x )
    ANN(*:x)
)
{ ANN(_:x) ≠ ∅ } AnonymousIndividualAnnotation( _:x
    ANN(_:x)
)
x rdfs:subClassOf y
{ CE(x) ≠ ε and CE(y) ≠ ε }
SubClassOf( CE(x) CE(y) )
x owl:equivalentClass y
{ CE(x) ≠ ε and CE(y) ≠ ε }
EquivalentClasses( CE(x) CE(y) )
x owl:disjointWith y
{ CE(x) ≠ ε and CE(y) ≠ ε }
DisjointClasses( CE(x) CE(y) )
_:x rdf:type owl:AllDisjointClasses
_:x owl:members T(SEQ y1 ... yn)
{ n ≥ 2 and CE(yi) ≠ ε for each 1 ≤ i ≤ n }
DisjointClasses( CE(y1) ... CE(yn) )
x owl:disjointUnionOf T(SEQ y1 ... yn)
{ n ≥ 2,
  CE(x) ≠ ε, and
  CE(yi) ≠ ε for each 1 ≤ i ≤ n }
DisjointUnion( CE(x) CE(y1) ... CE(yn) )
x rdfs:subPropertyOf y
{ OPE(x) ≠ ε and OPE(y) ≠ ε }
SubPropertyOf( OPE(x) OPE(y) )
_:x rdfs:subPropertyOf y
_:x owl:propertyChain T(SEQ x1 ... xn)
{ n ≥ 2,
  OPE(xi) ≠ ε for each 1 ≤ i ≤ n, and
  OPE(y) ≠ ε }
SubPropertyOf(
    PropertyChain( OPE(x1) ... OPE(xn) )
    OPE(y)
)
x owl:equivalentProperty y
{ OPE(x) ≠ ε and OPE(y) ≠ ε }
EquivalentProperties( OPE(x) OPE(y) )
x owl:propertyDisjointWith y
{ OPE(x) ≠ ε and OPE(y) ≠ ε }
DisjointProperties( OPE(x) OPE(y) )
_:x rdf:type owl:AllDisjointProperties
_:x owl:members T(SEQ y1 ... yn)
{ n ≥ 2 and OPE(yi) ≠ ε for each 1 ≤ i ≤ n }
DisjointProperties( OPE(y1) ... OPE(yn) )
x rdfs:domain y
{ OPE(x) ≠ ε and CE(y) ≠ ε }
PropertyDomain( OPE(x) CE(y) )
x rdfs:range y
{ OPE(x) ≠ ε and CE(y) ≠ ε }
PropertyRange( OPE(x) CE(y) )
x owl:inverseOf y
{ OPE(x) ≠ ε and OPE(y) ≠ ε }
InverseProperties( OPE(x) OPE(y) )
x rdf:type owl:FunctionalProperty
{ OPE(x) ≠ ε }
FunctionalProperty( OPE(x) )
x rdf:type owl:InverseFunctionalProperty
{ OPE(x) ≠ ε }
InverseFunctionalProperty( OPE(x) )
x rdf:type owl:ReflexiveProperty
{ OPE(x) ≠ ε }
ReflexiveProperty( OPE(x) )
x rdf:type owl:IrreflexiveProperty
{ OPE(x) ≠ ε }
IrreflexiveProperty( OPE(x) )
x rdf:type owl:SymmetricProperty
{ OPE(x) ≠ ε }
SymmetricProperty( OPE(x) )
x rdf:type owl:AsymmetricProperty
{ OPE(x) ≠ ε }
AsymmetricProperty( OPE(x) )
x rdf:type owl:TransitiveProperty
{ OPE(x) ≠ ε }
TransitiveProperty( OPE(x) )
x rdfs:subPropertyOf y
{ DPE(x) ≠ ε and DPE(y) ≠ ε }
SubPropertyOf( DPE(x) DPE(y) )
x owl:equivalentProperty y
{ DPE(x) ≠ ε and DPE(y) ≠ ε }
EquivalentProperties( DPE(x) DPE(y) )
x owl:propertyDisjointWith y
{ DPE(x) ≠ ε and DPE(y) ≠ ε }
DisjointProperties( DPE(x) DPE(y) )
_:x rdf:type owl:AllDisjointProperties
_:x owl:members T(SEQ y1 ... yn)
{ n ≥ 2 and DPE(yi) ≠ ε for each 1 ≤ i ≤ n }
DisjointProperties( DPE(y1) ... DPE(yn) )
x rdfs:domain y
{ DPE(x) ≠ ε and CE(y) ≠ ε }
PropertyDomain( DPE(x) CE(y) )
x rdfs:range y
{ DPE(x) ≠ ε and DR(y) ≠ ε }
PropertyRange( DPE(x) DR(y) )
x rdf:type owl:FunctionalProperty
{ DPE(x) ≠ ε }
FunctionalProperty( DPE(x) )
x owl:hasKey T(SEQ y1 ... yn)
{ n ≥ 1,
  CE(x) ≠ ε, and
  OPEorDPE(yi) ≠ ε for each 1 ≤ i ≤ n }
HasKey( CE(x) OPEorDPE(y1) ... OPEorDPE(yn) )
x owl:sameAs y SameIndividual( x y )
x owl:differentFrom y DifferentIndividuals( x y )
_:x rdf:type owl:AllDifferent
_:x owl:members T(SEQ x1 ... xn)
{ n ≥ 2 }
DifferentIndividuals( x1 ... xn )
_:x rdf:type owl:AllDifferent
_:x owl:distinctMembers T(SEQ x1 ... xn)
{ n ≥ 2 }
DifferentIndividuals( x1 ... xn )
x rdf:type y
{ CE(y) ≠ ε }
ClassAssertion( x CE(y) )
x *:y z
{ OPE(*:y) ≠ ε }
PropertyAssertion( OPE(*:y) x z )
_:x rdf:type owl:NegativePropertyAssertion
_:x owl:sourceIndividual w
_:x owl:assertionProperty y
_:x owl:targetIndividual z
{ OPE(y) ≠ ε }
NegativePropertyAssertion( OPE(y) w z )
x *:y lt
{ DPE(*:y) ≠ ε }
PropertyAssertion( DPE(*:y) x lt )
_:x rdf:type owl:NegativePropertyAssertion
_:x owl:sourceIndividual w
_:x owl:assertionProperty y
_:x owl:targetValue lt
{ DPE(y) ≠ ε }
NegativePropertyAssertion( DPE(y) w lt )

For clarity, Table 16 handles only axioms without annotations. In case of the patterns for owl:AllDisjointClasses, owl:AllDisjointProperties, owl:AllDifferent, and owl:NegativePropertyAssertion, axiom annotations are defined by ANN(_:x). For other axioms, axiom annotations are obtained by additionally matching patterns from Table 17 in G during axiom matching. Each time a triple pattern is matched, the matched triples are removed from G.

Table 17. Parsing of Annotated Axioms
If G contains this pattern... ...then the following axiom is added to O.
_:x rdf:type owl:Axiom
_:x owl:subject s
_:x owl:predicate *:p
_:x owl:object o
{ s *:p o is the main triple for an axiom and
  G contains possible necessary side triples for the axiom }
The result is the axiom corresponding to s *:p o
(and possible side triples) that additionally
contains the annotations ANN(_:x).

Finally, the patterns from Table 18 are matched in G, the resulting axioms are added to O. These patterns are not generated by the mapping from Section 2, but they can be present in RDF graphs that encode OWL DL ontologies. (Note that the patterns from the table do not contain triples of the form *:x rdf:type owl:Class because such triples are removed while parsing the entity declarations, as specified in Section 3.1.) Each time a triple pattern is matched, the matched triples are removed from G.

Table 18. Parsing of Axioms for Compatibility with OWL DL
If G contains this pattern... ...then the following axiom is added to O.
*:x owl:complementOf y
{ CE(*:x) ≠ ε and CE(y) ≠ ε }
EquivalentClasses( CE(*:x) ComplementOf( CE(y) ) )
*:x owl:unionOf T(SEQ)
{ CE(*:x) ≠ ε }
EquivalentClasses( CE(*:x) owl:Nothing )
*:x owl:unionOf T(SEQ y1)
{ CE(*:x) ≠ ε and CE(y1) ≠ ε }
EquivalentClasses( CE(*:x) CE(y) )
*:x owl:unionOf T(SEQ y1 ... yn)
{ n ≥ 2,
  CE(*:x) ≠ ε, and
  CE(yi) ≠ ε for each 1 ≤ i ≤ n }
EquivalentClasses( CE(*:x) UnionOf( CE(y1) ... CE(yn) ) )
*:x owl:intersectionOf T(SEQ)
{ CE(*:x) ≠ ε }
EquivalentClasses( CE(*:x) owl:Thing )
*:x owl:intersectionOf T(SEQ y1)
{ CE(*:x) ≠ ε and CE(y1) ≠ ε }
EquivalentClasses( CE(*:x) CE(y) )
*:x owl:intersectionOf T(SEQ y1 ... yn)
{ n ≥ 2,
  CE(*:x) ≠ ε, and
  CE(yi) ≠ ε for each 1 ≤ i ≤ n }
EquivalentClasses( CE(*:x) IntersectionOf( CE(y1) ... CE(yn) ) )
*:x owl:oneOf T(SEQ)
{ CE(*:x) ≠ ε }
EquivalentClasses( CE(*:x) owl:Nothing )
*:x owl:oneOf T(SEQ *:y1 ... *:yn)
{ CE(*:x) ≠ ε }
EquivalentClasses( CE(*:x) OneOf( *:y1 ... *:yn ) )

At the end of this process, if G is not empty then G MUST be rejected as syntactically incorrect.

4 References

[OWL 2 Specification]
OWL 2 Web Ontology Language:Structural Specification and Functional-Style Syntax Boris Motik, Peter F. Patel-Schneider, Bijan Parsia, eds. W3C Working Draft, 08 October 2008, http://www.w3.org/TR/2008/WD-owl2-syntax-20081008/. Latest version available at http://www.w3.org/TR/owl2-syntax/.
[RDF Semantics]
RDF Semantics. Patrick Hayes, Editor, W3C Recommendation, 10 February 2004, http://www.w3.org/TR/2004/REC-rdf-mt-20040210/.
[RFC 2119]
RFC 2119: Key words for use in RFCs to Indicate Requirement Levels. Network Working Group, S. Bradner. Internet Best Current Practice, March 1997.