-
Notifications
You must be signed in to change notification settings - Fork 3
/
test_temp.owl
34 lines (26 loc) · 1.25 KB
/
test_temp.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xml:base="http://test.org/onto.owl"
xmlns="http://test.org/onto.owl#">
<owl:Ontology rdf:about="http://test.org/onto.owl"/>
<owl:DatatypeProperty rdf:about="#new_dp"/>
<owl:Class rdf:about="#Drug">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Class>
<Drug rdf:about="#my_drug">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</Drug>
<Drug rdf:about="aaa//urn:uuid938111">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<new_dp rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://www.gbif.org/species/10360397</new_dp>
</Drug>
<owl:Axiom>
<owl:annotatedSource rdf:resource="aaa//urn:uuid938111"/>
<owl:annotatedProperty rdf:resource="#new_dp"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://www.gbif.org/species/10360397</owl:annotatedTarget>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</rdfs:comment>
</owl:Axiom>
</rdf:RDF>