-
Notifications
You must be signed in to change notification settings - Fork 0
/
judikaty.ttl
158 lines (132 loc) · 4.97 KB
/
judikaty.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix adms: <http://www.w3.org/ns/adms#> .
#Own namespaces
@prefix lex: <http://purl.org/lex#> .
@prefix judgement: <http://purl.org/lex/judgement#> .
@prefix doc-kinds: <http://purl.org/lex/document-kinds#> .
@prefix agenda: <http://purl.org/lex/agenda-soudu#> .
##############################################################
########################## Classes ###########################
##############################################################
judgement:Spisová-značka a owl:Class ;
rdfs:label "Soudní spisová značka"@cs ;
rdfs:subClassOf adms:Identifier .
judgement:ECLI a owl:Class ;
rdfs:label "Identifikátor ECLI"@cs ;
rdfs:subClassOf adms:Identifier .
judgement:Číslo-jednací a owl:Class ;
rdfs:label "Soudní číslo jednací"@cs ;
rdfs:subClassOf adms:Identifier .
##############################################################
################ Properties - Identifiers ####################
##############################################################
judgement:číslo-senátu a owl:FunctionalProperty ;
rdfs:label "Číslo senátu ve spisové značce"@cs ;
rdfs:comment "Může být např. 22, 34, ... ale i I., IV. nebo Pl."@cs ;
rdfs:domain [ a owl:Class ;
owl:unionOf (judgement:Spisová-značka judgement:ECLI judgement:Číslo-jednací)
] ;
rdfs:range xsd:string
.
judgement:staré-číslo-senátu a owl:FunctionalProperty ;
rdfs:label "Číslo původního senátu ve spisové značce v případě předání věci mezi senáty"@cs ;
rdfs:comment "Pokud byla věc převedena mezi dvěma odděleními, zapisují se staré i nové číslo oddělená lomítkem, např. 12/31 Cm 441/1997"@cs ;
rdfs:domain [ a owl:Class ;
owl:unionOf (judgement:Spisová-značka judgement:ECLI judgement:Číslo-jednací)
] ;
rdfs:range xsd:string
.
judgement:druh-věci a owl:FunctionalProperty ;
rdfs:label "Druh věci ve spisové značce"@cs ;
rdfs:domain [ a owl:Class ;
owl:unionOf (judgement:Spisová-značka judgement:ECLI judgement:Číslo-jednací)
] ;
rdfs:range skos:Concept, [
a owl:Restriction ;
owl:onProperty skos:inScheme ;
owl:hasValue agenda:
]
.
judgement:pořadí-v-rejstříku a owl:FunctionalProperty ;
rdfs:label "Pořadí v rejstříku ve spisové značce"@cs ;
rdfs:domain [ a owl:Class ;
owl:unionOf (judgement:Spisová-značka judgement:ECLI judgement:Číslo-jednací)
] ;
rdfs:range xsd:integer
.
judgement:rok a owl:FunctionalProperty ;
rdfs:label "Rok ve spisové značce"@cs ;
rdfs:domain [ a owl:Class ;
owl:unionOf (judgement:Spisová-značka judgement:ECLI judgement:Číslo-jednací)
] ;
rdfs:range xsd:gYear
.
judgement:kód-země a owl:FunctionalProperty ;
rdfs:label "Kód země v ECLI"@cs ;
rdfs:domain judgement:ECLI ;
rdfs:range xsd:string
.
judgement:kód-soudu a owl:FunctionalProperty ;
rdfs:label "Kód soudu v ECLI"@cs ;
rdfs:domain judgement:ECLI ;
rdfs:range xsd:string
.
judgement:rok-ECLI a owl:FunctionalProperty ;
rdfs:label "Rok v ECLI"@cs ;
rdfs:domain judgement:ECLI ;
rdfs:range xsd:gYear
.
judgement:pořadí-rozhodnutí a owl:FunctionalProperty ;
rdfs:label "Pořadí rozhodnutí ve stejné spisové značce"@cs ;
rdfs:domain judgement:ECLI ;
rdfs:range xsd:integer
.
judgement:číslo-strany a owl:FunctionalProperty ;
rdfs:label "Číslo strany ve spisu se spisovou značkou"@cs ;
rdfs:domain judgement:Číslo-jednací ;
rdfs:range xsd:integer
.
######################################################
################## Properties - judikát ##############
######################################################
judgement:typ a owl:FunctionalProperty ;
rdfs:domain lex:Judgement ;
rdfs:range skos:Concept, [
a owl:Restriction ;
owl:onProperty skos:inScheme ;
owl:hasValue doc-kinds:
]
.
judgement:dotčený-předpis a rdf:Property ;
rdfs:label "Dotčený předpis"@cs ;
rdfs:domain lex:Judgement
.
judgement:spisová-značka a owl:FunctionalProperty ;
rdfs:label "Místo vydání"@cs ;
rdfs:domain lex:Judgement ;
rdfs:range judgement:Spisová-značka
.
judgement:ecli a owl:FunctionalProperty ;
rdfs:label "Místo vydání"@cs ;
rdfs:domain lex:Judgement ;
rdfs:range judgement:ECLI
.
judgement:číslo-jednací a owl:FunctionalProperty ;
rdfs:label "Číslo jednací"@cs ;
rdfs:domain lex:Judgement ;
rdfs:range judgement:Číslo-jednací
.
judgement:heslo a rdf:Property ;
rdfs:label "Heslo"@cs ;
rdfs:domain lex:Judgement
.
judgement:místo-vydání a owl:FunctionalProperty ;
rdfs:label "Místo vydání judikátu"@cs ;
rdfs:domain lex:Judgement ;
rdfs:range xsd:string
.