-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathontology.owl
46 lines (35 loc) · 1.56 KB
/
ontology.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
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0"?>
<rdf:RDF xmlns="https://www.cefriel.com/ontology/example#"
xml:base="https://www.cefriel.com/ontology/example"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:gtfs="http://vocab.gtfs.org/terms#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:Ontology rdf:about="https://www.cefriel.com/ontology/example">
<rdfs:comment>Ontology for chimera-example</rdfs:comment>
<rdfs:label>Ontology Chimera Example</rdfs:label>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://vocab.gtfs.org/terms#parentStation -->
<owl:ObjectProperty rdf:about="http://vocab.gtfs.org/terms#parentStation">
<rdfs:domain rdf:resource="http://vocab.gtfs.org/terms#Stop"/>
<rdfs:range rdf:resource="http://vocab.gtfs.org/terms#Stop"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://vocab.gtfs.org/terms#Stop -->
<owl:Class rdf:about="http://vocab.gtfs.org/terms#Stop"/>
</rdf:RDF>