-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmudbuildings.ttl
53 lines (44 loc) · 1.69 KB
/
mudbuildings.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
42
43
44
45
46
47
48
49
50
51
52
53
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix mud: <https://raw.githubusercontent.com/Multi-User-Domain/vocab/main/mud.ttl#> .
@prefix mudbuildings: <#> .
mudbuildings: rdf:type owl:Ontology ;
# Description
dcterms:title "Multi-User Domain Buildings ontology" ;
dcterms:description """
Defines a core library of mud:BuildingTypes properties
""" ;
# Ownership
dcterms:license <http://creativecommons.org/licenses/by/4.0/> ;
dcterms:creator <https://calum.inrupt.net/profile/card#me> .
mudbuildings:Agora a mud:BuildingType ;
rdfs:label "Agora"@en ;
rdfs:label "Agora"@fr ;
rdfs:label "Αγορά"@el .
mudbuildings:Factory a mud:BuildingType ;
rdfs:label "Factory"@en ;
rdfs:label "Manufacture"@fr ;
rdfs:label "Εργοστάσιο"@el .
mudbuildings:House a mud:BuildingType ;
rdfs:label "House"@en ;
rdfs:label "Maison"@fr ;
rdfs:label "Σπίτι"@el .
mudbuildings:Nightclub a mud:BuildingType ;
rdfs:label "Nightclub"@en ;
rdfs:label "Boîte de nuit"@fr .
mudbuildings:Prison a mud:BuildingType ;
rdfs:label "Prison"@en ;
rdfs:label "Prison"@fr ;
rdfs:label "Φυλακή"@el .
mudbuildings:Stadium a mud:BuildingType ;
rdfs:label "Stadium"@en ;
rdfs:label "Stade"@fr ;
rdfs:label "Στάδιο"@el .
mudbuildings:Kitchen a mud:BuildingType ;
rdfs:label "Kitchen"@en ;
rdfs:label "Cuisine"@fr .