-
Notifications
You must be signed in to change notification settings - Fork 1
/
italy.ttl
41 lines (30 loc) · 1.11 KB
/
italy.ttl
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
@prefix : <http://localhost:8000/italy#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://localhost:8000/italy> .
<http://localhost:8000/italy> rdf:type owl:Ontology .
:Area rdf:type owl:Class .
:Country rdf:type owl:Class ;
rdfs:subClassOf :Area .
:Region rdf:type owl:Class ;
rdfs:subClassOf :Area .
:Province rdf:type owl:Class ;
rdfs:subClassOf :Area .
:has_region rdf:type owl:ObjectProperty ;
rdfs:domain :Country ;
rdfs:range :Region .
:has_province rdf:type owl:ObjectProperty ;
rdfs:domain :Region ;
rdfs:range :Province .
:code rdf:type owl:DatatypeProperty ;
rdfs:domain :Province ,
:Region ;
rdfs:range xsd:string .
:name rdf:type owl:DatatypeProperty ;
rdfs:domain :Area ;
rdfs:range xsd:string .
:short_name rdf:type owl:DatatypeProperty ;
rdfs:domain :Province ;
rdfs:range xsd:string .