a b/src/test/resources/test_ab1_usingLabel.owl
1
<?xml version="1.0"?>
2
3
4
<!DOCTYPE Ontology [
5
    <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
6
    <!ENTITY xml "http://www.w3.org/XML/1998/namespace" >
7
    <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
8
    <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
9
]>
10
11
12
<Ontology xmlns="http://www.w3.org/2002/07/owl#"
13
     xml:base="http://localhost/test_ab1_usingLabel.owl"
14
     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
15
     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
16
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
17
     xmlns:xml="http://www.w3.org/XML/1998/namespace"
18
     ontologyIRI="http://localhost/test_ab1_usingLabel.owl">
19
    <Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
20
    <Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/>
21
    <Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/>
22
    <Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
23
    <Declaration>
24
        <Class IRI="#ClassA"/>
25
    </Declaration>
26
    <Declaration>
27
        <NamedIndividual IRI="#ab1232323"/>
28
     </Declaration>
29
    <ClassAssertion>
30
        <Class IRI="#ClassA"/>
31
        <NamedIndividual IRI="#ab1232323"/>
32
    </ClassAssertion>
33
    <AnnotationAssertion>
34
        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
35
        <IRI>#ab1232323</IRI>
36
        <Literal datatypeIRI="&rdf;PlainLiteral">IndivA</Literal>
37
    </AnnotationAssertion>
38
</Ontology>
39
40
41
42
<!-- Generated by the OWL API (version 3.4.2) http://owlapi.sourceforge.net -->
43