@igea/oac_backend 1.0.34 → 1.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -2
- package/src/controllers/fuseki.js +101 -0
- package/src/controllers/ontology.js +44 -0
- package/src/index.js +3 -0
- package/src/models/Converter +173 -0
- package/src/ontology/config.shacl.ttl +265 -0
- package/src/ontology/schema_v1.rdf +628 -0
- package/src/ontology/schema_v1.shacl.ttl +2090 -0
- package/src/ontology/schema_v1.ttl +635 -0
- package/src/tools/rdfToShacl.js +7 -0
|
@@ -0,0 +1,2090 @@
|
|
|
1
|
+
@prefix sh: <http://www.w3.org/ns/shacl#> .
|
|
2
|
+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
3
|
+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
|
4
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
5
|
+
@prefix volipi: <http://data.sparna.fr/ontologies/volipi#> .
|
|
6
|
+
@prefix ex: <http://example.org/ns#> .
|
|
7
|
+
|
|
8
|
+
ex:LiteralShape
|
|
9
|
+
a sh:NodeShape ;
|
|
10
|
+
sh:targetClass <http://www.w3.org/2000/01/rdf-schema#Literal> ;
|
|
11
|
+
sh:property [
|
|
12
|
+
sh:name "type" ;
|
|
13
|
+
sh:description "Literal.type" ;
|
|
14
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
15
|
+
sh:minCount 1 ;
|
|
16
|
+
sh:maxCount 1 ;
|
|
17
|
+
] ;
|
|
18
|
+
sh:property [
|
|
19
|
+
sh:name "label" ;
|
|
20
|
+
sh:description "Literal.label" ;
|
|
21
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
22
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
23
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
24
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
25
|
+
sh:minCount 1 ;
|
|
26
|
+
sh:maxCount 1 ;
|
|
27
|
+
] ;
|
|
28
|
+
.
|
|
29
|
+
ex:CP41_Environmental_Observable_EntityShape
|
|
30
|
+
a sh:NodeShape ;
|
|
31
|
+
rdfs:label "Environmental Observable"@en, "Ambiente Osservabile"@it;
|
|
32
|
+
volipi:iconName "fa-solid fa-clover";
|
|
33
|
+
sh:targetClass <http://ontome.net/ns/cpm/CP41_Environmental_Observable_Entity> ;
|
|
34
|
+
sh:property [
|
|
35
|
+
sh:name "type" ;
|
|
36
|
+
sh:description "CP41_Environmental_Observable_Entity.type" ;
|
|
37
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
38
|
+
sh:minCount 1 ;
|
|
39
|
+
sh:maxCount 1 ;
|
|
40
|
+
] ;
|
|
41
|
+
sh:property [
|
|
42
|
+
sh:name "label" ;
|
|
43
|
+
sh:description "CP41_Environmental_Observable_Entity.label" ;
|
|
44
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
45
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
46
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
47
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
48
|
+
sh:minCount 1 ;
|
|
49
|
+
sh:maxCount 1 ;
|
|
50
|
+
] ;
|
|
51
|
+
sh:property [
|
|
52
|
+
sh:name "P2_has_type" ;
|
|
53
|
+
sh:description "CP41_Environmental_Observable_Entity.P2_has_type" ;
|
|
54
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
55
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
56
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
57
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
58
|
+
sh:minCount 1 ;
|
|
59
|
+
sh:maxCount 1 ;
|
|
60
|
+
] ;
|
|
61
|
+
sh:property [
|
|
62
|
+
sh:name "Pc1_affects" ;
|
|
63
|
+
sh:description "CP41_Environmental_Observable_Entity.Pc1_affects" ;
|
|
64
|
+
sh:path <http://ontome.net/ns/cpm/Pc1_affects> ;
|
|
65
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E55_Type>) ] ;
|
|
66
|
+
sh:message "Il campo Pc1_affects deve essere un'istanza valida."@it ;
|
|
67
|
+
sh:message "The field Pc1_affects must be a valid instance."@en ;
|
|
68
|
+
sh:minCount 1 ;
|
|
69
|
+
sh:maxCount 1 ;
|
|
70
|
+
] ;
|
|
71
|
+
.
|
|
72
|
+
ex:S22_Segment_of_MatterShape
|
|
73
|
+
a sh:NodeShape ;
|
|
74
|
+
sh:targetClass <http://www.cidoc-crm.org/extensions/crmsci/S22_Segment_of_Matter> ;
|
|
75
|
+
sh:property [
|
|
76
|
+
sh:name "type" ;
|
|
77
|
+
sh:description "S22_Segment_of_Matter.type" ;
|
|
78
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
79
|
+
sh:minCount 1 ;
|
|
80
|
+
sh:maxCount 1 ;
|
|
81
|
+
] ;
|
|
82
|
+
sh:property [
|
|
83
|
+
sh:name "label" ;
|
|
84
|
+
sh:description "S22_Segment_of_Matter.label" ;
|
|
85
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
86
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
87
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
88
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
89
|
+
sh:minCount 1 ;
|
|
90
|
+
sh:maxCount 1 ;
|
|
91
|
+
] ;
|
|
92
|
+
sh:property [
|
|
93
|
+
sh:name "O15i_was_occupied_by" ;
|
|
94
|
+
sh:description "S22_Segment_of_Matter.O15i_was_occupied_by" ;
|
|
95
|
+
sh:path <http://www.cidoc-crm.org/extensions/crmsci/O15i_was_occupied_by> ;
|
|
96
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S13_Sample>) ] ;
|
|
97
|
+
sh:message "Il campo O15i_was_occupied_by deve essere un'istanza valida."@it ;
|
|
98
|
+
sh:message "The field O15i_was_occupied_by must be a valid instance."@en ;
|
|
99
|
+
sh:minCount 1 ;
|
|
100
|
+
sh:maxCount 1 ;
|
|
101
|
+
] ;
|
|
102
|
+
.
|
|
103
|
+
ex:S13_SampleShape
|
|
104
|
+
a sh:NodeShape ;
|
|
105
|
+
sh:targetClass <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> ;
|
|
106
|
+
sh:property [
|
|
107
|
+
sh:name "type" ;
|
|
108
|
+
sh:description "S13_Sample.type" ;
|
|
109
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
110
|
+
sh:minCount 1 ;
|
|
111
|
+
sh:maxCount 1 ;
|
|
112
|
+
] ;
|
|
113
|
+
sh:property [
|
|
114
|
+
sh:name "label" ;
|
|
115
|
+
sh:description "S13_Sample.label" ;
|
|
116
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
117
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
118
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
119
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
120
|
+
sh:minCount 1 ;
|
|
121
|
+
sh:maxCount 1 ;
|
|
122
|
+
] ;
|
|
123
|
+
sh:property [
|
|
124
|
+
sh:name "P48_has_preferred_identifier" ;
|
|
125
|
+
sh:description "S13_Sample.P48_has_preferred_identifier" ;
|
|
126
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P48_has_preferred_identifier> ;
|
|
127
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E42_Identifier> <http://www.cidoc-crm.org/cidoc-crm/E7_Activity>) ] ;
|
|
128
|
+
sh:message "Il campo P48_has_preferred_identifier deve essere un'istanza valida."@it ;
|
|
129
|
+
sh:message "The field P48_has_preferred_identifier must be a valid instance."@en ;
|
|
130
|
+
sh:minCount 1 ;
|
|
131
|
+
sh:maxCount 1 ;
|
|
132
|
+
] ;
|
|
133
|
+
sh:property [
|
|
134
|
+
sh:name "P140i_was_attributed_by" ;
|
|
135
|
+
sh:description "S13_Sample.P140i_was_attributed_by" ;
|
|
136
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P140i_was_attributed_by> ;
|
|
137
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E14_Condition_Assessment> <http://www.cidoc-crm.org/extensions/crmsci/S4_Observation>) ] ;
|
|
138
|
+
sh:message "Il campo P140i_was_attributed_by deve essere un'istanza valida."@it ;
|
|
139
|
+
sh:message "The field P140i_was_attributed_by must be a valid instance."@en ;
|
|
140
|
+
sh:minCount 1 ;
|
|
141
|
+
sh:maxCount 1 ;
|
|
142
|
+
] ;
|
|
143
|
+
sh:property [
|
|
144
|
+
sh:name "P16i_was_used_for" ;
|
|
145
|
+
sh:description "S13_Sample.P16i_was_used_for" ;
|
|
146
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P16i_was_used_for> ;
|
|
147
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E7_Activity>) ] ;
|
|
148
|
+
sh:message "Il campo P16i_was_used_for deve essere un'istanza valida."@it ;
|
|
149
|
+
sh:message "The field P16i_was_used_for must be a valid instance."@en ;
|
|
150
|
+
sh:minCount 1 ;
|
|
151
|
+
sh:maxCount 1 ;
|
|
152
|
+
] ;
|
|
153
|
+
sh:property [
|
|
154
|
+
sh:name "P2_has_type" ;
|
|
155
|
+
sh:description "S13_Sample.P2_has_type" ;
|
|
156
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
157
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
158
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
159
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
160
|
+
sh:minCount 1 ;
|
|
161
|
+
sh:maxCount 1 ;
|
|
162
|
+
] ;
|
|
163
|
+
sh:property [
|
|
164
|
+
sh:name "P43_has_dimension" ;
|
|
165
|
+
sh:description "S13_Sample.P43_has_dimension" ;
|
|
166
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P43_has_dimension> ;
|
|
167
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E54_Dimension>) ] ;
|
|
168
|
+
sh:message "Il campo P43_has_dimension deve essere un'istanza valida."@it ;
|
|
169
|
+
sh:message "The field P43_has_dimension must be a valid instance."@en ;
|
|
170
|
+
sh:minCount 1 ;
|
|
171
|
+
sh:maxCount 1 ;
|
|
172
|
+
] ;
|
|
173
|
+
sh:property [
|
|
174
|
+
sh:name "O25_contains" ;
|
|
175
|
+
sh:description "S13_Sample.O25_contains" ;
|
|
176
|
+
sh:path <http://www.cidoc-crm.org/extensions/crmsci/O25_contains> ;
|
|
177
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S10_Material_Substantial> <http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample>) ] ;
|
|
178
|
+
sh:message "Il campo O25_contains deve essere un'istanza valida."@it ;
|
|
179
|
+
sh:message "The field O25_contains must be a valid instance."@en ;
|
|
180
|
+
sh:minCount 1 ;
|
|
181
|
+
sh:maxCount 1 ;
|
|
182
|
+
] ;
|
|
183
|
+
sh:property [
|
|
184
|
+
sh:name "O2i_was_removed_by" ;
|
|
185
|
+
sh:description "S13_Sample.O2i_was_removed_by" ;
|
|
186
|
+
sh:path <http://www.cidoc-crm.org/extensions/crmsci/O2i_was_removed_by> ;
|
|
187
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S2_Sample_Taking>) ] ;
|
|
188
|
+
sh:message "Il campo O2i_was_removed_by deve essere un'istanza valida."@it ;
|
|
189
|
+
sh:message "The field O2i_was_removed_by must be a valid instance."@en ;
|
|
190
|
+
sh:minCount 1 ;
|
|
191
|
+
sh:maxCount 1 ;
|
|
192
|
+
] ;
|
|
193
|
+
sh:property [
|
|
194
|
+
sh:name "O5i_was_removed_by" ;
|
|
195
|
+
sh:description "S13_Sample.O5i_was_removed_by" ;
|
|
196
|
+
sh:path <http://www.cidoc-crm.org/extensions/crmsci/O5i_was_removed_by> ;
|
|
197
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S2_Sample_Taking>) ] ;
|
|
198
|
+
sh:message "Il campo O5i_was_removed_by deve essere un'istanza valida."@it ;
|
|
199
|
+
sh:message "The field O5i_was_removed_by must be a valid instance."@en ;
|
|
200
|
+
sh:minCount 1 ;
|
|
201
|
+
sh:maxCount 1 ;
|
|
202
|
+
] ;
|
|
203
|
+
sh:property [
|
|
204
|
+
sh:name "P3_has_note" ;
|
|
205
|
+
sh:description "S13_Sample.P3_has_note" ;
|
|
206
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> ;
|
|
207
|
+
sh:class [ sh:in (<http://www.w3.org/2000/01/rdf-schema#Literal>) ] ;
|
|
208
|
+
sh:message "Il campo P3_has_note deve essere un'istanza valida."@it ;
|
|
209
|
+
sh:message "The field P3_has_note must be a valid instance."@en ;
|
|
210
|
+
sh:minCount 1 ;
|
|
211
|
+
sh:maxCount 1 ;
|
|
212
|
+
] ;
|
|
213
|
+
sh:property [
|
|
214
|
+
sh:name "P130_shows_features_of" ;
|
|
215
|
+
sh:description "S13_Sample.P130_shows_features_of" ;
|
|
216
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P130_shows_features_of> ;
|
|
217
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S13_Sample>) ] ;
|
|
218
|
+
sh:message "Il campo P130_shows_features_of deve essere un'istanza valida."@it ;
|
|
219
|
+
sh:message "The field P130_shows_features_of must be a valid instance."@en ;
|
|
220
|
+
sh:minCount 1 ;
|
|
221
|
+
sh:maxCount 1 ;
|
|
222
|
+
] ;
|
|
223
|
+
sh:property [
|
|
224
|
+
sh:name "O3i_was_sample_by" ;
|
|
225
|
+
sh:description "S13_Sample.O3i_was_sample_by" ;
|
|
226
|
+
sh:path <http://www.cidoc-crm.org/extensions/crmsci/O3i_was_sample_by> ;
|
|
227
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S2_Sample_Taking>) ] ;
|
|
228
|
+
sh:message "Il campo O3i_was_sample_by deve essere un'istanza valida."@it ;
|
|
229
|
+
sh:message "The field O3i_was_sample_by must be a valid instance."@en ;
|
|
230
|
+
sh:minCount 1 ;
|
|
231
|
+
sh:maxCount 1 ;
|
|
232
|
+
] ;
|
|
233
|
+
.
|
|
234
|
+
ex:E42_IdentifierShape
|
|
235
|
+
a sh:NodeShape ;
|
|
236
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E42_Identifier> ;
|
|
237
|
+
sh:property [
|
|
238
|
+
sh:name "type" ;
|
|
239
|
+
sh:description "E42_Identifier.type" ;
|
|
240
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
241
|
+
sh:minCount 1 ;
|
|
242
|
+
sh:maxCount 1 ;
|
|
243
|
+
] ;
|
|
244
|
+
sh:property [
|
|
245
|
+
sh:name "label" ;
|
|
246
|
+
sh:description "E42_Identifier.label" ;
|
|
247
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
248
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
249
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
250
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
251
|
+
sh:minCount 1 ;
|
|
252
|
+
sh:maxCount 1 ;
|
|
253
|
+
] ;
|
|
254
|
+
sh:property [
|
|
255
|
+
sh:name "P48_has_preferred_identifier" ;
|
|
256
|
+
sh:description "E42_Identifier.P48_has_preferred_identifier" ;
|
|
257
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P48_has_preferred_identifier> ;
|
|
258
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E42_Identifier> <http://www.cidoc-crm.org/cidoc-crm/E7_Activity>) ] ;
|
|
259
|
+
sh:message "Il campo P48_has_preferred_identifier deve essere un'istanza valida."@it ;
|
|
260
|
+
sh:message "The field P48_has_preferred_identifier must be a valid instance."@en ;
|
|
261
|
+
sh:minCount 1 ;
|
|
262
|
+
sh:maxCount 1 ;
|
|
263
|
+
] ;
|
|
264
|
+
sh:property [
|
|
265
|
+
sh:name "P2_has_type" ;
|
|
266
|
+
sh:description "E42_Identifier.P2_has_type" ;
|
|
267
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
268
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
269
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
270
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
271
|
+
sh:minCount 1 ;
|
|
272
|
+
sh:maxCount 1 ;
|
|
273
|
+
] ;
|
|
274
|
+
sh:property [
|
|
275
|
+
sh:name "Pc43i_uses" ;
|
|
276
|
+
sh:description "E42_Identifier.Pc43i_uses" ;
|
|
277
|
+
sh:path <http://ontome.net/ns/cpm/Pc43i_uses> ;
|
|
278
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E41_Appellation> <http://ontome.net/ns/cpm/CP2_Architecture_Work>) ] ;
|
|
279
|
+
sh:message "Il campo Pc43i_uses deve essere un'istanza valida."@it ;
|
|
280
|
+
sh:message "The field Pc43i_uses must be a valid instance."@en ;
|
|
281
|
+
sh:minCount 1 ;
|
|
282
|
+
sh:maxCount 1 ;
|
|
283
|
+
] ;
|
|
284
|
+
sh:property [
|
|
285
|
+
sh:name "P14_carried_out_by" ;
|
|
286
|
+
sh:description "E42_Identifier.P14_carried_out_by" ;
|
|
287
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P14_carried_out_by> ;
|
|
288
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E39_Actor>) ] ;
|
|
289
|
+
sh:message "Il campo P14_carried_out_by deve essere un'istanza valida."@it ;
|
|
290
|
+
sh:message "The field P14_carried_out_by must be a valid instance."@en ;
|
|
291
|
+
sh:minCount 1 ;
|
|
292
|
+
sh:maxCount 1 ;
|
|
293
|
+
] ;
|
|
294
|
+
sh:property [
|
|
295
|
+
sh:name "P33_used_specific_technique" ;
|
|
296
|
+
sh:description "E42_Identifier.P33_used_specific_technique" ;
|
|
297
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P33_used_specific_technique> ;
|
|
298
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure>) ] ;
|
|
299
|
+
sh:message "Il campo P33_used_specific_technique deve essere un'istanza valida."@it ;
|
|
300
|
+
sh:message "The field P33_used_specific_technique must be a valid instance."@en ;
|
|
301
|
+
sh:minCount 1 ;
|
|
302
|
+
sh:maxCount 1 ;
|
|
303
|
+
] ;
|
|
304
|
+
sh:property [
|
|
305
|
+
sh:name "P160_has_temporal_projection" ;
|
|
306
|
+
sh:description "E42_Identifier.P160_has_temporal_projection" ;
|
|
307
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P160_has_temporal_projection> ;
|
|
308
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span>) ] ;
|
|
309
|
+
sh:message "Il campo P160_has_temporal_projection deve essere un'istanza valida."@it ;
|
|
310
|
+
sh:message "The field P160_has_temporal_projection must be a valid instance."@en ;
|
|
311
|
+
sh:minCount 1 ;
|
|
312
|
+
sh:maxCount 1 ;
|
|
313
|
+
] ;
|
|
314
|
+
sh:property [
|
|
315
|
+
sh:name "P67i_is_referred_to_by" ;
|
|
316
|
+
sh:description "E42_Identifier.P67i_is_referred_to_by" ;
|
|
317
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by> ;
|
|
318
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object> <http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure>) ] ;
|
|
319
|
+
sh:message "Il campo P67i_is_referred_to_by deve essere un'istanza valida."@it ;
|
|
320
|
+
sh:message "The field P67i_is_referred_to_by must be a valid instance."@en ;
|
|
321
|
+
sh:minCount 1 ;
|
|
322
|
+
sh:maxCount 1 ;
|
|
323
|
+
] ;
|
|
324
|
+
sh:property [
|
|
325
|
+
sh:name "P129i_is_subject_of" ;
|
|
326
|
+
sh:description "E42_Identifier.P129i_is_subject_of" ;
|
|
327
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P129i_is_subject_of> ;
|
|
328
|
+
sh:class [ sh:in (<http://www.ics.forth.gr/isl/CRMinf/I4_Proposition_Set>) ] ;
|
|
329
|
+
sh:message "Il campo P129i_is_subject_of deve essere un'istanza valida."@it ;
|
|
330
|
+
sh:message "The field P129i_is_subject_of must be a valid instance."@en ;
|
|
331
|
+
sh:minCount 1 ;
|
|
332
|
+
sh:maxCount 1 ;
|
|
333
|
+
] ;
|
|
334
|
+
sh:property [
|
|
335
|
+
sh:name "P12_occurred_in_the_presence_of" ;
|
|
336
|
+
sh:description "E42_Identifier.P12_occurred_in_the_presence_of" ;
|
|
337
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P12_occurred_in_the_presence_of> ;
|
|
338
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S13_Sample>) ] ;
|
|
339
|
+
sh:message "Il campo P12_occurred_in_the_presence_of deve essere un'istanza valida."@it ;
|
|
340
|
+
sh:message "The field P12_occurred_in_the_presence_of must be a valid instance."@en ;
|
|
341
|
+
sh:minCount 1 ;
|
|
342
|
+
sh:maxCount 1 ;
|
|
343
|
+
] ;
|
|
344
|
+
sh:property [
|
|
345
|
+
sh:name "P16_used_specific_object" ;
|
|
346
|
+
sh:description "E42_Identifier.P16_used_specific_object" ;
|
|
347
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P16_used_specific_object> ;
|
|
348
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E70_Thing> <http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object>) ] ;
|
|
349
|
+
sh:message "Il campo P16_used_specific_object deve essere un'istanza valida."@it ;
|
|
350
|
+
sh:message "The field P16_used_specific_object must be a valid instance."@en ;
|
|
351
|
+
sh:minCount 1 ;
|
|
352
|
+
sh:maxCount 1 ;
|
|
353
|
+
] ;
|
|
354
|
+
sh:property [
|
|
355
|
+
sh:name "P17i_motivated" ;
|
|
356
|
+
sh:description "E42_Identifier.P17i_motivated" ;
|
|
357
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P17i_motivated> ;
|
|
358
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E13_Attribute_Assignment>) ] ;
|
|
359
|
+
sh:message "Il campo P17i_motivated deve essere un'istanza valida."@it ;
|
|
360
|
+
sh:message "The field P17i_motivated must be a valid instance."@en ;
|
|
361
|
+
sh:minCount 1 ;
|
|
362
|
+
sh:maxCount 1 ;
|
|
363
|
+
] ;
|
|
364
|
+
sh:property [
|
|
365
|
+
sh:name "P7_took_place_at" ;
|
|
366
|
+
sh:description "E42_Identifier.P7_took_place_at" ;
|
|
367
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P7_took_place_at> ;
|
|
368
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E53_Place>) ] ;
|
|
369
|
+
sh:message "Il campo P7_took_place_at deve essere un'istanza valida."@it ;
|
|
370
|
+
sh:message "The field P7_took_place_at must be a valid instance."@en ;
|
|
371
|
+
sh:minCount 1 ;
|
|
372
|
+
sh:maxCount 1 ;
|
|
373
|
+
] ;
|
|
374
|
+
.
|
|
375
|
+
ex:E73_Information_ObjectShape
|
|
376
|
+
a sh:NodeShape ;
|
|
377
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object> ;
|
|
378
|
+
sh:property [
|
|
379
|
+
sh:name "type" ;
|
|
380
|
+
sh:description "E73_Information_Object.type" ;
|
|
381
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
382
|
+
sh:minCount 1 ;
|
|
383
|
+
sh:maxCount 1 ;
|
|
384
|
+
] ;
|
|
385
|
+
sh:property [
|
|
386
|
+
sh:name "label" ;
|
|
387
|
+
sh:description "E73_Information_Object.label" ;
|
|
388
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
389
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
390
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
391
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
392
|
+
sh:minCount 1 ;
|
|
393
|
+
sh:maxCount 1 ;
|
|
394
|
+
] ;
|
|
395
|
+
sh:property [
|
|
396
|
+
sh:name "P48_has_preferred_identifier" ;
|
|
397
|
+
sh:description "E73_Information_Object.P48_has_preferred_identifier" ;
|
|
398
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P48_has_preferred_identifier> ;
|
|
399
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E42_Identifier> <http://www.cidoc-crm.org/cidoc-crm/E7_Activity>) ] ;
|
|
400
|
+
sh:message "Il campo P48_has_preferred_identifier deve essere un'istanza valida."@it ;
|
|
401
|
+
sh:message "The field P48_has_preferred_identifier must be a valid instance."@en ;
|
|
402
|
+
sh:minCount 1 ;
|
|
403
|
+
sh:maxCount 1 ;
|
|
404
|
+
] ;
|
|
405
|
+
sh:property [
|
|
406
|
+
sh:name "P2_has_type" ;
|
|
407
|
+
sh:description "E73_Information_Object.P2_has_type" ;
|
|
408
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
409
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
410
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
411
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
412
|
+
sh:minCount 1 ;
|
|
413
|
+
sh:maxCount 1 ;
|
|
414
|
+
] ;
|
|
415
|
+
sh:property [
|
|
416
|
+
sh:name "P105_right_held_by" ;
|
|
417
|
+
sh:description "E73_Information_Object.P105_right_held_by" ;
|
|
418
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P105_right_held_by> ;
|
|
419
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E39_Actor>) ] ;
|
|
420
|
+
sh:message "Il campo P105_right_held_by deve essere un'istanza valida."@it ;
|
|
421
|
+
sh:message "The field P105_right_held_by must be a valid instance."@en ;
|
|
422
|
+
sh:minCount 1 ;
|
|
423
|
+
sh:maxCount 1 ;
|
|
424
|
+
] ;
|
|
425
|
+
sh:property [
|
|
426
|
+
sh:name "P165i_is_incorporated_in" ;
|
|
427
|
+
sh:description "E73_Information_Object.P165i_is_incorporated_in" ;
|
|
428
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P165i_is_incorporated_in> ;
|
|
429
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object>) ] ;
|
|
430
|
+
sh:message "Il campo P165i_is_incorporated_in deve essere un'istanza valida."@it ;
|
|
431
|
+
sh:message "The field P165i_is_incorporated_in must be a valid instance."@en ;
|
|
432
|
+
sh:minCount 1 ;
|
|
433
|
+
sh:maxCount 1 ;
|
|
434
|
+
] ;
|
|
435
|
+
sh:property [
|
|
436
|
+
sh:name "P94i_was_created_by" ;
|
|
437
|
+
sh:description "E73_Information_Object.P94i_was_created_by" ;
|
|
438
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P94i_was_created_by> ;
|
|
439
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E65_Creation>) ] ;
|
|
440
|
+
sh:message "Il campo P94i_was_created_by deve essere un'istanza valida."@it ;
|
|
441
|
+
sh:message "The field P94i_was_created_by must be a valid instance."@en ;
|
|
442
|
+
sh:minCount 1 ;
|
|
443
|
+
sh:maxCount 1 ;
|
|
444
|
+
] ;
|
|
445
|
+
sh:property [
|
|
446
|
+
sh:name "P67i_is_referred_to_by" ;
|
|
447
|
+
sh:description "E73_Information_Object.P67i_is_referred_to_by" ;
|
|
448
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by> ;
|
|
449
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object> <http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure>) ] ;
|
|
450
|
+
sh:message "Il campo P67i_is_referred_to_by deve essere un'istanza valida."@it ;
|
|
451
|
+
sh:message "The field P67i_is_referred_to_by must be a valid instance."@en ;
|
|
452
|
+
sh:minCount 1 ;
|
|
453
|
+
sh:maxCount 1 ;
|
|
454
|
+
] ;
|
|
455
|
+
sh:property [
|
|
456
|
+
sh:name "P67_refers_to" ;
|
|
457
|
+
sh:description "E73_Information_Object.P67_refers_to" ;
|
|
458
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P67_refers_to> ;
|
|
459
|
+
sh:class [ sh:in (<http://www.ics.forth.gr/isl/CRMsci/S5_Inference_Making> <http://www.ics.forth.gr/isl/CRMinf/I5_Inference_Making> <http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing> <http://www.cidoc-crm.org/cidoc-crm/E42_Identifier>) ] ;
|
|
460
|
+
sh:message "Il campo P67_refers_to deve essere un'istanza valida."@it ;
|
|
461
|
+
sh:message "The field P67_refers_to must be a valid instance."@en ;
|
|
462
|
+
sh:minCount 1 ;
|
|
463
|
+
sh:maxCount 1 ;
|
|
464
|
+
] ;
|
|
465
|
+
sh:property [
|
|
466
|
+
sh:name "P15i_influenced" ;
|
|
467
|
+
sh:description "E73_Information_Object.P15i_influenced" ;
|
|
468
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P15i_influenced> ;
|
|
469
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E13_Attribute_Assignment>) ] ;
|
|
470
|
+
sh:message "Il campo P15i_influenced deve essere un'istanza valida."@it ;
|
|
471
|
+
sh:message "The field P15i_influenced must be a valid instance."@en ;
|
|
472
|
+
sh:minCount 1 ;
|
|
473
|
+
sh:maxCount 1 ;
|
|
474
|
+
] ;
|
|
475
|
+
.
|
|
476
|
+
ex:E39_ActorShape
|
|
477
|
+
a sh:NodeShape ;
|
|
478
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E39_Actor> ;
|
|
479
|
+
sh:property [
|
|
480
|
+
sh:name "type" ;
|
|
481
|
+
sh:description "E39_Actor.type" ;
|
|
482
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
483
|
+
sh:minCount 1 ;
|
|
484
|
+
sh:maxCount 1 ;
|
|
485
|
+
] ;
|
|
486
|
+
sh:property [
|
|
487
|
+
sh:name "label" ;
|
|
488
|
+
sh:description "E39_Actor.label" ;
|
|
489
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
490
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
491
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
492
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
493
|
+
sh:minCount 1 ;
|
|
494
|
+
sh:maxCount 1 ;
|
|
495
|
+
] ;
|
|
496
|
+
sh:property [
|
|
497
|
+
sh:name "P2_has_type" ;
|
|
498
|
+
sh:description "E39_Actor.P2_has_type" ;
|
|
499
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
500
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
501
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
502
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
503
|
+
sh:minCount 1 ;
|
|
504
|
+
sh:maxCount 1 ;
|
|
505
|
+
] ;
|
|
506
|
+
sh:property [
|
|
507
|
+
sh:name "P1_is_identified_by" ;
|
|
508
|
+
sh:description "E39_Actor.P1_is_identified_by" ;
|
|
509
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P1_is_identified_by> ;
|
|
510
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E41_Appellation> <http://ontome.net/ns/cpm/CP2_Architecture_Work> <http://www.cidoc-crm.org/cidoc-crm/E42_Identifier>) ] ;
|
|
511
|
+
sh:message "Il campo P1_is_identified_by deve essere un'istanza valida."@it ;
|
|
512
|
+
sh:message "The field P1_is_identified_by must be a valid instance."@en ;
|
|
513
|
+
sh:minCount 1 ;
|
|
514
|
+
sh:maxCount 1 ;
|
|
515
|
+
] ;
|
|
516
|
+
sh:property [
|
|
517
|
+
sh:name "P3_has_note" ;
|
|
518
|
+
sh:description "E39_Actor.P3_has_note" ;
|
|
519
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> ;
|
|
520
|
+
sh:class [ sh:in (<http://www.w3.org/2000/01/rdf-schema#Literal>) ] ;
|
|
521
|
+
sh:message "Il campo P3_has_note deve essere un'istanza valida."@it ;
|
|
522
|
+
sh:message "The field P3_has_note must be a valid instance."@en ;
|
|
523
|
+
sh:minCount 1 ;
|
|
524
|
+
sh:maxCount 1 ;
|
|
525
|
+
] ;
|
|
526
|
+
sh:property [
|
|
527
|
+
sh:name "P107i_is_current_or_former_member_of" ;
|
|
528
|
+
sh:description "E39_Actor.P107i_is_current_or_former_member_of" ;
|
|
529
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P107i_is_current_or_former_member_of> ;
|
|
530
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E74_Group>) ] ;
|
|
531
|
+
sh:message "Il campo P107i_is_current_or_former_member_of deve essere un'istanza valida."@it ;
|
|
532
|
+
sh:message "The field P107i_is_current_or_former_member_of must be a valid instance."@en ;
|
|
533
|
+
sh:minCount 1 ;
|
|
534
|
+
sh:maxCount 1 ;
|
|
535
|
+
] ;
|
|
536
|
+
.
|
|
537
|
+
ex:E65_CreationShape
|
|
538
|
+
a sh:NodeShape ;
|
|
539
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E65_Creation> ;
|
|
540
|
+
sh:property [
|
|
541
|
+
sh:name "type" ;
|
|
542
|
+
sh:description "E65_Creation.type" ;
|
|
543
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
544
|
+
sh:minCount 1 ;
|
|
545
|
+
sh:maxCount 1 ;
|
|
546
|
+
] ;
|
|
547
|
+
sh:property [
|
|
548
|
+
sh:name "label" ;
|
|
549
|
+
sh:description "E65_Creation.label" ;
|
|
550
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
551
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
552
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
553
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
554
|
+
sh:minCount 1 ;
|
|
555
|
+
sh:maxCount 1 ;
|
|
556
|
+
] ;
|
|
557
|
+
sh:property [
|
|
558
|
+
sh:name "P173_starts_before_or_with_the_end_of" ;
|
|
559
|
+
sh:description "E65_Creation.P173_starts_before_or_with_the_end_of" ;
|
|
560
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P173_starts_before_or_with_the_end_of> ;
|
|
561
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity>) ] ;
|
|
562
|
+
sh:message "Il campo P173_starts_before_or_with_the_end_of deve essere un'istanza valida."@it ;
|
|
563
|
+
sh:message "The field P173_starts_before_or_with_the_end_of must be a valid instance."@en ;
|
|
564
|
+
sh:minCount 1 ;
|
|
565
|
+
sh:maxCount 1 ;
|
|
566
|
+
] ;
|
|
567
|
+
sh:property [
|
|
568
|
+
sh:name "P182_ends_before_or_with_the_start_of" ;
|
|
569
|
+
sh:description "E65_Creation.P182_ends_before_or_with_the_start_of" ;
|
|
570
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P182_ends_before_or_with_the_start_of> ;
|
|
571
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity>) ] ;
|
|
572
|
+
sh:message "Il campo P182_ends_before_or_with_the_start_of deve essere un'istanza valida."@it ;
|
|
573
|
+
sh:message "The field P182_ends_before_or_with_the_start_of must be a valid instance."@en ;
|
|
574
|
+
sh:minCount 1 ;
|
|
575
|
+
sh:maxCount 1 ;
|
|
576
|
+
] ;
|
|
577
|
+
.
|
|
578
|
+
ex:E29_Design_or_ProcedureShape
|
|
579
|
+
a sh:NodeShape ;
|
|
580
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure> ;
|
|
581
|
+
sh:property [
|
|
582
|
+
sh:name "type" ;
|
|
583
|
+
sh:description "E29_Design_or_Procedure.type" ;
|
|
584
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
585
|
+
sh:minCount 1 ;
|
|
586
|
+
sh:maxCount 1 ;
|
|
587
|
+
] ;
|
|
588
|
+
sh:property [
|
|
589
|
+
sh:name "label" ;
|
|
590
|
+
sh:description "E29_Design_or_Procedure.label" ;
|
|
591
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
592
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
593
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
594
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
595
|
+
sh:minCount 1 ;
|
|
596
|
+
sh:maxCount 1 ;
|
|
597
|
+
] ;
|
|
598
|
+
sh:property [
|
|
599
|
+
sh:name "P2_has_type" ;
|
|
600
|
+
sh:description "E29_Design_or_Procedure.P2_has_type" ;
|
|
601
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
602
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
603
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
604
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
605
|
+
sh:minCount 1 ;
|
|
606
|
+
sh:maxCount 1 ;
|
|
607
|
+
] ;
|
|
608
|
+
sh:property [
|
|
609
|
+
sh:name "P1_is_identified_by" ;
|
|
610
|
+
sh:description "E29_Design_or_Procedure.P1_is_identified_by" ;
|
|
611
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P1_is_identified_by> ;
|
|
612
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E41_Appellation> <http://ontome.net/ns/cpm/CP2_Architecture_Work> <http://www.cidoc-crm.org/cidoc-crm/E42_Identifier>) ] ;
|
|
613
|
+
sh:message "Il campo P1_is_identified_by deve essere un'istanza valida."@it ;
|
|
614
|
+
sh:message "The field P1_is_identified_by must be a valid instance."@en ;
|
|
615
|
+
sh:minCount 1 ;
|
|
616
|
+
sh:maxCount 1 ;
|
|
617
|
+
] ;
|
|
618
|
+
sh:property [
|
|
619
|
+
sh:name "P3_has_note" ;
|
|
620
|
+
sh:description "E29_Design_or_Procedure.P3_has_note" ;
|
|
621
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> ;
|
|
622
|
+
sh:class [ sh:in (<http://www.w3.org/2000/01/rdf-schema#Literal>) ] ;
|
|
623
|
+
sh:message "Il campo P3_has_note deve essere un'istanza valida."@it ;
|
|
624
|
+
sh:message "The field P3_has_note must be a valid instance."@en ;
|
|
625
|
+
sh:minCount 1 ;
|
|
626
|
+
sh:maxCount 1 ;
|
|
627
|
+
] ;
|
|
628
|
+
sh:property [
|
|
629
|
+
sh:name "P67_refers_to" ;
|
|
630
|
+
sh:description "E29_Design_or_Procedure.P67_refers_to" ;
|
|
631
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P67_refers_to> ;
|
|
632
|
+
sh:class [ sh:in (<http://www.ics.forth.gr/isl/CRMsci/S5_Inference_Making> <http://www.ics.forth.gr/isl/CRMinf/I5_Inference_Making> <http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing> <http://www.cidoc-crm.org/cidoc-crm/E42_Identifier>) ] ;
|
|
633
|
+
sh:message "Il campo P67_refers_to deve essere un'istanza valida."@it ;
|
|
634
|
+
sh:message "The field P67_refers_to must be a valid instance."@en ;
|
|
635
|
+
sh:minCount 1 ;
|
|
636
|
+
sh:maxCount 1 ;
|
|
637
|
+
] ;
|
|
638
|
+
sh:property [
|
|
639
|
+
sh:name "P129_is_about" ;
|
|
640
|
+
sh:description "E29_Design_or_Procedure.P129_is_about" ;
|
|
641
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P129_is_about> ;
|
|
642
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity>) ] ;
|
|
643
|
+
sh:message "Il campo P129_is_about deve essere un'istanza valida."@it ;
|
|
644
|
+
sh:message "The field P129_is_about must be a valid instance."@en ;
|
|
645
|
+
sh:minCount 1 ;
|
|
646
|
+
sh:maxCount 1 ;
|
|
647
|
+
] ;
|
|
648
|
+
sh:property [
|
|
649
|
+
sh:name "P69_has_association_with" ;
|
|
650
|
+
sh:description "E29_Design_or_Procedure.P69_has_association_with" ;
|
|
651
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P69_has_association_with> ;
|
|
652
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure>) ] ;
|
|
653
|
+
sh:message "Il campo P69_has_association_with deve essere un'istanza valida."@it ;
|
|
654
|
+
sh:message "The field P69_has_association_with must be a valid instance."@en ;
|
|
655
|
+
sh:minCount 1 ;
|
|
656
|
+
sh:maxCount 1 ;
|
|
657
|
+
] ;
|
|
658
|
+
.
|
|
659
|
+
ex:E41_AppellationShape
|
|
660
|
+
a sh:NodeShape ;
|
|
661
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E41_Appellation> ;
|
|
662
|
+
sh:property [
|
|
663
|
+
sh:name "type" ;
|
|
664
|
+
sh:description "E41_Appellation.type" ;
|
|
665
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
666
|
+
sh:minCount 1 ;
|
|
667
|
+
sh:maxCount 1 ;
|
|
668
|
+
] ;
|
|
669
|
+
sh:property [
|
|
670
|
+
sh:name "label" ;
|
|
671
|
+
sh:description "E41_Appellation.label" ;
|
|
672
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
673
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
674
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
675
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
676
|
+
sh:minCount 1 ;
|
|
677
|
+
sh:maxCount 1 ;
|
|
678
|
+
] ;
|
|
679
|
+
sh:property [
|
|
680
|
+
sh:name "P48_has_preferred_identifier" ;
|
|
681
|
+
sh:description "E41_Appellation.P48_has_preferred_identifier" ;
|
|
682
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P48_has_preferred_identifier> ;
|
|
683
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E42_Identifier> <http://www.cidoc-crm.org/cidoc-crm/E7_Activity>) ] ;
|
|
684
|
+
sh:message "Il campo P48_has_preferred_identifier deve essere un'istanza valida."@it ;
|
|
685
|
+
sh:message "The field P48_has_preferred_identifier must be a valid instance."@en ;
|
|
686
|
+
sh:minCount 1 ;
|
|
687
|
+
sh:maxCount 1 ;
|
|
688
|
+
] ;
|
|
689
|
+
sh:property [
|
|
690
|
+
sh:name "P2_has_type" ;
|
|
691
|
+
sh:description "E41_Appellation.P2_has_type" ;
|
|
692
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
693
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
694
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
695
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
696
|
+
sh:minCount 1 ;
|
|
697
|
+
sh:maxCount 1 ;
|
|
698
|
+
] ;
|
|
699
|
+
sh:property [
|
|
700
|
+
sh:name "P1_is_identified_by" ;
|
|
701
|
+
sh:description "E41_Appellation.P1_is_identified_by" ;
|
|
702
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P1_is_identified_by> ;
|
|
703
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E41_Appellation> <http://ontome.net/ns/cpm/CP2_Architecture_Work> <http://www.cidoc-crm.org/cidoc-crm/E42_Identifier>) ] ;
|
|
704
|
+
sh:message "Il campo P1_is_identified_by deve essere un'istanza valida."@it ;
|
|
705
|
+
sh:message "The field P1_is_identified_by must be a valid instance."@en ;
|
|
706
|
+
sh:minCount 1 ;
|
|
707
|
+
sh:maxCount 1 ;
|
|
708
|
+
] ;
|
|
709
|
+
sh:property [
|
|
710
|
+
sh:name "Pc1i_is_subject_to" ;
|
|
711
|
+
sh:description "E41_Appellation.Pc1i_is_subject_to" ;
|
|
712
|
+
sh:path <http://ontome.net/ns/cpm/Pc1i_is_subject_to> ;
|
|
713
|
+
sh:class [ sh:in (<http://ontome.net/ns/cpm/CP41_Environmental_Observable_Entity>) ] ;
|
|
714
|
+
sh:message "Il campo Pc1i_is_subject_to deve essere un'istanza valida."@it ;
|
|
715
|
+
sh:message "The field Pc1i_is_subject_to must be a valid instance."@en ;
|
|
716
|
+
sh:minCount 1 ;
|
|
717
|
+
sh:maxCount 1 ;
|
|
718
|
+
] ;
|
|
719
|
+
sh:property [
|
|
720
|
+
sh:name "Pc61_was_affected_by" ;
|
|
721
|
+
sh:description "E41_Appellation.Pc61_was_affected_by" ;
|
|
722
|
+
sh:path <http://ontome.net/ns/cpm/Pc61_was_affected_by> ;
|
|
723
|
+
sh:class [ sh:in (<http://ontome.net/ns/cpm/CP43_Structural_Damage>) ] ;
|
|
724
|
+
sh:message "Il campo Pc61_was_affected_by deve essere un'istanza valida."@it ;
|
|
725
|
+
sh:message "The field Pc61_was_affected_by must be a valid instance."@en ;
|
|
726
|
+
sh:minCount 1 ;
|
|
727
|
+
sh:maxCount 1 ;
|
|
728
|
+
] ;
|
|
729
|
+
sh:property [
|
|
730
|
+
sh:name "P46_is_composed_of" ;
|
|
731
|
+
sh:description "E41_Appellation.P46_is_composed_of" ;
|
|
732
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P46_is_composed_of> ;
|
|
733
|
+
sh:class [ sh:in (<http://ontome.net/ns/cpm/CP20_Construction_Work>) ] ;
|
|
734
|
+
sh:message "Il campo P46_is_composed_of deve essere un'istanza valida."@it ;
|
|
735
|
+
sh:message "The field P46_is_composed_of must be a valid instance."@en ;
|
|
736
|
+
sh:minCount 1 ;
|
|
737
|
+
sh:maxCount 1 ;
|
|
738
|
+
] ;
|
|
739
|
+
.
|
|
740
|
+
ex:CP43_Structural_DamageShape
|
|
741
|
+
a sh:NodeShape ;
|
|
742
|
+
sh:targetClass <http://ontome.net/ns/cpm/CP43_Structural_Damage> ;
|
|
743
|
+
sh:property [
|
|
744
|
+
sh:name "type" ;
|
|
745
|
+
sh:description "CP43_Structural_Damage.type" ;
|
|
746
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
747
|
+
sh:minCount 1 ;
|
|
748
|
+
sh:maxCount 1 ;
|
|
749
|
+
] ;
|
|
750
|
+
sh:property [
|
|
751
|
+
sh:name "label" ;
|
|
752
|
+
sh:description "CP43_Structural_Damage.label" ;
|
|
753
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
754
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
755
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
756
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
757
|
+
sh:minCount 1 ;
|
|
758
|
+
sh:maxCount 1 ;
|
|
759
|
+
] ;
|
|
760
|
+
.
|
|
761
|
+
ex:E55_TypeShape
|
|
762
|
+
a sh:NodeShape ;
|
|
763
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E55_Type> ;
|
|
764
|
+
sh:property [
|
|
765
|
+
sh:name "type" ;
|
|
766
|
+
sh:description "E55_Type.type" ;
|
|
767
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
768
|
+
sh:minCount 1 ;
|
|
769
|
+
sh:maxCount 1 ;
|
|
770
|
+
] ;
|
|
771
|
+
sh:property [
|
|
772
|
+
sh:name "label" ;
|
|
773
|
+
sh:description "E55_Type.label" ;
|
|
774
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
775
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
776
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
777
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
778
|
+
sh:minCount 1 ;
|
|
779
|
+
sh:maxCount 1 ;
|
|
780
|
+
] ;
|
|
781
|
+
sh:property [
|
|
782
|
+
sh:name "P48_has_preferred_identifier" ;
|
|
783
|
+
sh:description "E55_Type.P48_has_preferred_identifier" ;
|
|
784
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P48_has_preferred_identifier> ;
|
|
785
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E42_Identifier> <http://www.cidoc-crm.org/cidoc-crm/E7_Activity>) ] ;
|
|
786
|
+
sh:message "Il campo P48_has_preferred_identifier deve essere un'istanza valida."@it ;
|
|
787
|
+
sh:message "The field P48_has_preferred_identifier must be a valid instance."@en ;
|
|
788
|
+
sh:minCount 1 ;
|
|
789
|
+
sh:maxCount 1 ;
|
|
790
|
+
] ;
|
|
791
|
+
sh:property [
|
|
792
|
+
sh:name "P2_has_type" ;
|
|
793
|
+
sh:description "E55_Type.P2_has_type" ;
|
|
794
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
795
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
796
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
797
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
798
|
+
sh:minCount 1 ;
|
|
799
|
+
sh:maxCount 1 ;
|
|
800
|
+
] ;
|
|
801
|
+
sh:property [
|
|
802
|
+
sh:name "O25_contains" ;
|
|
803
|
+
sh:description "E55_Type.O25_contains" ;
|
|
804
|
+
sh:path <http://www.cidoc-crm.org/extensions/crmsci/O25_contains> ;
|
|
805
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S10_Material_Substantial> <http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample>) ] ;
|
|
806
|
+
sh:message "Il campo O25_contains deve essere un'istanza valida."@it ;
|
|
807
|
+
sh:message "The field O25_contains must be a valid instance."@en ;
|
|
808
|
+
sh:minCount 1 ;
|
|
809
|
+
sh:maxCount 1 ;
|
|
810
|
+
] ;
|
|
811
|
+
sh:property [
|
|
812
|
+
sh:name "P1_is_identified_by" ;
|
|
813
|
+
sh:description "E55_Type.P1_is_identified_by" ;
|
|
814
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P1_is_identified_by> ;
|
|
815
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E41_Appellation> <http://ontome.net/ns/cpm/CP2_Architecture_Work> <http://www.cidoc-crm.org/cidoc-crm/E42_Identifier>) ] ;
|
|
816
|
+
sh:message "Il campo P1_is_identified_by deve essere un'istanza valida."@it ;
|
|
817
|
+
sh:message "The field P1_is_identified_by must be a valid instance."@en ;
|
|
818
|
+
sh:minCount 1 ;
|
|
819
|
+
sh:maxCount 1 ;
|
|
820
|
+
] ;
|
|
821
|
+
sh:property [
|
|
822
|
+
sh:name "P3_has_note" ;
|
|
823
|
+
sh:description "E55_Type.P3_has_note" ;
|
|
824
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> ;
|
|
825
|
+
sh:class [ sh:in (<http://www.w3.org/2000/01/rdf-schema#Literal>) ] ;
|
|
826
|
+
sh:message "Il campo P3_has_note deve essere un'istanza valida."@it ;
|
|
827
|
+
sh:message "The field P3_has_note must be a valid instance."@en ;
|
|
828
|
+
sh:minCount 1 ;
|
|
829
|
+
sh:maxCount 1 ;
|
|
830
|
+
] ;
|
|
831
|
+
sh:property [
|
|
832
|
+
sh:name "P130_shows_features_of" ;
|
|
833
|
+
sh:description "E55_Type.P130_shows_features_of" ;
|
|
834
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P130_shows_features_of> ;
|
|
835
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S13_Sample>) ] ;
|
|
836
|
+
sh:message "Il campo P130_shows_features_of deve essere un'istanza valida."@it ;
|
|
837
|
+
sh:message "The field P130_shows_features_of must be a valid instance."@en ;
|
|
838
|
+
sh:minCount 1 ;
|
|
839
|
+
sh:maxCount 1 ;
|
|
840
|
+
] ;
|
|
841
|
+
sh:property [
|
|
842
|
+
sh:name "O3i_was_sample_by" ;
|
|
843
|
+
sh:description "E55_Type.O3i_was_sample_by" ;
|
|
844
|
+
sh:path <http://www.cidoc-crm.org/extensions/crmsci/O3i_was_sample_by> ;
|
|
845
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S2_Sample_Taking>) ] ;
|
|
846
|
+
sh:message "Il campo O3i_was_sample_by deve essere un'istanza valida."@it ;
|
|
847
|
+
sh:message "The field O3i_was_sample_by must be a valid instance."@en ;
|
|
848
|
+
sh:minCount 1 ;
|
|
849
|
+
sh:maxCount 1 ;
|
|
850
|
+
] ;
|
|
851
|
+
sh:property [
|
|
852
|
+
sh:name "P103_was_intended_for" ;
|
|
853
|
+
sh:description "E55_Type.P103_was_intended_for" ;
|
|
854
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P103_was_intended_for> ;
|
|
855
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type>) ] ;
|
|
856
|
+
sh:message "Il campo P103_was_intended_for deve essere un'istanza valida."@it ;
|
|
857
|
+
sh:message "The field P103_was_intended_for must be a valid instance."@en ;
|
|
858
|
+
sh:minCount 1 ;
|
|
859
|
+
sh:maxCount 1 ;
|
|
860
|
+
] ;
|
|
861
|
+
sh:property [
|
|
862
|
+
sh:name "Pc1i_is_subject_to" ;
|
|
863
|
+
sh:description "E55_Type.Pc1i_is_subject_to" ;
|
|
864
|
+
sh:path <http://ontome.net/ns/cpm/Pc1i_is_subject_to> ;
|
|
865
|
+
sh:class [ sh:in (<http://ontome.net/ns/cpm/CP41_Environmental_Observable_Entity>) ] ;
|
|
866
|
+
sh:message "Il campo Pc1i_is_subject_to deve essere un'istanza valida."@it ;
|
|
867
|
+
sh:message "The field Pc1i_is_subject_to must be a valid instance."@en ;
|
|
868
|
+
sh:minCount 1 ;
|
|
869
|
+
sh:maxCount 1 ;
|
|
870
|
+
] ;
|
|
871
|
+
.
|
|
872
|
+
ex:E14_Condition_AssessmentShape
|
|
873
|
+
a sh:NodeShape ;
|
|
874
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E14_Condition_Assessment> ;
|
|
875
|
+
sh:property [
|
|
876
|
+
sh:name "type" ;
|
|
877
|
+
sh:description "E14_Condition_Assessment.type" ;
|
|
878
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
879
|
+
sh:minCount 1 ;
|
|
880
|
+
sh:maxCount 1 ;
|
|
881
|
+
] ;
|
|
882
|
+
sh:property [
|
|
883
|
+
sh:name "label" ;
|
|
884
|
+
sh:description "E14_Condition_Assessment.label" ;
|
|
885
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
886
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
887
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
888
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
889
|
+
sh:minCount 1 ;
|
|
890
|
+
sh:maxCount 1 ;
|
|
891
|
+
] ;
|
|
892
|
+
sh:property [
|
|
893
|
+
sh:name "P35_has_identified" ;
|
|
894
|
+
sh:description "E14_Condition_Assessment.P35_has_identified" ;
|
|
895
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P35_has_identified> ;
|
|
896
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E3_Condition_State>) ] ;
|
|
897
|
+
sh:message "Il campo P35_has_identified deve essere un'istanza valida."@it ;
|
|
898
|
+
sh:message "The field P35_has_identified must be a valid instance."@en ;
|
|
899
|
+
sh:minCount 1 ;
|
|
900
|
+
sh:maxCount 1 ;
|
|
901
|
+
] ;
|
|
902
|
+
.
|
|
903
|
+
ex:E3_Condition_StateShape
|
|
904
|
+
a sh:NodeShape ;
|
|
905
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E3_Condition_State> ;
|
|
906
|
+
sh:property [
|
|
907
|
+
sh:name "type" ;
|
|
908
|
+
sh:description "E3_Condition_State.type" ;
|
|
909
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
910
|
+
sh:minCount 1 ;
|
|
911
|
+
sh:maxCount 1 ;
|
|
912
|
+
] ;
|
|
913
|
+
sh:property [
|
|
914
|
+
sh:name "label" ;
|
|
915
|
+
sh:description "E3_Condition_State.label" ;
|
|
916
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
917
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
918
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
919
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
920
|
+
sh:minCount 1 ;
|
|
921
|
+
sh:maxCount 1 ;
|
|
922
|
+
] ;
|
|
923
|
+
sh:property [
|
|
924
|
+
sh:name "P2_has_type" ;
|
|
925
|
+
sh:description "E3_Condition_State.P2_has_type" ;
|
|
926
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
927
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
928
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
929
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
930
|
+
sh:minCount 1 ;
|
|
931
|
+
sh:maxCount 1 ;
|
|
932
|
+
] ;
|
|
933
|
+
.
|
|
934
|
+
ex:S4_ObservationShape
|
|
935
|
+
a sh:NodeShape ;
|
|
936
|
+
sh:targetClass <http://www.cidoc-crm.org/extensions/crmsci/S4_Observation> ;
|
|
937
|
+
sh:property [
|
|
938
|
+
sh:name "type" ;
|
|
939
|
+
sh:description "S4_Observation.type" ;
|
|
940
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
941
|
+
sh:minCount 1 ;
|
|
942
|
+
sh:maxCount 1 ;
|
|
943
|
+
] ;
|
|
944
|
+
sh:property [
|
|
945
|
+
sh:name "label" ;
|
|
946
|
+
sh:description "S4_Observation.label" ;
|
|
947
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
948
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
949
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
950
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
951
|
+
sh:minCount 1 ;
|
|
952
|
+
sh:maxCount 1 ;
|
|
953
|
+
] ;
|
|
954
|
+
sh:property [
|
|
955
|
+
sh:name "P2_has_type" ;
|
|
956
|
+
sh:description "S4_Observation.P2_has_type" ;
|
|
957
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
958
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
959
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
960
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
961
|
+
sh:minCount 1 ;
|
|
962
|
+
sh:maxCount 1 ;
|
|
963
|
+
] ;
|
|
964
|
+
sh:property [
|
|
965
|
+
sh:name "P140_assigned_attribute_to" ;
|
|
966
|
+
sh:description "S4_Observation.P140_assigned_attribute_to" ;
|
|
967
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P140_assigned_attribute_to> ;
|
|
968
|
+
sh:class [ sh:in (<http://www.ics.forth.gr/isl/CRMinf/I2_Belief> <http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing> <http://www.cidoc-crm.org/extensions/crmsci/S10_Material_Substantial>) ] ;
|
|
969
|
+
sh:message "Il campo P140_assigned_attribute_to deve essere un'istanza valida."@it ;
|
|
970
|
+
sh:message "The field P140_assigned_attribute_to must be a valid instance."@en ;
|
|
971
|
+
sh:minCount 1 ;
|
|
972
|
+
sh:maxCount 1 ;
|
|
973
|
+
] ;
|
|
974
|
+
sh:property [
|
|
975
|
+
sh:name "O16_observed_value" ;
|
|
976
|
+
sh:description "S4_Observation.O16_observed_value" ;
|
|
977
|
+
sh:path <http://www.cidoc-crm.org/extensions/crmsci/O16_observed_value> ;
|
|
978
|
+
sh:class [ sh:in (<http://ontome.net/ns/cpm/CP41_Environmental_Observable_Entity>) ] ;
|
|
979
|
+
sh:message "Il campo O16_observed_value deve essere un'istanza valida."@it ;
|
|
980
|
+
sh:message "The field O16_observed_value must be a valid instance."@en ;
|
|
981
|
+
sh:minCount 1 ;
|
|
982
|
+
sh:maxCount 1 ;
|
|
983
|
+
] ;
|
|
984
|
+
.
|
|
985
|
+
ex:E7_ActivityShape
|
|
986
|
+
a sh:NodeShape ;
|
|
987
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E7_Activity> ;
|
|
988
|
+
sh:property [
|
|
989
|
+
sh:name "type" ;
|
|
990
|
+
sh:description "E7_Activity.type" ;
|
|
991
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
992
|
+
sh:minCount 1 ;
|
|
993
|
+
sh:maxCount 1 ;
|
|
994
|
+
] ;
|
|
995
|
+
sh:property [
|
|
996
|
+
sh:name "label" ;
|
|
997
|
+
sh:description "E7_Activity.label" ;
|
|
998
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
999
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1000
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1001
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1002
|
+
sh:minCount 1 ;
|
|
1003
|
+
sh:maxCount 1 ;
|
|
1004
|
+
] ;
|
|
1005
|
+
sh:property [
|
|
1006
|
+
sh:name "P48_has_preferred_identifier" ;
|
|
1007
|
+
sh:description "E7_Activity.P48_has_preferred_identifier" ;
|
|
1008
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P48_has_preferred_identifier> ;
|
|
1009
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E42_Identifier> <http://www.cidoc-crm.org/cidoc-crm/E7_Activity>) ] ;
|
|
1010
|
+
sh:message "Il campo P48_has_preferred_identifier deve essere un'istanza valida."@it ;
|
|
1011
|
+
sh:message "The field P48_has_preferred_identifier must be a valid instance."@en ;
|
|
1012
|
+
sh:minCount 1 ;
|
|
1013
|
+
sh:maxCount 1 ;
|
|
1014
|
+
] ;
|
|
1015
|
+
sh:property [
|
|
1016
|
+
sh:name "P2_has_type" ;
|
|
1017
|
+
sh:description "E7_Activity.P2_has_type" ;
|
|
1018
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
1019
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
1020
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
1021
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
1022
|
+
sh:minCount 1 ;
|
|
1023
|
+
sh:maxCount 1 ;
|
|
1024
|
+
] ;
|
|
1025
|
+
sh:property [
|
|
1026
|
+
sh:name "Pc43i_uses" ;
|
|
1027
|
+
sh:description "E7_Activity.Pc43i_uses" ;
|
|
1028
|
+
sh:path <http://ontome.net/ns/cpm/Pc43i_uses> ;
|
|
1029
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E41_Appellation> <http://ontome.net/ns/cpm/CP2_Architecture_Work>) ] ;
|
|
1030
|
+
sh:message "Il campo Pc43i_uses deve essere un'istanza valida."@it ;
|
|
1031
|
+
sh:message "The field Pc43i_uses must be a valid instance."@en ;
|
|
1032
|
+
sh:minCount 1 ;
|
|
1033
|
+
sh:maxCount 1 ;
|
|
1034
|
+
] ;
|
|
1035
|
+
sh:property [
|
|
1036
|
+
sh:name "P134_continued" ;
|
|
1037
|
+
sh:description "E7_Activity.P134_continued" ;
|
|
1038
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P134_continued> ;
|
|
1039
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E42_Identifier> <http://www.cidoc-crm.org/cidoc-crm/E7_Activity>) ] ;
|
|
1040
|
+
sh:message "Il campo P134_continued deve essere un'istanza valida."@it ;
|
|
1041
|
+
sh:message "The field P134_continued must be a valid instance."@en ;
|
|
1042
|
+
sh:minCount 1 ;
|
|
1043
|
+
sh:maxCount 1 ;
|
|
1044
|
+
] ;
|
|
1045
|
+
sh:property [
|
|
1046
|
+
sh:name "P14_carried_out_by" ;
|
|
1047
|
+
sh:description "E7_Activity.P14_carried_out_by" ;
|
|
1048
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P14_carried_out_by> ;
|
|
1049
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E39_Actor>) ] ;
|
|
1050
|
+
sh:message "Il campo P14_carried_out_by deve essere un'istanza valida."@it ;
|
|
1051
|
+
sh:message "The field P14_carried_out_by must be a valid instance."@en ;
|
|
1052
|
+
sh:minCount 1 ;
|
|
1053
|
+
sh:maxCount 1 ;
|
|
1054
|
+
] ;
|
|
1055
|
+
sh:property [
|
|
1056
|
+
sh:name "P17_was_motivated_by" ;
|
|
1057
|
+
sh:description "E7_Activity.P17_was_motivated_by" ;
|
|
1058
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P17_was_motivated_by> ;
|
|
1059
|
+
sh:class [ sh:in (<http://www.ics.forth.gr/isl/CRMinf/I12_Adopted_Belief>) ] ;
|
|
1060
|
+
sh:message "Il campo P17_was_motivated_by deve essere un'istanza valida."@it ;
|
|
1061
|
+
sh:message "The field P17_was_motivated_by must be a valid instance."@en ;
|
|
1062
|
+
sh:minCount 1 ;
|
|
1063
|
+
sh:maxCount 1 ;
|
|
1064
|
+
] ;
|
|
1065
|
+
sh:property [
|
|
1066
|
+
sh:name "P33_used_specific_technique" ;
|
|
1067
|
+
sh:description "E7_Activity.P33_used_specific_technique" ;
|
|
1068
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P33_used_specific_technique> ;
|
|
1069
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure>) ] ;
|
|
1070
|
+
sh:message "Il campo P33_used_specific_technique deve essere un'istanza valida."@it ;
|
|
1071
|
+
sh:message "The field P33_used_specific_technique must be a valid instance."@en ;
|
|
1072
|
+
sh:minCount 1 ;
|
|
1073
|
+
sh:maxCount 1 ;
|
|
1074
|
+
] ;
|
|
1075
|
+
sh:property [
|
|
1076
|
+
sh:name "O23i_defines" ;
|
|
1077
|
+
sh:description "E7_Activity.O23i_defines" ;
|
|
1078
|
+
sh:path <http://www.cidoc-crm.org/extensions/crmsci/O23i_defines> ;
|
|
1079
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S22_Segment_of_Matter>) ] ;
|
|
1080
|
+
sh:message "Il campo O23i_defines deve essere un'istanza valida."@it ;
|
|
1081
|
+
sh:message "The field O23i_defines must be a valid instance."@en ;
|
|
1082
|
+
sh:minCount 1 ;
|
|
1083
|
+
sh:maxCount 1 ;
|
|
1084
|
+
] ;
|
|
1085
|
+
sh:property [
|
|
1086
|
+
sh:name "P160_has_temporal_projection" ;
|
|
1087
|
+
sh:description "E7_Activity.P160_has_temporal_projection" ;
|
|
1088
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P160_has_temporal_projection> ;
|
|
1089
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span>) ] ;
|
|
1090
|
+
sh:message "Il campo P160_has_temporal_projection deve essere un'istanza valida."@it ;
|
|
1091
|
+
sh:message "The field P160_has_temporal_projection must be a valid instance."@en ;
|
|
1092
|
+
sh:minCount 1 ;
|
|
1093
|
+
sh:maxCount 1 ;
|
|
1094
|
+
] ;
|
|
1095
|
+
sh:property [
|
|
1096
|
+
sh:name "P67i_is_referred_to_by" ;
|
|
1097
|
+
sh:description "E7_Activity.P67i_is_referred_to_by" ;
|
|
1098
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by> ;
|
|
1099
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object> <http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure>) ] ;
|
|
1100
|
+
sh:message "Il campo P67i_is_referred_to_by deve essere un'istanza valida."@it ;
|
|
1101
|
+
sh:message "The field P67i_is_referred_to_by must be a valid instance."@en ;
|
|
1102
|
+
sh:minCount 1 ;
|
|
1103
|
+
sh:maxCount 1 ;
|
|
1104
|
+
] ;
|
|
1105
|
+
sh:property [
|
|
1106
|
+
sh:name "P129i_is_subject_of" ;
|
|
1107
|
+
sh:description "E7_Activity.P129i_is_subject_of" ;
|
|
1108
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P129i_is_subject_of> ;
|
|
1109
|
+
sh:class [ sh:in (<http://www.ics.forth.gr/isl/CRMinf/I4_Proposition_Set>) ] ;
|
|
1110
|
+
sh:message "Il campo P129i_is_subject_of deve essere un'istanza valida."@it ;
|
|
1111
|
+
sh:message "The field P129i_is_subject_of must be a valid instance."@en ;
|
|
1112
|
+
sh:minCount 1 ;
|
|
1113
|
+
sh:maxCount 1 ;
|
|
1114
|
+
] ;
|
|
1115
|
+
sh:property [
|
|
1116
|
+
sh:name "P12_occurred_in_the_presence_of" ;
|
|
1117
|
+
sh:description "E7_Activity.P12_occurred_in_the_presence_of" ;
|
|
1118
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P12_occurred_in_the_presence_of> ;
|
|
1119
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S13_Sample>) ] ;
|
|
1120
|
+
sh:message "Il campo P12_occurred_in_the_presence_of deve essere un'istanza valida."@it ;
|
|
1121
|
+
sh:message "The field P12_occurred_in_the_presence_of must be a valid instance."@en ;
|
|
1122
|
+
sh:minCount 1 ;
|
|
1123
|
+
sh:maxCount 1 ;
|
|
1124
|
+
] ;
|
|
1125
|
+
sh:property [
|
|
1126
|
+
sh:name "P16_used_specific_object" ;
|
|
1127
|
+
sh:description "E7_Activity.P16_used_specific_object" ;
|
|
1128
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P16_used_specific_object> ;
|
|
1129
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E70_Thing> <http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object>) ] ;
|
|
1130
|
+
sh:message "Il campo P16_used_specific_object deve essere un'istanza valida."@it ;
|
|
1131
|
+
sh:message "The field P16_used_specific_object must be a valid instance."@en ;
|
|
1132
|
+
sh:minCount 1 ;
|
|
1133
|
+
sh:maxCount 1 ;
|
|
1134
|
+
] ;
|
|
1135
|
+
sh:property [
|
|
1136
|
+
sh:name "P17i_motivated" ;
|
|
1137
|
+
sh:description "E7_Activity.P17i_motivated" ;
|
|
1138
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P17i_motivated> ;
|
|
1139
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E13_Attribute_Assignment>) ] ;
|
|
1140
|
+
sh:message "Il campo P17i_motivated deve essere un'istanza valida."@it ;
|
|
1141
|
+
sh:message "The field P17i_motivated must be a valid instance."@en ;
|
|
1142
|
+
sh:minCount 1 ;
|
|
1143
|
+
sh:maxCount 1 ;
|
|
1144
|
+
] ;
|
|
1145
|
+
sh:property [
|
|
1146
|
+
sh:name "P7_took_place_at" ;
|
|
1147
|
+
sh:description "E7_Activity.P7_took_place_at" ;
|
|
1148
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P7_took_place_at> ;
|
|
1149
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E53_Place>) ] ;
|
|
1150
|
+
sh:message "Il campo P7_took_place_at deve essere un'istanza valida."@it ;
|
|
1151
|
+
sh:message "The field P7_took_place_at must be a valid instance."@en ;
|
|
1152
|
+
sh:minCount 1 ;
|
|
1153
|
+
sh:maxCount 1 ;
|
|
1154
|
+
] ;
|
|
1155
|
+
.
|
|
1156
|
+
ex:E54_DimensionShape
|
|
1157
|
+
a sh:NodeShape ;
|
|
1158
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E54_Dimension> ;
|
|
1159
|
+
sh:property [
|
|
1160
|
+
sh:name "type" ;
|
|
1161
|
+
sh:description "E54_Dimension.type" ;
|
|
1162
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1163
|
+
sh:minCount 1 ;
|
|
1164
|
+
sh:maxCount 1 ;
|
|
1165
|
+
] ;
|
|
1166
|
+
sh:property [
|
|
1167
|
+
sh:name "label" ;
|
|
1168
|
+
sh:description "E54_Dimension.label" ;
|
|
1169
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1170
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1171
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1172
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1173
|
+
sh:minCount 1 ;
|
|
1174
|
+
sh:maxCount 1 ;
|
|
1175
|
+
] ;
|
|
1176
|
+
sh:property [
|
|
1177
|
+
sh:name "P90_has_value" ;
|
|
1178
|
+
sh:description "E54_Dimension.P90_has_value" ;
|
|
1179
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P90_has_value> ;
|
|
1180
|
+
sh:class [ sh:in (<http://www.w3.org/2000/01/rdf-schema#Literal>) ] ;
|
|
1181
|
+
sh:message "Il campo P90_has_value deve essere un'istanza valida."@it ;
|
|
1182
|
+
sh:message "The field P90_has_value must be a valid instance."@en ;
|
|
1183
|
+
sh:minCount 1 ;
|
|
1184
|
+
sh:maxCount 1 ;
|
|
1185
|
+
] ;
|
|
1186
|
+
sh:property [
|
|
1187
|
+
sh:name "P91_has_unit" ;
|
|
1188
|
+
sh:description "E54_Dimension.P91_has_unit" ;
|
|
1189
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P91_has_unit> ;
|
|
1190
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E58_Measurement_Unit>) ] ;
|
|
1191
|
+
sh:message "Il campo P91_has_unit deve essere un'istanza valida."@it ;
|
|
1192
|
+
sh:message "The field P91_has_unit must be a valid instance."@en ;
|
|
1193
|
+
sh:minCount 1 ;
|
|
1194
|
+
sh:maxCount 1 ;
|
|
1195
|
+
] ;
|
|
1196
|
+
.
|
|
1197
|
+
ex:S10_Material_SubstantialShape
|
|
1198
|
+
a sh:NodeShape ;
|
|
1199
|
+
sh:targetClass <http://www.cidoc-crm.org/extensions/crmsci/S10_Material_Substantial> ;
|
|
1200
|
+
sh:property [
|
|
1201
|
+
sh:name "type" ;
|
|
1202
|
+
sh:description "S10_Material_Substantial.type" ;
|
|
1203
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1204
|
+
sh:minCount 1 ;
|
|
1205
|
+
sh:maxCount 1 ;
|
|
1206
|
+
] ;
|
|
1207
|
+
sh:property [
|
|
1208
|
+
sh:name "label" ;
|
|
1209
|
+
sh:description "S10_Material_Substantial.label" ;
|
|
1210
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1211
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1212
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1213
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1214
|
+
sh:minCount 1 ;
|
|
1215
|
+
sh:maxCount 1 ;
|
|
1216
|
+
] ;
|
|
1217
|
+
sh:property [
|
|
1218
|
+
sh:name "P2_has_type" ;
|
|
1219
|
+
sh:description "S10_Material_Substantial.P2_has_type" ;
|
|
1220
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
1221
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
1222
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
1223
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
1224
|
+
sh:minCount 1 ;
|
|
1225
|
+
sh:maxCount 1 ;
|
|
1226
|
+
] ;
|
|
1227
|
+
sh:property [
|
|
1228
|
+
sh:name "O25_contains" ;
|
|
1229
|
+
sh:description "S10_Material_Substantial.O25_contains" ;
|
|
1230
|
+
sh:path <http://www.cidoc-crm.org/extensions/crmsci/O25_contains> ;
|
|
1231
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S10_Material_Substantial> <http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample>) ] ;
|
|
1232
|
+
sh:message "Il campo O25_contains deve essere un'istanza valida."@it ;
|
|
1233
|
+
sh:message "The field O25_contains must be a valid instance."@en ;
|
|
1234
|
+
sh:minCount 1 ;
|
|
1235
|
+
sh:maxCount 1 ;
|
|
1236
|
+
] ;
|
|
1237
|
+
sh:property [
|
|
1238
|
+
sh:name "P3_has_note" ;
|
|
1239
|
+
sh:description "S10_Material_Substantial.P3_has_note" ;
|
|
1240
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> ;
|
|
1241
|
+
sh:class [ sh:in (<http://www.w3.org/2000/01/rdf-schema#Literal>) ] ;
|
|
1242
|
+
sh:message "Il campo P3_has_note deve essere un'istanza valida."@it ;
|
|
1243
|
+
sh:message "The field P3_has_note must be a valid instance."@en ;
|
|
1244
|
+
sh:minCount 1 ;
|
|
1245
|
+
sh:maxCount 1 ;
|
|
1246
|
+
] ;
|
|
1247
|
+
sh:property [
|
|
1248
|
+
sh:name "O25i_is_contained_in" ;
|
|
1249
|
+
sh:description "S10_Material_Substantial.O25i_is_contained_in" ;
|
|
1250
|
+
sh:path <http://www.cidoc-crm.org/extensions/crmsci/O25i_is_contained_in> ;
|
|
1251
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E41_Appellation> <http://ontome.net/ns/cpm/CP2_Architecture_Work>) ] ;
|
|
1252
|
+
sh:message "Il campo O25i_is_contained_in deve essere un'istanza valida."@it ;
|
|
1253
|
+
sh:message "The field O25i_is_contained_in must be a valid instance."@en ;
|
|
1254
|
+
sh:minCount 1 ;
|
|
1255
|
+
sh:maxCount 1 ;
|
|
1256
|
+
] ;
|
|
1257
|
+
sh:property [
|
|
1258
|
+
sh:name "Pc51_was_affected_by" ;
|
|
1259
|
+
sh:description "S10_Material_Substantial.Pc51_was_affected_by" ;
|
|
1260
|
+
sh:path <http://ontome.net/ns/cpm/Pc51_was_affected_by> ;
|
|
1261
|
+
sh:class [ sh:in (<http://ontome.net/ns/cpm/CP42_Material_Decay>) ] ;
|
|
1262
|
+
sh:message "Il campo Pc51_was_affected_by deve essere un'istanza valida."@it ;
|
|
1263
|
+
sh:message "The field Pc51_was_affected_by must be a valid instance."@en ;
|
|
1264
|
+
sh:minCount 1 ;
|
|
1265
|
+
sh:maxCount 1 ;
|
|
1266
|
+
] ;
|
|
1267
|
+
.
|
|
1268
|
+
ex:S2_Sample_TakingShape
|
|
1269
|
+
a sh:NodeShape ;
|
|
1270
|
+
sh:targetClass <http://www.cidoc-crm.org/extensions/crmsci/S2_Sample_Taking> ;
|
|
1271
|
+
sh:property [
|
|
1272
|
+
sh:name "type" ;
|
|
1273
|
+
sh:description "S2_Sample_Taking.type" ;
|
|
1274
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1275
|
+
sh:minCount 1 ;
|
|
1276
|
+
sh:maxCount 1 ;
|
|
1277
|
+
] ;
|
|
1278
|
+
sh:property [
|
|
1279
|
+
sh:name "label" ;
|
|
1280
|
+
sh:description "S2_Sample_Taking.label" ;
|
|
1281
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1282
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1283
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1284
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1285
|
+
sh:minCount 1 ;
|
|
1286
|
+
sh:maxCount 1 ;
|
|
1287
|
+
] ;
|
|
1288
|
+
sh:property [
|
|
1289
|
+
sh:name "P173_starts_before_or_with_the_end_of" ;
|
|
1290
|
+
sh:description "S2_Sample_Taking.P173_starts_before_or_with_the_end_of" ;
|
|
1291
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P173_starts_before_or_with_the_end_of> ;
|
|
1292
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity>) ] ;
|
|
1293
|
+
sh:message "Il campo P173_starts_before_or_with_the_end_of deve essere un'istanza valida."@it ;
|
|
1294
|
+
sh:message "The field P173_starts_before_or_with_the_end_of must be a valid instance."@en ;
|
|
1295
|
+
sh:minCount 1 ;
|
|
1296
|
+
sh:maxCount 1 ;
|
|
1297
|
+
] ;
|
|
1298
|
+
sh:property [
|
|
1299
|
+
sh:name "P33_used_specific_technique" ;
|
|
1300
|
+
sh:description "S2_Sample_Taking.P33_used_specific_technique" ;
|
|
1301
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P33_used_specific_technique> ;
|
|
1302
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure>) ] ;
|
|
1303
|
+
sh:message "Il campo P33_used_specific_technique deve essere un'istanza valida."@it ;
|
|
1304
|
+
sh:message "The field P33_used_specific_technique must be a valid instance."@en ;
|
|
1305
|
+
sh:minCount 1 ;
|
|
1306
|
+
sh:maxCount 1 ;
|
|
1307
|
+
] ;
|
|
1308
|
+
sh:property [
|
|
1309
|
+
sh:name "P8_took_place_on_or_within" ;
|
|
1310
|
+
sh:description "S2_Sample_Taking.P8_took_place_on_or_within" ;
|
|
1311
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P8_took_place_on_or_within> ;
|
|
1312
|
+
sh:class [ sh:in (<http://ontome.net/ns/cpm/CP20_Construction_Work>) ] ;
|
|
1313
|
+
sh:message "Il campo P8_took_place_on_or_within deve essere un'istanza valida."@it ;
|
|
1314
|
+
sh:message "The field P8_took_place_on_or_within must be a valid instance."@en ;
|
|
1315
|
+
sh:minCount 1 ;
|
|
1316
|
+
sh:maxCount 1 ;
|
|
1317
|
+
] ;
|
|
1318
|
+
sh:property [
|
|
1319
|
+
sh:name "O4_sampled_at" ;
|
|
1320
|
+
sh:description "S2_Sample_Taking.O4_sampled_at" ;
|
|
1321
|
+
sh:path <http://www.cidoc-crm.org/extensions/crmsci/O4_sampled_at> ;
|
|
1322
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E53_Place>) ] ;
|
|
1323
|
+
sh:message "Il campo O4_sampled_at deve essere un'istanza valida."@it ;
|
|
1324
|
+
sh:message "The field O4_sampled_at must be a valid instance."@en ;
|
|
1325
|
+
sh:minCount 1 ;
|
|
1326
|
+
sh:maxCount 1 ;
|
|
1327
|
+
] ;
|
|
1328
|
+
sh:property [
|
|
1329
|
+
sh:name "P160_has_temporal_projection" ;
|
|
1330
|
+
sh:description "S2_Sample_Taking.P160_has_temporal_projection" ;
|
|
1331
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P160_has_temporal_projection> ;
|
|
1332
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span>) ] ;
|
|
1333
|
+
sh:message "Il campo P160_has_temporal_projection deve essere un'istanza valida."@it ;
|
|
1334
|
+
sh:message "The field P160_has_temporal_projection must be a valid instance."@en ;
|
|
1335
|
+
sh:minCount 1 ;
|
|
1336
|
+
sh:maxCount 1 ;
|
|
1337
|
+
] ;
|
|
1338
|
+
.
|
|
1339
|
+
ex:I2_BeliefShape
|
|
1340
|
+
a sh:NodeShape ;
|
|
1341
|
+
sh:targetClass <http://www.ics.forth.gr/isl/CRMinf/I2_Belief> ;
|
|
1342
|
+
sh:property [
|
|
1343
|
+
sh:name "type" ;
|
|
1344
|
+
sh:description "I2_Belief.type" ;
|
|
1345
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1346
|
+
sh:minCount 1 ;
|
|
1347
|
+
sh:maxCount 1 ;
|
|
1348
|
+
] ;
|
|
1349
|
+
sh:property [
|
|
1350
|
+
sh:name "label" ;
|
|
1351
|
+
sh:description "I2_Belief.label" ;
|
|
1352
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1353
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1354
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1355
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1356
|
+
sh:minCount 1 ;
|
|
1357
|
+
sh:maxCount 1 ;
|
|
1358
|
+
] ;
|
|
1359
|
+
sh:property [
|
|
1360
|
+
sh:name "P2_has_type" ;
|
|
1361
|
+
sh:description "I2_Belief.P2_has_type" ;
|
|
1362
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
1363
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
1364
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
1365
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
1366
|
+
sh:minCount 1 ;
|
|
1367
|
+
sh:maxCount 1 ;
|
|
1368
|
+
] ;
|
|
1369
|
+
sh:property [
|
|
1370
|
+
sh:name "P3_has_note" ;
|
|
1371
|
+
sh:description "I2_Belief.P3_has_note" ;
|
|
1372
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> ;
|
|
1373
|
+
sh:class [ sh:in (<http://www.w3.org/2000/01/rdf-schema#Literal>) ] ;
|
|
1374
|
+
sh:message "Il campo P3_has_note deve essere un'istanza valida."@it ;
|
|
1375
|
+
sh:message "The field P3_has_note must be a valid instance."@en ;
|
|
1376
|
+
sh:minCount 1 ;
|
|
1377
|
+
sh:maxCount 1 ;
|
|
1378
|
+
] ;
|
|
1379
|
+
sh:property [
|
|
1380
|
+
sh:name "J1i_was_premise_for" ;
|
|
1381
|
+
sh:description "I2_Belief.J1i_was_premise_for" ;
|
|
1382
|
+
sh:path <http://www.ics.forth.gr/isl/CRMinf/J1i_was_premise_for> ;
|
|
1383
|
+
sh:class [ sh:in (<http://www.ics.forth.gr/isl/CRMsci/S5_Inference_Making> <http://www.ics.forth.gr/isl/CRMinf/I5_Inference_Making>) ] ;
|
|
1384
|
+
sh:message "Il campo J1i_was_premise_for deve essere un'istanza valida."@it ;
|
|
1385
|
+
sh:message "The field J1i_was_premise_for must be a valid instance."@en ;
|
|
1386
|
+
sh:minCount 1 ;
|
|
1387
|
+
sh:maxCount 1 ;
|
|
1388
|
+
] ;
|
|
1389
|
+
.
|
|
1390
|
+
ex:E2_Temporal_EntityShape
|
|
1391
|
+
a sh:NodeShape ;
|
|
1392
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity> ;
|
|
1393
|
+
sh:property [
|
|
1394
|
+
sh:name "type" ;
|
|
1395
|
+
sh:description "E2_Temporal_Entity.type" ;
|
|
1396
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1397
|
+
sh:minCount 1 ;
|
|
1398
|
+
sh:maxCount 1 ;
|
|
1399
|
+
] ;
|
|
1400
|
+
sh:property [
|
|
1401
|
+
sh:name "label" ;
|
|
1402
|
+
sh:description "E2_Temporal_Entity.label" ;
|
|
1403
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1404
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1405
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1406
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1407
|
+
sh:minCount 1 ;
|
|
1408
|
+
sh:maxCount 1 ;
|
|
1409
|
+
] ;
|
|
1410
|
+
.
|
|
1411
|
+
ex:I12_Adopted_BeliefShape
|
|
1412
|
+
a sh:NodeShape ;
|
|
1413
|
+
sh:targetClass <http://www.ics.forth.gr/isl/CRMinf/I12_Adopted_Belief> ;
|
|
1414
|
+
sh:property [
|
|
1415
|
+
sh:name "type" ;
|
|
1416
|
+
sh:description "I12_Adopted_Belief.type" ;
|
|
1417
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1418
|
+
sh:minCount 1 ;
|
|
1419
|
+
sh:maxCount 1 ;
|
|
1420
|
+
] ;
|
|
1421
|
+
sh:property [
|
|
1422
|
+
sh:name "label" ;
|
|
1423
|
+
sh:description "I12_Adopted_Belief.label" ;
|
|
1424
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1425
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1426
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1427
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1428
|
+
sh:minCount 1 ;
|
|
1429
|
+
sh:maxCount 1 ;
|
|
1430
|
+
] ;
|
|
1431
|
+
sh:property [
|
|
1432
|
+
sh:name "P2_has_type" ;
|
|
1433
|
+
sh:description "I12_Adopted_Belief.P2_has_type" ;
|
|
1434
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
1435
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
1436
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
1437
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
1438
|
+
sh:minCount 1 ;
|
|
1439
|
+
sh:maxCount 1 ;
|
|
1440
|
+
] ;
|
|
1441
|
+
.
|
|
1442
|
+
ex:E52_Time-SpanShape
|
|
1443
|
+
a sh:NodeShape ;
|
|
1444
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span> ;
|
|
1445
|
+
sh:property [
|
|
1446
|
+
sh:name "type" ;
|
|
1447
|
+
sh:description "E52_Time-Span.type" ;
|
|
1448
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1449
|
+
sh:minCount 1 ;
|
|
1450
|
+
sh:maxCount 1 ;
|
|
1451
|
+
] ;
|
|
1452
|
+
sh:property [
|
|
1453
|
+
sh:name "label" ;
|
|
1454
|
+
sh:description "E52_Time-Span.label" ;
|
|
1455
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1456
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1457
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1458
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1459
|
+
sh:minCount 1 ;
|
|
1460
|
+
sh:maxCount 1 ;
|
|
1461
|
+
] ;
|
|
1462
|
+
.
|
|
1463
|
+
ex:CP42_Material_DecayShape
|
|
1464
|
+
a sh:NodeShape ;
|
|
1465
|
+
sh:targetClass <http://ontome.net/ns/cpm/CP42_Material_Decay> ;
|
|
1466
|
+
sh:property [
|
|
1467
|
+
sh:name "type" ;
|
|
1468
|
+
sh:description "CP42_Material_Decay.type" ;
|
|
1469
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1470
|
+
sh:minCount 1 ;
|
|
1471
|
+
sh:maxCount 1 ;
|
|
1472
|
+
] ;
|
|
1473
|
+
sh:property [
|
|
1474
|
+
sh:name "label" ;
|
|
1475
|
+
sh:description "CP42_Material_Decay.label" ;
|
|
1476
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1477
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1478
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1479
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1480
|
+
sh:minCount 1 ;
|
|
1481
|
+
sh:maxCount 1 ;
|
|
1482
|
+
] ;
|
|
1483
|
+
sh:property [
|
|
1484
|
+
sh:name "P3_has_note" ;
|
|
1485
|
+
sh:description "CP42_Material_Decay.P3_has_note" ;
|
|
1486
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> ;
|
|
1487
|
+
sh:class [ sh:in (<http://www.w3.org/2000/01/rdf-schema#Literal>) ] ;
|
|
1488
|
+
sh:message "Il campo P3_has_note deve essere un'istanza valida."@it ;
|
|
1489
|
+
sh:message "The field P3_has_note must be a valid instance."@en ;
|
|
1490
|
+
sh:minCount 1 ;
|
|
1491
|
+
sh:maxCount 1 ;
|
|
1492
|
+
] ;
|
|
1493
|
+
.
|
|
1494
|
+
ex:CP2_Architecture_WorkShape
|
|
1495
|
+
a sh:NodeShape ;
|
|
1496
|
+
sh:targetClass <http://ontome.net/ns/cpm/CP2_Architecture_Work> ;
|
|
1497
|
+
sh:property [
|
|
1498
|
+
sh:name "type" ;
|
|
1499
|
+
sh:description "CP2_Architecture_Work.type" ;
|
|
1500
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1501
|
+
sh:minCount 1 ;
|
|
1502
|
+
sh:maxCount 1 ;
|
|
1503
|
+
] ;
|
|
1504
|
+
sh:property [
|
|
1505
|
+
sh:name "label" ;
|
|
1506
|
+
sh:description "CP2_Architecture_Work.label" ;
|
|
1507
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1508
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1509
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1510
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1511
|
+
sh:minCount 1 ;
|
|
1512
|
+
sh:maxCount 1 ;
|
|
1513
|
+
] ;
|
|
1514
|
+
sh:property [
|
|
1515
|
+
sh:name "P48_has_preferred_identifier" ;
|
|
1516
|
+
sh:description "CP2_Architecture_Work.P48_has_preferred_identifier" ;
|
|
1517
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P48_has_preferred_identifier> ;
|
|
1518
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E42_Identifier> <http://www.cidoc-crm.org/cidoc-crm/E7_Activity>) ] ;
|
|
1519
|
+
sh:message "Il campo P48_has_preferred_identifier deve essere un'istanza valida."@it ;
|
|
1520
|
+
sh:message "The field P48_has_preferred_identifier must be a valid instance."@en ;
|
|
1521
|
+
sh:minCount 1 ;
|
|
1522
|
+
sh:maxCount 1 ;
|
|
1523
|
+
] ;
|
|
1524
|
+
sh:property [
|
|
1525
|
+
sh:name "P2_has_type" ;
|
|
1526
|
+
sh:description "CP2_Architecture_Work.P2_has_type" ;
|
|
1527
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
1528
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
1529
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
1530
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
1531
|
+
sh:minCount 1 ;
|
|
1532
|
+
sh:maxCount 1 ;
|
|
1533
|
+
] ;
|
|
1534
|
+
sh:property [
|
|
1535
|
+
sh:name "P1_is_identified_by" ;
|
|
1536
|
+
sh:description "CP2_Architecture_Work.P1_is_identified_by" ;
|
|
1537
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P1_is_identified_by> ;
|
|
1538
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E41_Appellation> <http://ontome.net/ns/cpm/CP2_Architecture_Work> <http://www.cidoc-crm.org/cidoc-crm/E42_Identifier>) ] ;
|
|
1539
|
+
sh:message "Il campo P1_is_identified_by deve essere un'istanza valida."@it ;
|
|
1540
|
+
sh:message "The field P1_is_identified_by must be a valid instance."@en ;
|
|
1541
|
+
sh:minCount 1 ;
|
|
1542
|
+
sh:maxCount 1 ;
|
|
1543
|
+
] ;
|
|
1544
|
+
sh:property [
|
|
1545
|
+
sh:name "Pc1i_is_subject_to" ;
|
|
1546
|
+
sh:description "CP2_Architecture_Work.Pc1i_is_subject_to" ;
|
|
1547
|
+
sh:path <http://ontome.net/ns/cpm/Pc1i_is_subject_to> ;
|
|
1548
|
+
sh:class [ sh:in (<http://ontome.net/ns/cpm/CP41_Environmental_Observable_Entity>) ] ;
|
|
1549
|
+
sh:message "Il campo Pc1i_is_subject_to deve essere un'istanza valida."@it ;
|
|
1550
|
+
sh:message "The field Pc1i_is_subject_to must be a valid instance."@en ;
|
|
1551
|
+
sh:minCount 1 ;
|
|
1552
|
+
sh:maxCount 1 ;
|
|
1553
|
+
] ;
|
|
1554
|
+
sh:property [
|
|
1555
|
+
sh:name "Pc61_was_affected_by" ;
|
|
1556
|
+
sh:description "CP2_Architecture_Work.Pc61_was_affected_by" ;
|
|
1557
|
+
sh:path <http://ontome.net/ns/cpm/Pc61_was_affected_by> ;
|
|
1558
|
+
sh:class [ sh:in (<http://ontome.net/ns/cpm/CP43_Structural_Damage>) ] ;
|
|
1559
|
+
sh:message "Il campo Pc61_was_affected_by deve essere un'istanza valida."@it ;
|
|
1560
|
+
sh:message "The field Pc61_was_affected_by must be a valid instance."@en ;
|
|
1561
|
+
sh:minCount 1 ;
|
|
1562
|
+
sh:maxCount 1 ;
|
|
1563
|
+
] ;
|
|
1564
|
+
sh:property [
|
|
1565
|
+
sh:name "P46_is_composed_of" ;
|
|
1566
|
+
sh:description "CP2_Architecture_Work.P46_is_composed_of" ;
|
|
1567
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P46_is_composed_of> ;
|
|
1568
|
+
sh:class [ sh:in (<http://ontome.net/ns/cpm/CP20_Construction_Work>) ] ;
|
|
1569
|
+
sh:message "Il campo P46_is_composed_of deve essere un'istanza valida."@it ;
|
|
1570
|
+
sh:message "The field P46_is_composed_of must be a valid instance."@en ;
|
|
1571
|
+
sh:minCount 1 ;
|
|
1572
|
+
sh:maxCount 1 ;
|
|
1573
|
+
] ;
|
|
1574
|
+
.
|
|
1575
|
+
ex:E13_Attribute_AssignmentShape
|
|
1576
|
+
a sh:NodeShape ;
|
|
1577
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E13_Attribute_Assignment> ;
|
|
1578
|
+
sh:property [
|
|
1579
|
+
sh:name "type" ;
|
|
1580
|
+
sh:description "E13_Attribute_Assignment.type" ;
|
|
1581
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1582
|
+
sh:minCount 1 ;
|
|
1583
|
+
sh:maxCount 1 ;
|
|
1584
|
+
] ;
|
|
1585
|
+
sh:property [
|
|
1586
|
+
sh:name "label" ;
|
|
1587
|
+
sh:description "E13_Attribute_Assignment.label" ;
|
|
1588
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1589
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1590
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1591
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1592
|
+
sh:minCount 1 ;
|
|
1593
|
+
sh:maxCount 1 ;
|
|
1594
|
+
] ;
|
|
1595
|
+
sh:property [
|
|
1596
|
+
sh:name "P2_has_type" ;
|
|
1597
|
+
sh:description "E13_Attribute_Assignment.P2_has_type" ;
|
|
1598
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
1599
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
1600
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
1601
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
1602
|
+
sh:minCount 1 ;
|
|
1603
|
+
sh:maxCount 1 ;
|
|
1604
|
+
] ;
|
|
1605
|
+
sh:property [
|
|
1606
|
+
sh:name "P140_assigned_attribute_to" ;
|
|
1607
|
+
sh:description "E13_Attribute_Assignment.P140_assigned_attribute_to" ;
|
|
1608
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P140_assigned_attribute_to> ;
|
|
1609
|
+
sh:class [ sh:in (<http://www.ics.forth.gr/isl/CRMinf/I2_Belief> <http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing> <http://www.cidoc-crm.org/extensions/crmsci/S10_Material_Substantial>) ] ;
|
|
1610
|
+
sh:message "Il campo P140_assigned_attribute_to deve essere un'istanza valida."@it ;
|
|
1611
|
+
sh:message "The field P140_assigned_attribute_to must be a valid instance."@en ;
|
|
1612
|
+
sh:minCount 1 ;
|
|
1613
|
+
sh:maxCount 1 ;
|
|
1614
|
+
] ;
|
|
1615
|
+
sh:property [
|
|
1616
|
+
sh:name "P160_has_temporal_projection" ;
|
|
1617
|
+
sh:description "E13_Attribute_Assignment.P160_has_temporal_projection" ;
|
|
1618
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P160_has_temporal_projection> ;
|
|
1619
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span>) ] ;
|
|
1620
|
+
sh:message "Il campo P160_has_temporal_projection deve essere un'istanza valida."@it ;
|
|
1621
|
+
sh:message "The field P160_has_temporal_projection must be a valid instance."@en ;
|
|
1622
|
+
sh:minCount 1 ;
|
|
1623
|
+
sh:maxCount 1 ;
|
|
1624
|
+
] ;
|
|
1625
|
+
sh:property [
|
|
1626
|
+
sh:name "P67i_is_referred_to_by" ;
|
|
1627
|
+
sh:description "E13_Attribute_Assignment.P67i_is_referred_to_by" ;
|
|
1628
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by> ;
|
|
1629
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object> <http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure>) ] ;
|
|
1630
|
+
sh:message "Il campo P67i_is_referred_to_by deve essere un'istanza valida."@it ;
|
|
1631
|
+
sh:message "The field P67i_is_referred_to_by must be a valid instance."@en ;
|
|
1632
|
+
sh:minCount 1 ;
|
|
1633
|
+
sh:maxCount 1 ;
|
|
1634
|
+
] ;
|
|
1635
|
+
sh:property [
|
|
1636
|
+
sh:name "P11_had_participant" ;
|
|
1637
|
+
sh:description "E13_Attribute_Assignment.P11_had_participant" ;
|
|
1638
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P11_had_participant> ;
|
|
1639
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E39_Actor>) ] ;
|
|
1640
|
+
sh:message "Il campo P11_had_participant deve essere un'istanza valida."@it ;
|
|
1641
|
+
sh:message "The field P11_had_participant must be a valid instance."@en ;
|
|
1642
|
+
sh:minCount 1 ;
|
|
1643
|
+
sh:maxCount 1 ;
|
|
1644
|
+
] ;
|
|
1645
|
+
.
|
|
1646
|
+
ex:E18_Physical_ThingShape
|
|
1647
|
+
a sh:NodeShape ;
|
|
1648
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing> ;
|
|
1649
|
+
sh:property [
|
|
1650
|
+
sh:name "type" ;
|
|
1651
|
+
sh:description "E18_Physical_Thing.type" ;
|
|
1652
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1653
|
+
sh:minCount 1 ;
|
|
1654
|
+
sh:maxCount 1 ;
|
|
1655
|
+
] ;
|
|
1656
|
+
sh:property [
|
|
1657
|
+
sh:name "label" ;
|
|
1658
|
+
sh:description "E18_Physical_Thing.label" ;
|
|
1659
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1660
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1661
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1662
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1663
|
+
sh:minCount 1 ;
|
|
1664
|
+
sh:maxCount 1 ;
|
|
1665
|
+
] ;
|
|
1666
|
+
sh:property [
|
|
1667
|
+
sh:name "P48_has_preferred_identifier" ;
|
|
1668
|
+
sh:description "E18_Physical_Thing.P48_has_preferred_identifier" ;
|
|
1669
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P48_has_preferred_identifier> ;
|
|
1670
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E42_Identifier> <http://www.cidoc-crm.org/cidoc-crm/E7_Activity>) ] ;
|
|
1671
|
+
sh:message "Il campo P48_has_preferred_identifier deve essere un'istanza valida."@it ;
|
|
1672
|
+
sh:message "The field P48_has_preferred_identifier must be a valid instance."@en ;
|
|
1673
|
+
sh:minCount 1 ;
|
|
1674
|
+
sh:maxCount 1 ;
|
|
1675
|
+
] ;
|
|
1676
|
+
sh:property [
|
|
1677
|
+
sh:name "P2_has_type" ;
|
|
1678
|
+
sh:description "E18_Physical_Thing.P2_has_type" ;
|
|
1679
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
1680
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
1681
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
1682
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
1683
|
+
sh:minCount 1 ;
|
|
1684
|
+
sh:maxCount 1 ;
|
|
1685
|
+
] ;
|
|
1686
|
+
sh:property [
|
|
1687
|
+
sh:name "P3_has_note" ;
|
|
1688
|
+
sh:description "E18_Physical_Thing.P3_has_note" ;
|
|
1689
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> ;
|
|
1690
|
+
sh:class [ sh:in (<http://www.w3.org/2000/01/rdf-schema#Literal>) ] ;
|
|
1691
|
+
sh:message "Il campo P3_has_note deve essere un'istanza valida."@it ;
|
|
1692
|
+
sh:message "The field P3_has_note must be a valid instance."@en ;
|
|
1693
|
+
sh:minCount 1 ;
|
|
1694
|
+
sh:maxCount 1 ;
|
|
1695
|
+
] ;
|
|
1696
|
+
.
|
|
1697
|
+
ex:E70_ThingShape
|
|
1698
|
+
a sh:NodeShape ;
|
|
1699
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E70_Thing> ;
|
|
1700
|
+
sh:property [
|
|
1701
|
+
sh:name "type" ;
|
|
1702
|
+
sh:description "E70_Thing.type" ;
|
|
1703
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1704
|
+
sh:minCount 1 ;
|
|
1705
|
+
sh:maxCount 1 ;
|
|
1706
|
+
] ;
|
|
1707
|
+
sh:property [
|
|
1708
|
+
sh:name "label" ;
|
|
1709
|
+
sh:description "E70_Thing.label" ;
|
|
1710
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1711
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1712
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1713
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1714
|
+
sh:minCount 1 ;
|
|
1715
|
+
sh:maxCount 1 ;
|
|
1716
|
+
] ;
|
|
1717
|
+
sh:property [
|
|
1718
|
+
sh:name "P48_has_preferred_identifier" ;
|
|
1719
|
+
sh:description "E70_Thing.P48_has_preferred_identifier" ;
|
|
1720
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P48_has_preferred_identifier> ;
|
|
1721
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E42_Identifier> <http://www.cidoc-crm.org/cidoc-crm/E7_Activity>) ] ;
|
|
1722
|
+
sh:message "Il campo P48_has_preferred_identifier deve essere un'istanza valida."@it ;
|
|
1723
|
+
sh:message "The field P48_has_preferred_identifier must be a valid instance."@en ;
|
|
1724
|
+
sh:minCount 1 ;
|
|
1725
|
+
sh:maxCount 1 ;
|
|
1726
|
+
] ;
|
|
1727
|
+
sh:property [
|
|
1728
|
+
sh:name "P2_has_type" ;
|
|
1729
|
+
sh:description "E70_Thing.P2_has_type" ;
|
|
1730
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
1731
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
1732
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
1733
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
1734
|
+
sh:minCount 1 ;
|
|
1735
|
+
sh:maxCount 1 ;
|
|
1736
|
+
] ;
|
|
1737
|
+
sh:property [
|
|
1738
|
+
sh:name "P67i_is_referred_to_by" ;
|
|
1739
|
+
sh:description "E70_Thing.P67i_is_referred_to_by" ;
|
|
1740
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by> ;
|
|
1741
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object> <http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure>) ] ;
|
|
1742
|
+
sh:message "Il campo P67i_is_referred_to_by deve essere un'istanza valida."@it ;
|
|
1743
|
+
sh:message "The field P67i_is_referred_to_by must be a valid instance."@en ;
|
|
1744
|
+
sh:minCount 1 ;
|
|
1745
|
+
sh:maxCount 1 ;
|
|
1746
|
+
] ;
|
|
1747
|
+
.
|
|
1748
|
+
ex:S5_Inference_MakingShape
|
|
1749
|
+
a sh:NodeShape ;
|
|
1750
|
+
sh:targetClass <http://www.ics.forth.gr/isl/CRMsci/S5_Inference_Making> ;
|
|
1751
|
+
sh:property [
|
|
1752
|
+
sh:name "type" ;
|
|
1753
|
+
sh:description "S5_Inference_Making.type" ;
|
|
1754
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1755
|
+
sh:minCount 1 ;
|
|
1756
|
+
sh:maxCount 1 ;
|
|
1757
|
+
] ;
|
|
1758
|
+
sh:property [
|
|
1759
|
+
sh:name "label" ;
|
|
1760
|
+
sh:description "S5_Inference_Making.label" ;
|
|
1761
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1762
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1763
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1764
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1765
|
+
sh:minCount 1 ;
|
|
1766
|
+
sh:maxCount 1 ;
|
|
1767
|
+
] ;
|
|
1768
|
+
.
|
|
1769
|
+
ex:I5_Inference_MakingShape
|
|
1770
|
+
a sh:NodeShape ;
|
|
1771
|
+
sh:targetClass <http://www.ics.forth.gr/isl/CRMinf/I5_Inference_Making> ;
|
|
1772
|
+
sh:property [
|
|
1773
|
+
sh:name "type" ;
|
|
1774
|
+
sh:description "I5_Inference_Making.type" ;
|
|
1775
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1776
|
+
sh:minCount 1 ;
|
|
1777
|
+
sh:maxCount 1 ;
|
|
1778
|
+
] ;
|
|
1779
|
+
sh:property [
|
|
1780
|
+
sh:name "label" ;
|
|
1781
|
+
sh:description "I5_Inference_Making.label" ;
|
|
1782
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1783
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1784
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1785
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1786
|
+
sh:minCount 1 ;
|
|
1787
|
+
sh:maxCount 1 ;
|
|
1788
|
+
] ;
|
|
1789
|
+
.
|
|
1790
|
+
ex:I4_Proposition_SetShape
|
|
1791
|
+
a sh:NodeShape ;
|
|
1792
|
+
sh:targetClass <http://www.ics.forth.gr/isl/CRMinf/I4_Proposition_Set> ;
|
|
1793
|
+
sh:property [
|
|
1794
|
+
sh:name "type" ;
|
|
1795
|
+
sh:description "I4_Proposition_Set.type" ;
|
|
1796
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1797
|
+
sh:minCount 1 ;
|
|
1798
|
+
sh:maxCount 1 ;
|
|
1799
|
+
] ;
|
|
1800
|
+
sh:property [
|
|
1801
|
+
sh:name "label" ;
|
|
1802
|
+
sh:description "I4_Proposition_Set.label" ;
|
|
1803
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1804
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1805
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1806
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1807
|
+
sh:minCount 1 ;
|
|
1808
|
+
sh:maxCount 1 ;
|
|
1809
|
+
] ;
|
|
1810
|
+
sh:property [
|
|
1811
|
+
sh:name "J4i_is_subject_of" ;
|
|
1812
|
+
sh:description "I4_Proposition_Set.J4i_is_subject_of" ;
|
|
1813
|
+
sh:path <http://www.ics.forth.gr/isl/CRMinf/J4i_is_subject_of> ;
|
|
1814
|
+
sh:class [ sh:in (<http://www.ics.forth.gr/isl/CRMinf/I2_Belief>) ] ;
|
|
1815
|
+
sh:message "Il campo J4i_is_subject_of deve essere un'istanza valida."@it ;
|
|
1816
|
+
sh:message "The field J4i_is_subject_of must be a valid instance."@en ;
|
|
1817
|
+
sh:minCount 1 ;
|
|
1818
|
+
sh:maxCount 1 ;
|
|
1819
|
+
] ;
|
|
1820
|
+
.
|
|
1821
|
+
ex:E53_PlaceShape
|
|
1822
|
+
a sh:NodeShape ;
|
|
1823
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E53_Place> ;
|
|
1824
|
+
sh:property [
|
|
1825
|
+
sh:name "type" ;
|
|
1826
|
+
sh:description "E53_Place.type" ;
|
|
1827
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1828
|
+
sh:minCount 1 ;
|
|
1829
|
+
sh:maxCount 1 ;
|
|
1830
|
+
] ;
|
|
1831
|
+
sh:property [
|
|
1832
|
+
sh:name "label" ;
|
|
1833
|
+
sh:description "E53_Place.label" ;
|
|
1834
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1835
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1836
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1837
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1838
|
+
sh:minCount 1 ;
|
|
1839
|
+
sh:maxCount 1 ;
|
|
1840
|
+
] ;
|
|
1841
|
+
sh:property [
|
|
1842
|
+
sh:name "P48_has_preferred_identifier" ;
|
|
1843
|
+
sh:description "E53_Place.P48_has_preferred_identifier" ;
|
|
1844
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P48_has_preferred_identifier> ;
|
|
1845
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E42_Identifier> <http://www.cidoc-crm.org/cidoc-crm/E7_Activity>) ] ;
|
|
1846
|
+
sh:message "Il campo P48_has_preferred_identifier deve essere un'istanza valida."@it ;
|
|
1847
|
+
sh:message "The field P48_has_preferred_identifier must be a valid instance."@en ;
|
|
1848
|
+
sh:minCount 1 ;
|
|
1849
|
+
sh:maxCount 1 ;
|
|
1850
|
+
] ;
|
|
1851
|
+
sh:property [
|
|
1852
|
+
sh:name "P2_has_type" ;
|
|
1853
|
+
sh:description "E53_Place.P2_has_type" ;
|
|
1854
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
1855
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
1856
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
1857
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
1858
|
+
sh:minCount 1 ;
|
|
1859
|
+
sh:maxCount 1 ;
|
|
1860
|
+
] ;
|
|
1861
|
+
sh:property [
|
|
1862
|
+
sh:name "P3_has_note" ;
|
|
1863
|
+
sh:description "E53_Place.P3_has_note" ;
|
|
1864
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> ;
|
|
1865
|
+
sh:class [ sh:in (<http://www.w3.org/2000/01/rdf-schema#Literal>) ] ;
|
|
1866
|
+
sh:message "Il campo P3_has_note deve essere un'istanza valida."@it ;
|
|
1867
|
+
sh:message "The field P3_has_note must be a valid instance."@en ;
|
|
1868
|
+
sh:minCount 1 ;
|
|
1869
|
+
sh:maxCount 1 ;
|
|
1870
|
+
] ;
|
|
1871
|
+
sh:property [
|
|
1872
|
+
sh:name "P67i_is_referred_to_by" ;
|
|
1873
|
+
sh:description "E53_Place.P67i_is_referred_to_by" ;
|
|
1874
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by> ;
|
|
1875
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object> <http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure>) ] ;
|
|
1876
|
+
sh:message "Il campo P67i_is_referred_to_by deve essere un'istanza valida."@it ;
|
|
1877
|
+
sh:message "The field P67i_is_referred_to_by must be a valid instance."@en ;
|
|
1878
|
+
sh:minCount 1 ;
|
|
1879
|
+
sh:maxCount 1 ;
|
|
1880
|
+
] ;
|
|
1881
|
+
sh:property [
|
|
1882
|
+
sh:name "P168_place_is_defined_by" ;
|
|
1883
|
+
sh:description "E53_Place.P168_place_is_defined_by" ;
|
|
1884
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P168_place_is_defined_by> ;
|
|
1885
|
+
sh:class [ sh:in (<http://www.w3.org/2000/01/rdf-schema#Literal>) ] ;
|
|
1886
|
+
sh:message "Il campo P168_place_is_defined_by deve essere un'istanza valida."@it ;
|
|
1887
|
+
sh:message "The field P168_place_is_defined_by must be a valid instance."@en ;
|
|
1888
|
+
sh:minCount 1 ;
|
|
1889
|
+
sh:maxCount 1 ;
|
|
1890
|
+
] ;
|
|
1891
|
+
sh:property [
|
|
1892
|
+
sh:name "P62i_is_depicted_by" ;
|
|
1893
|
+
sh:description "E53_Place.P62i_is_depicted_by" ;
|
|
1894
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P62i_is_depicted_by> ;
|
|
1895
|
+
sh:class [ sh:in (<http://ontome.net/ns/cpm/CP38_Architecture_Representation_Element>) ] ;
|
|
1896
|
+
sh:message "Il campo P62i_is_depicted_by deve essere un'istanza valida."@it ;
|
|
1897
|
+
sh:message "The field P62i_is_depicted_by must be a valid instance."@en ;
|
|
1898
|
+
sh:minCount 1 ;
|
|
1899
|
+
sh:maxCount 1 ;
|
|
1900
|
+
] ;
|
|
1901
|
+
.
|
|
1902
|
+
ex:CP20_Construction_WorkShape
|
|
1903
|
+
a sh:NodeShape ;
|
|
1904
|
+
sh:targetClass <http://ontome.net/ns/cpm/CP20_Construction_Work> ;
|
|
1905
|
+
volipi:iconName "fa-solid fa-building" ;
|
|
1906
|
+
sh:property [
|
|
1907
|
+
sh:name "type" ;
|
|
1908
|
+
sh:description "CP20_Construction_Work.type" ;
|
|
1909
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1910
|
+
sh:minCount 1 ;
|
|
1911
|
+
sh:maxCount 1 ;
|
|
1912
|
+
] ;
|
|
1913
|
+
sh:property [
|
|
1914
|
+
sh:name "label" ;
|
|
1915
|
+
sh:description "CP20_Construction_Work.label" ;
|
|
1916
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1917
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1918
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1919
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1920
|
+
sh:minCount 1 ;
|
|
1921
|
+
sh:maxCount 1 ;
|
|
1922
|
+
] ;
|
|
1923
|
+
sh:property [
|
|
1924
|
+
sh:name "P2_has_type" ;
|
|
1925
|
+
sh:description "CP20_Construction_Work.P2_has_type" ;
|
|
1926
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P2_has_type> ;
|
|
1927
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> <http://www.cidoc-crm.org/cidoc-crm/E70_Thing>) ] ;
|
|
1928
|
+
sh:message "Il campo P2_has_type deve essere un'istanza valida."@it ;
|
|
1929
|
+
sh:message "The field P2_has_type must be a valid instance."@en ;
|
|
1930
|
+
sh:minCount 1 ;
|
|
1931
|
+
sh:maxCount 1 ;
|
|
1932
|
+
] ;
|
|
1933
|
+
sh:property [
|
|
1934
|
+
sh:name "Pc41_shows_as_main_material" ;
|
|
1935
|
+
sh:description "CP20_Construction_Work.Pc41_shows_as_main_material" ;
|
|
1936
|
+
sh:path <http://ontome.net/ns/cpm/Pc41_shows_as_main_material> ;
|
|
1937
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S10_Material_Substantial> <http://ontome.net/ns/cpm/CP9_Building_Material>) ] ;
|
|
1938
|
+
sh:message "Il campo Pc41_shows_as_main_material deve essere un'istanza valida."@it ;
|
|
1939
|
+
sh:message "The field Pc41_shows_as_main_material must be a valid instance."@en ;
|
|
1940
|
+
sh:minCount 1 ;
|
|
1941
|
+
sh:maxCount 1 ;
|
|
1942
|
+
] ;
|
|
1943
|
+
sh:property [
|
|
1944
|
+
sh:name "P46i_forms_part_of" ;
|
|
1945
|
+
sh:description "CP20_Construction_Work.P46i_forms_part_of" ;
|
|
1946
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P46i_forms_part_of> ;
|
|
1947
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/cidoc-crm/E41_Appellation> <http://ontome.net/ns/cpm/CP2_Architecture_Work>) ] ;
|
|
1948
|
+
sh:message "Il campo P46i_forms_part_of deve essere un'istanza valida."@it ;
|
|
1949
|
+
sh:message "The field P46i_forms_part_of must be a valid instance."@en ;
|
|
1950
|
+
sh:minCount 1 ;
|
|
1951
|
+
sh:maxCount 1 ;
|
|
1952
|
+
] ;
|
|
1953
|
+
sh:property [
|
|
1954
|
+
sh:name "P62_depicts" ;
|
|
1955
|
+
sh:description "CP20_Construction_Work.P62_depicts" ;
|
|
1956
|
+
sh:path <http://www.cidoc-crm.org/cidoc-crm/P62_depicts> ;
|
|
1957
|
+
sh:class [ sh:in (<http://www.ics.forth.gr/isl/CRMinf/I2_Belief>) ] ;
|
|
1958
|
+
sh:message "Il campo P62_depicts deve essere un'istanza valida."@it ;
|
|
1959
|
+
sh:message "The field P62_depicts must be a valid instance."@en ;
|
|
1960
|
+
sh:minCount 1 ;
|
|
1961
|
+
sh:maxCount 1 ;
|
|
1962
|
+
] ;
|
|
1963
|
+
.
|
|
1964
|
+
ex:E58_Measurement_UnitShape
|
|
1965
|
+
a sh:NodeShape ;
|
|
1966
|
+
volipi:iconName "fa-solid fa-ruler" ;
|
|
1967
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E58_Measurement_Unit> ;
|
|
1968
|
+
sh:property [
|
|
1969
|
+
sh:name "type" ;
|
|
1970
|
+
sh:description "E58_Measurement_Unit.type" ;
|
|
1971
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1972
|
+
sh:minCount 1 ;
|
|
1973
|
+
sh:maxCount 1 ;
|
|
1974
|
+
] ;
|
|
1975
|
+
sh:property [
|
|
1976
|
+
sh:name "label" ;
|
|
1977
|
+
sh:description "E58_Measurement_Unit.label" ;
|
|
1978
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
1979
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
1980
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
1981
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
1982
|
+
sh:minCount 1 ;
|
|
1983
|
+
sh:maxCount 1 ;
|
|
1984
|
+
] ;
|
|
1985
|
+
.
|
|
1986
|
+
ex:CP9_Building_MaterialShape
|
|
1987
|
+
a sh:NodeShape ;
|
|
1988
|
+
sh:targetClass <http://ontome.net/ns/cpm/CP9_Building_Material> ;
|
|
1989
|
+
sh:property [
|
|
1990
|
+
sh:name "type" ;
|
|
1991
|
+
sh:description "CP9_Building_Material.type" ;
|
|
1992
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
1993
|
+
sh:minCount 1 ;
|
|
1994
|
+
sh:maxCount 1 ;
|
|
1995
|
+
] ;
|
|
1996
|
+
sh:property [
|
|
1997
|
+
sh:name "label" ;
|
|
1998
|
+
sh:description "CP9_Building_Material.label" ;
|
|
1999
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
2000
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
2001
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
2002
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
2003
|
+
sh:minCount 1 ;
|
|
2004
|
+
sh:maxCount 1 ;
|
|
2005
|
+
] ;
|
|
2006
|
+
sh:property [
|
|
2007
|
+
sh:name "O25_contains" ;
|
|
2008
|
+
sh:description "CP9_Building_Material.O25_contains" ;
|
|
2009
|
+
sh:path <http://www.cidoc-crm.org/extensions/crmsci/O25_contains> ;
|
|
2010
|
+
sh:class [ sh:in (<http://www.cidoc-crm.org/extensions/crmsci/S10_Material_Substantial> <http://www.cidoc-crm.org/cidoc-crm/E55_Type> <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample>) ] ;
|
|
2011
|
+
sh:message "Il campo O25_contains deve essere un'istanza valida."@it ;
|
|
2012
|
+
sh:message "The field O25_contains must be a valid instance."@en ;
|
|
2013
|
+
sh:minCount 1 ;
|
|
2014
|
+
sh:maxCount 1 ;
|
|
2015
|
+
] ;
|
|
2016
|
+
sh:property [
|
|
2017
|
+
sh:name "Pc51_was_affected_by" ;
|
|
2018
|
+
sh:description "CP9_Building_Material.Pc51_was_affected_by" ;
|
|
2019
|
+
sh:path <http://ontome.net/ns/cpm/Pc51_was_affected_by> ;
|
|
2020
|
+
sh:class [ sh:in (<http://ontome.net/ns/cpm/CP42_Material_Decay>) ] ;
|
|
2021
|
+
sh:message "Il campo Pc51_was_affected_by deve essere un'istanza valida."@it ;
|
|
2022
|
+
sh:message "The field Pc51_was_affected_by must be a valid instance."@en ;
|
|
2023
|
+
sh:minCount 1 ;
|
|
2024
|
+
sh:maxCount 1 ;
|
|
2025
|
+
] ;
|
|
2026
|
+
.
|
|
2027
|
+
ex:CP38_Architecture_Representation_ElementShape
|
|
2028
|
+
a sh:NodeShape ;
|
|
2029
|
+
sh:targetClass <http://ontome.net/ns/cpm/CP38_Architecture_Representation_Element> ;
|
|
2030
|
+
sh:property [
|
|
2031
|
+
sh:name "type" ;
|
|
2032
|
+
sh:description "CP38_Architecture_Representation_Element.type" ;
|
|
2033
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
2034
|
+
sh:minCount 1 ;
|
|
2035
|
+
sh:maxCount 1 ;
|
|
2036
|
+
] ;
|
|
2037
|
+
sh:property [
|
|
2038
|
+
sh:name "label" ;
|
|
2039
|
+
sh:description "CP38_Architecture_Representation_Element.label" ;
|
|
2040
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
2041
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
2042
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
2043
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
2044
|
+
sh:minCount 1 ;
|
|
2045
|
+
sh:maxCount 1 ;
|
|
2046
|
+
] ;
|
|
2047
|
+
.
|
|
2048
|
+
ex:E74_GroupShape
|
|
2049
|
+
a sh:NodeShape ;
|
|
2050
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E74_Group> ;
|
|
2051
|
+
sh:property [
|
|
2052
|
+
sh:name "type" ;
|
|
2053
|
+
sh:description "E74_Group.type" ;
|
|
2054
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
2055
|
+
sh:minCount 1 ;
|
|
2056
|
+
sh:maxCount 1 ;
|
|
2057
|
+
] ;
|
|
2058
|
+
sh:property [
|
|
2059
|
+
sh:name "label" ;
|
|
2060
|
+
sh:description "E74_Group.label" ;
|
|
2061
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
2062
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
2063
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
2064
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
2065
|
+
sh:minCount 1 ;
|
|
2066
|
+
sh:maxCount 1 ;
|
|
2067
|
+
] ;
|
|
2068
|
+
.
|
|
2069
|
+
ex:E1_CRM_EntityShape
|
|
2070
|
+
a sh:NodeShape ;
|
|
2071
|
+
sh:targetClass <http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity> ;
|
|
2072
|
+
sh:property [
|
|
2073
|
+
sh:name "type" ;
|
|
2074
|
+
sh:description "E1_CRM_Entity.type" ;
|
|
2075
|
+
sh:path <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> ;
|
|
2076
|
+
sh:minCount 1 ;
|
|
2077
|
+
sh:maxCount 1 ;
|
|
2078
|
+
] ;
|
|
2079
|
+
sh:property [
|
|
2080
|
+
sh:name "label" ;
|
|
2081
|
+
sh:description "E1_CRM_Entity.label" ;
|
|
2082
|
+
sh:path <http://www.w3.org/2000/01/rdf-schema#label> ;
|
|
2083
|
+
sh:datatype <http://www.w3.org/2001/XMLSchema#string> ;
|
|
2084
|
+
sh:message "Il campo label deve essere una stringa e non può essere vuoto."@it ;
|
|
2085
|
+
sh:message "The field label must be a string and cannot be empty."@en ;
|
|
2086
|
+
sh:minCount 1 ;
|
|
2087
|
+
sh:maxCount 1 ;
|
|
2088
|
+
] ;
|
|
2089
|
+
.
|
|
2090
|
+
|