-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathexample.nt
More file actions
22 lines (22 loc) · 1.58 KB
/
example.nt
File metadata and controls
22 lines (22 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<urn:Milan> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <urn:City> .
<urn:City> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <urn:Place> .
<urn:Place> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <urn:Thing> .
<urn:Lombardy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <urn:Region> .
<urn:Region> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <urn:Place> .
<urn:Milan> <urn:region> <urn:Lombardy> .
<urn:Beppe_Sala> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <urn:Person> .
<urn:Person> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <urn:Living_Being> .
<urn:Milan> <urn:mayor> <urn:Beppe_Sala> .
<urn:Piedmont> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <urn:Region> .
<urn:Milan> <http://www.w3.org/2000/01/rdf-schema#label> "Milan"@en .
<urn:City> <http://www.w3.org/2000/01/rdf-schema#label> "city"@en .
<urn:Lombardy> <http://www.w3.org/2000/01/rdf-schema#label> "Lombardy"@en .
<urn:Place> <http://www.w3.org/2000/01/rdf-schema#label> "place"@en .
<urn:Region> <http://www.w3.org/2000/01/rdf-schema#label> "region"@en .
<urn:Beppe_Sala> <http://www.w3.org/2000/01/rdf-schema#label> "Beppe Sala"@en .
<urn:Person> <http://www.w3.org/2000/01/rdf-schema#label> "person"@en .
<urn:Piedmont> <http://www.w3.org/2000/01/rdf-schema#label> "Piedmont"@en .
<urn:Thing> <http://www.w3.org/2000/01/rdf-schema#label> "thing"@en .
<urn:Living_Being> <http://www.w3.org/2000/01/rdf-schema#label> "living being"@en .
<urn:region> <http://www.w3.org/2000/01/rdf-schema#label> "has region"@en .
<urn:mayor> <http://www.w3.org/2000/01/rdf-schema#label> "has mayor"@en .