Copyright © 2003 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark, document use and software licensing rules apply.
Contents
Lite | Illegal use of OWL namespace. | 001 | |
---|---|---|---|
Description:
(informative)
<I3.2/Manifest001#test>
|
|||
The names used in a DAML+OIL qualified cardinality constraint are not defined the OWL namespace. | |||
N3 format is informative. | |||
Namespaces: | |||
@prefix eg: <http://example.org/> . | |||
Full | Incorrect:
<I3.2/bad001>
| ||
<!DOCTYPE rdf:RDF [ <!ENTITY owl "http://www.w3.org/2002/07/owl#"> ]> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:eg="http://example.org/" xmlns:owl="&owl;" xml:base= 'http://www.w3.org/2002/03owlt/I3.2/bad001' > <owl:Restriction owl:cardinalityQ="1"> <owl:onProperty rdf:resource="#exampleProp"/> <owl:hasClassQ rdf:resource="#exampleClass"/> </owl:Restriction> </rdf:RDF> | |||
_:a rdf:type owl:Restriction . _:a owl:cardinalityQ "1" . _:a owl:onProperty first:exampleProp . _:a owl:hasClassQ first:exampleClass . |
Lite | Illegal use of OWL namespace. | 002 | |
---|---|---|---|
Description:
(informative)
<I3.2/Manifest002#test>
|
|||
The names used in a DAML+OIL qualified max cardinality constraint are not defined the OWL namespace. | |||
N3 format is informative. | |||
Full | Incorrect:
<I3.2/bad002>
| ||
<!DOCTYPE rdf:RDF [ <!ENTITY owl "http://www.w3.org/2002/07/owl#"> ]> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:owl="&owl;" xml:base= 'http://www.w3.org/2002/03owlt/I3.2/bad002' > <owl:Restriction owl:maxCardinalityQ="1"> <owl:onProperty rdf:resource="#exampleProp"/> <owl:hasClassQ rdf:resource="#exampleClass"/> </owl:Restriction> </rdf:RDF> | |||
_:a rdf:type owl:Restriction . _:a owl:maxCardinalityQ "1" . _:a owl:onProperty first:exampleProp . _:a owl:hasClassQ first:exampleClass . |
Lite | Illegal use of OWL namespace. | 003 | |
---|---|---|---|
Description:
(informative)
<I3.2/Manifest003#test>
|
|||
The names used in a DAML+OIL qualified min cardinality constraint are not defined the OWL namespace. | |||
N3 format is informative. | |||
Namespaces: | |||
@prefix eg: <http://example.org/> . | |||
Full | Incorrect:
<I3.2/bad003>
| ||
<!DOCTYPE rdf:RDF [ <!ENTITY owl "http://www.w3.org/2002/07/owl#"> ]> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:eg="http://example.org/" xmlns:owl="&owl;" xml:base= 'http://www.w3.org/2002/03owlt/I3.2/bad003' > <owl:Restriction owl:minCardinalityQ="1"> <owl:onProperty rdf:resource="#exampleProp"/> <owl:hasClassQ rdf:resource="#exampleClass"/> </owl:Restriction> </rdf:RDF> | |||
_:a rdf:type owl:Restriction . _:a owl:minCardinalityQ "1" . _:a owl:onProperty first:exampleProp . _:a owl:hasClassQ first:exampleClass . |
Lite | Illegal use of OWL namespace. | 001 | |
---|---|---|---|
Description:
(informative)
<I3.4/Manifest001#test>
|
|||
The name UnambiguousProperty is not defined in the OWL namespace. daml:UnambiguousProperty corresponds to owl:InverseFunctionalProperty . | |||
N3 format is informative. | |||
Full | Incorrect:
<I3.4/bad001>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base= 'http://www.w3.org/2002/03owlt/I3.4/bad001' xmlns:owl ="http://www.w3.org/2002/07/owl#" > <owl:UnambiguousProperty rdf:ID="Name"/> </rdf:RDF> | |||
first:Name rdf:type owl:UnambiguousProperty . |
Lite | Illegal use of OWL namespace. | 001 | |
---|---|---|---|
Description:
(informative)
<I4.1/Manifest001#test>
|
|||
The name UniqueProperty is not defined in the OWL namespace.
daml:UniqueProperty corresponds to owl:FunctionalProperty . | |||
N3 format is informative. | |||
Full | Incorrect:
<I4.1/bad001>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base= 'http://www.w3.org/2002/03owlt/I4.1/bad001' xmlns:owl ="http://www.w3.org/2002/07/owl#" > <owl:UniqueProperty rdf:ID="Name"/> </rdf:RDF> | |||
first:Name rdf:type owl:UniqueProperty . |
Full | Positive Entailment Test: | 001 | |
---|---|---|---|
Description:
(informative)
<I4.6/Manifest001#test>
|
|||
sameAs and sameIndividualAs are equivalent. | |||
N3 format is informative. | |||
Full | Premises:
<I4.6/premises001>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:owl="http://www.w3.org/2002/07/owl#" xml:base="http://www.w3.org/2002/03owlt/I4.6/premises001" > <rdf:Description rdf:ID="A"> <owl:sameAs rdf:resource="#B"/> </rdf:Description> </rdf:RDF> | |||
first:A owl:sameAs first:B . | |||
Lite | Conclusions:
<I4.6/conclusions001>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:owl="http://www.w3.org/2002/07/owl#" xml:base="http://www.w3.org/2002/03owlt/I4.6/conclusions001" > <owl:Thing rdf:about="premises001#A"> <owl:sameIndividualAs> <owl:Thing rdf:about="premises001#B"/> </owl:sameIndividualAs> </owl:Thing> </rdf:RDF> | |||
first:A rdf:type owl:Thing . first:B rdf:type owl:Thing . first:A owl:sameIndividualAs first:B . |
Full | Positive Entailment Test: | 002 | |
---|---|---|---|
Description:
(informative)
<I4.6/Manifest002#test>
|
|||
sameAs and sameIndividualAs are equivalent. | |||
N3 format is informative. | |||
Full | Premises:
<I4.6/premises002>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:owl="http://www.w3.org/2002/07/owl#" xml:base="http://www.w3.org/2002/03owlt/I4.6/premises002" > <rdf:Description rdf:ID="A"> <owl:sameIndividualAs rdf:resource="#B"/> </rdf:Description> </rdf:RDF> | |||
first:A owl:sameIndividualAs first:B . | |||
Full | Conclusions:
<I4.6/conclusions002>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:owl="http://www.w3.org/2002/07/owl#" xml:base="http://www.w3.org/2002/03owlt/I4.6/conclusions002" > <owl:Thing rdf:about="premises002#A"> <owl:sameAs> <owl:Thing rdf:about="premises002#B"/> </owl:sameAs> </owl:Thing> </rdf:RDF> | |||
first:A rdf:type owl:Thing . first:B rdf:type owl:Thing . first:A owl:sameAs first:B . |
Full | Positive Entailment Test: | 003 | |
---|---|---|---|
Description:
(informative)
<I4.6/Manifest003#test>
|
|||
owl:sameIndividualAs is stronger than owl:equivalentClass . | |||
N3 format is informative. | |||
Full | Premises:
<I4.6/premises003>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:owl="http://www.w3.org/2002/07/owl#" xml:base="http://www.w3.org/2002/03owlt/I4.6/premises003" > <owl:Class rdf:ID="C1"> <owl:sameIndividualAs> <owl:Class rdf:ID="C2"/> </owl:sameIndividualAs> </owl:Class> </rdf:RDF> | |||
first:C1 rdf:type owl:Class . first:C2 rdf:type owl:Class . first:C1 owl:sameIndividualAs first:C2 . | |||
Lite | Conclusions:
<I4.6/conclusions003>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:owl="http://www.w3.org/2002/07/owl#" xml:base="http://www.w3.org/2002/03owlt/I4.6/conclusions003" > <owl:Class rdf:about="premises003#C1"> <owl:equivalentClass> <owl:Class rdf:about="premises003#C2"/> </owl:equivalentClass> </owl:Class> </rdf:RDF> | |||
first:C1 rdf:type owl:Class . first:C2 rdf:type owl:Class . first:C1 owl:equivalentClass first:C2 . |
Full | Positive Entailment Test: | 001 | |
---|---|---|---|
Description:
(informative)
<I5.1/Manifest001#test>
|
|||
stateCode example using an inverseFunctionalProperty and literals | |||
N3 format is informative. | |||
Namespaces: | |||
@prefix NS0: <http://example.org/vocab#> . | |||
Full | Premises:
<I5.1/premises001>
| ||
<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xml:base= 'http://www.w3.org/2002/03owlt/I5.1/premises001' xmlns:NS0='http://example.org/vocab#' > <rdf:Description rdf:nodeID='A0'> <NS0:stateCode>KS</NS0:stateCode> <NS0:population>2688418</NS0:population> </rdf:Description> <rdf:Description rdf:about='http://example.org/vocab#stateCode'> <rdf:type rdf:resource='http://www.w3.org/2002/07/owl#InverseFunctionalProperty'/> </rdf:Description> <rdf:Description rdf:nodeID='A1'> <NS0:stateCode>KS</NS0:stateCode> <NS0:stateBird rdf:resource='http://example.org/vocab#WesternMeadowlark'/> </rdf:Description> </rdf:RDF> | |||
_:a NS0:stateCode "KS" . _:a NS0:population "2688418" . NS0:stateCode rdf:type owl:InverseFunctionalProperty . _:c NS0:stateCode "KS" . _:c NS0:stateBird NS0:WesternMeadowlark . | |||
Full | Conclusions:
<I5.1/conclusions001>
| ||
<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:NS0='http://example.org/vocab#' xml:base= 'http://www.w3.org/2002/03owlt/I5.1/conclusions001' > <rdf:Description rdf:nodeID='A0'> <NS0:population>2688418</NS0:population> <NS0:stateBird rdf:resource='http://example.org/vocab#WesternMeadowlark'/> </rdf:Description> </rdf:RDF> | |||
_:a NS0:population "2688418" . _:a NS0:stateBird NS0:WesternMeadowlark . |
Lite | Consistent document. | 001 | |
---|---|---|---|
Description:
(informative)
<I5.2/Manifest001#test>
|
|||
A class like owl:Nothing can be defined using OWL Lite restrictions. | |||
N3 format is informative. | |||
Lite | Consistent:
<I5.2/consistent001>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:first="http://www.w3.org/2002/03owlt/I5.2/consistent001#" xml:base="http://www.w3.org/2002/03owlt/I5.2/consistent001" > <owl:Class rdf:ID="Nothing"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty> <owl:ObjectProperty rdf:about="#p"/> </owl:onProperty> <owl:minCardinality rdf:datatype= "http://www.w3.org/2001/XMLSchema#nonNegativeInteger" >1</owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty> <owl:ObjectProperty rdf:about="#p"/> </owl:onProperty> <owl:maxCardinality rdf:datatype= "http://www.w3.org/2001/XMLSchema#nonNegativeInteger" >0</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> | |||
first:Nothing rdf:type owl:Class . _:a rdf:type owl:Restriction . first:p rdf:type owl:ObjectProperty . _:a owl:onProperty first:p . _:a owl:minCardinality "1"^^xsd:nonNegativeInteger . first:Nothing rdfs:subClassOf _:a . _:c rdf:type owl:Restriction . first:p rdf:type owl:ObjectProperty . _:c owl:onProperty first:p . _:c owl:maxCardinality "0"^^xsd:nonNegativeInteger . first:Nothing rdfs:subClassOf _:c . |
Lite | Positive Entailment Test: | 002 | |
---|---|---|---|
Description:
(informative)
<I5.2/Manifest002#test>
|
|||
A class like owl:Nothing can be defined using OWL Lite restrictions. | |||
N3 format is informative. | |||
Lite | Premises:
<I5.2/premises002>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xml:base="http://www.w3.org/2002/03owlt/I5.2/premises002" > <owl:Class rdf:ID="Nothing"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty> <owl:ObjectProperty rdf:about="#p"/> </owl:onProperty> <owl:minCardinality rdf:datatype= "http://www.w3.org/2001/XMLSchema#nonNegativeInteger" >1</owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty> <owl:ObjectProperty rdf:about="#p"/> </owl:onProperty> <owl:maxCardinality rdf:datatype= "http://www.w3.org/2001/XMLSchema#nonNegativeInteger" >0</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> | |||
first:Nothing rdf:type owl:Class . _:a rdf:type owl:Restriction . first:p rdf:type owl:ObjectProperty . _:a owl:onProperty first:p . _:a owl:minCardinality "1"^^xsd:nonNegativeInteger . first:Nothing rdfs:subClassOf _:a . _:c rdf:type owl:Restriction . first:p rdf:type owl:ObjectProperty . _:c owl:onProperty first:p . _:c owl:maxCardinality "0"^^xsd:nonNegativeInteger . first:Nothing rdfs:subClassOf _:c . | |||
Lite | Conclusions:
<I5.2/conclusions002>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:owl="http://www.w3.org/2002/07/owl#" xml:base="http://www.w3.org/2002/03owlt/I5.2/conclusions002" > <owl:Class rdf:about="premises002#Nothing"> <owl:equivalentClass> <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Nothing" /> </owl:equivalentClass> </owl:Class> </rdf:RDF> | |||
first:Nothing rdf:type owl:Class . owl:Nothing rdf:type owl:Class . first:Nothing owl:equivalentClass owl:Nothing . |
Full | Positive Entailment Test: | 001 | |
---|---|---|---|
Description:
(informative)
<I5.24/Manifest001#test>
|
|||
This entailment is similar to one that does not hold in RDFS. | |||
N3 format is informative. | |||
Full | Premises:
<I5.24/premises001>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xml:base="http://www.w3.org/2002/03owlt/I5.24/premises001" > <rdf:Property rdf:ID="prop"> <rdfs:range> <owl:Class rdf:ID="A"> <rdfs:subClassOf> <owl:Class rdf:ID="B"/> </rdfs:subClassOf> </owl:Class> </rdfs:range> </rdf:Property> </rdf:RDF> | |||
first:prop rdf:type rdf:Property . first:A rdf:type owl:Class . first:B rdf:type owl:Class . first:A rdfs:subClassOf first:B . first:prop rdfs:range first:A . | |||
Full | Conclusions:
<I5.24/conclusions001>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xml:base="http://www.w3.org/2002/03owlt/I5.24/conclusions001" > <rdf:Property rdf:about="premises001#prop"> <rdfs:range> <owl:Class rdf:about="premises001#B"/> </rdfs:range> </rdf:Property> </rdf:RDF> | |||
first:prop rdf:type rdf:Property . first:B rdf:type owl:Class . first:prop rdfs:range first:B . |
Lite | Positive Entailment Test: | 004 | |
---|---|---|---|
Description:
(informative)
<I5.24/Manifest004#test>
|
|||
This is a typical definition of range from description logic. It works both ways. | |||
N3 format is informative. | |||
Lite | Premises:
<I5.24/premises004>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xml:base="http://www.w3.org/2002/03owlt/I5.24/premises004" > <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty> <owl:ObjectProperty rdf:about="conclusions004#prop"/> </owl:onProperty> <owl:allValuesFrom> <owl:Class rdf:about="conclusions004#A"/> </owl:allValuesFrom> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF> | |||
owl:Thing rdf:type owl:Class . _:a rdf:type owl:Restriction . second:prop rdf:type owl:ObjectProperty . _:a owl:onProperty second:prop . second:A rdf:type owl:Class . _:a owl:allValuesFrom second:A . owl:Thing rdfs:subClassOf _:a . | |||
Lite | Conclusions:
<I5.24/conclusions004>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xml:base="http://www.w3.org/2002/03owlt/I5.24/conclusions004" > <owl:ObjectProperty rdf:ID="prop"> <rdfs:range> <owl:Class rdf:about="#A"/> </rdfs:range> </owl:ObjectProperty> </rdf:RDF> | |||
second:prop rdf:type owl:ObjectProperty . second:A rdf:type owl:Class . second:prop rdfs:range second:A . |
Full | Consistent document. | 005 | |
---|---|---|---|
Description:
(informative)
<I5.3/Manifest005#test>
|
|||
Any RDF/XML document is in OWL Full. | |||
N3 format is informative. | |||
Full | Consistent:
<I5.3/consistent005>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:first="http://www.w3.org/2002/03owlt/I5.3/consistent005#" xml:base="http://www.w3.org/2002/03owlt/I5.3/consistent005" > <rdf:Description> <first:p > <rdf:Description /> </first:p> </rdf:Description> </rdf:RDF> | |||
_:a first:p _:b . |
Lite | Consistent document. | 006 | |
---|---|---|---|
Description:
(informative)
<I5.3/Manifest006#test>
|
|||
A minimal OWL Lite version of test 005. | |||
N3 format is informative. | |||
Lite | Consistent:
<I5.3/consistent006>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:first="http://www.w3.org/2002/03owlt/I5.3/consistent006#" xml:base="http://www.w3.org/2002/03owlt/I5.3/consistent006" > <owl:Thing> <first:p> <owl:Thing/> </first:p> </owl:Thing> <owl:ObjectProperty rdf:ID="p" /> </rdf:RDF> | |||
_:a rdf:type owl:Thing . _:c rdf:type owl:Thing . _:a first:p _:c . first:p rdf:type owl:ObjectProperty . |
Full | Consistent document. | 007 | |
---|---|---|---|
Description:
(informative)
<I5.3/Manifest007#test>
|
|||
Any RDF/XML document is in OWL Full. | |||
N3 format is informative. | |||
Full | Consistent:
<I5.3/consistent007>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:first="http://www.w3.org/2002/03owlt/I5.3/consistent007#" xml:base="http://www.w3.org/2002/03owlt/I5.3/consistent007" > <rdf:Description> <first:dp>value</first:dp> </rdf:Description> </rdf:RDF> | |||
_:a first:dp "value" . |
Lite | Consistent document. | 008 | |
---|---|---|---|
Description:
(informative)
<I5.3/Manifest008#test>
|
|||
An OWL Lite version of test 007. | |||
N3 format is informative. | |||
Lite | Consistent:
<I5.3/consistent008>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:first="http://www.w3.org/2002/03owlt/I5.3/consistent008#" xml:base="http://www.w3.org/2002/03owlt/I5.3/consistent008" > <owl:Thing> <first:dp>value</first:dp> </owl:Thing> <owl:DatatypeProperty rdf:ID="dp" /> </rdf:RDF> | |||
_:a rdf:type owl:Thing . _:a first:dp "value" . first:dp rdf:type owl:DatatypeProperty . |
Full | Consistent document. | 009 | |
---|---|---|---|
Description:
(informative)
<I5.3/Manifest009#test>
|
|||
The use of blank nodes in OWL DL and OWL Lite is restricted. | |||
N3 format is informative. | |||
Full | Consistent:
<I5.3/consistent009>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:first="http://www.w3.org/2002/03owlt/I5.3/consistent009#" xml:base="http://www.w3.org/2002/03owlt/I5.3/consistent009" > <owl:Thing> <first:p rdf:nodeID="shared" /> <first:q rdf:nodeID="shared" /> </owl:Thing> <owl:ObjectProperty rdf:ID="p" /> <owl:ObjectProperty rdf:ID="q" /> </rdf:RDF> | |||
_:a rdf:type owl:Thing . _:a first:p _:c . _:a first:q _:c . first:p rdf:type owl:ObjectProperty . first:q rdf:type owl:ObjectProperty . |
Full | OWL described in OWL. | 001 | |
---|---|---|---|
Description:
(informative)
<I5.5/Manifest001#test>
|
|||
rdf:first is a FunctionalProperty. | |||
N3 format is informative. | |||
Full | True:
<I5.5/conclusions001>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base= 'http://www.w3.org/2002/03owlt/I5.5/conclusions001' xmlns:owl="http://www.w3.org/2002/07/owl#" > <owl:FunctionalProperty rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#first" /> </rdf:RDF> | |||
rdf:first rdf:type owl:FunctionalProperty . |
Full | OWL described in OWL. | 002 | |
---|---|---|---|
Description:
(informative)
<I5.5/Manifest002#test>
|
|||
rdf:rest is a FunctionalProperty. | |||
N3 format is informative. | |||
Full | True:
<I5.5/conclusions002>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.w3.org/2002/03owlt/I5.5/conclusions002" xmlns:owl="http://www.w3.org/2002/07/owl#" > <owl:FunctionalProperty rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest" /> </rdf:RDF> | |||
rdf:rest rdf:type owl:FunctionalProperty . |
Full | Inconsistent document. | 003 | |
---|---|---|---|
Description:
(informative)
<I5.5/Manifest003#test>
|
|||
rdf:nil cannot have an rdf:rest property. | |||
N3 format is informative. | |||
Full | Inconsistent:
<I5.5/inconsistent003>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.w3.org/2002/03owlt/I5.5/inconsistent003" > <rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"> <rdf:rest> <rdf:Description /> </rdf:rest> </rdf:Description> </rdf:RDF> | |||
rdf:nil rdf:rest _:a . |
Full | Inconsistent document. | 004 | |
---|---|---|---|
Description:
(informative)
<I5.5/Manifest004#test>
|
|||
rdf:nil cannot have an rdf:first property. | |||
N3 format is informative. | |||
Full | Inconsistent:
<I5.5/inconsistent004>
| ||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:base="http://www.w3.org/2002/03owlt/I5.5/inconsistent004" > <rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"> <rdf:first> <rdf:Description /> </rdf:first> </rdf:Description> </rdf:RDF> | |||
rdf:nil rdf:first _:a . |