-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_template.xml
1799 lines (1793 loc) · 97.4 KB
/
example_template.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!--
Example template for semantic lift of ISO 19136 metadata
author: Cristiano Fugazza ([email protected])
-->
<template xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="edi_template.xsd">
<settings>
<userInterfaceLanguage xml:lang="it"/>
<metadataLanguage selectionItem="ling_md_1"/>
<metadataEndpoint>http://edi.get-it.it/</metadataEndpoint>
<sparqlEndpoint>http://sparql.get-it.it</sparqlEndpoint>
<requiresValidation>false</requiresValidation>
<baseDocument><![CDATA[
<gmd:MD_Metadata
xsi:schemaLocation="http://www.isotc211.org/2005/gmd
http://schemas.opengis.net/iso/19139/20060504/gmd/gmd.xsd"
xmlns:gmd="http://www.isotc211.org/2005/gmd"
xmlns:gco="http://www.isotc211.org/2005/gco"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:gml="http://www.opengis.net/gml/3.2"
xmlns:xlink="http://www.w3.org/1999/xlink">
</gmd:MD_Metadata>
]]></baseDocument>
<edimlPreamble><![CDATA[
<version>3.00</version>
<template>example_template</template>
<fileId>pippo</fileId>
<fileUri>pluto</fileUri>
<user/>
]]></edimlPreamble>
<xsltChain>
<xslt>file:///home/cristiano/Dropbox/work@CNR/RITMARE/rdfdata/metadata/new_templates/stylesheets/identity_plus_comment.xsl</xslt>
</xsltChain>
<!-- note: this query works for all SPARQL 1.1-compliant endpoints -->
<!-- <codelistQuery><![CDATA[
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?c ?l ?a ?z
WHERE {
?c rdf:type skos:Concept .
OPTIONAL {
?c skos:prefLabel ?l .
FILTER( LANG(?l) = "en" ) .
}
OPTIONAL {
?c skos:prefLabel ?a .
FILTER( LANG(?a) = "it" )
}
OPTIONAL {
?c skos:prefLabel ?z .
FILTER( LANG(?z) = "zxx" )
}
FILTER( LCASE(STR(?l)) = LCASE("$search_param")
|| LCASE(STR(?a)) = LCASE("$search_param")
|| LCASE(STR(?z)) = LCASE("$search_param")
)
}
ORDER BY ASC(?l)
LIMIT 5
]]></codelistQuery> -->
<!-- note: this query utilizes an extension that works only in Virtuoso -->
<codelistQuery><![CDATA[
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?c ?l ?a ?z
WHERE {
?c rdf:type skos:Concept .
OPTIONAL {
?c skos:prefLabel ?l .
FILTER( LANG(?l) = "en" ) .
}
OPTIONAL {
?c skos:prefLabel ?a .
FILTER( LANG(?a) = "it" )
}
OPTIONAL {
?c skos:prefLabel ?z .
FILTER( LANG(?z) = "zxx" )
}
FILTER( bif:lower(STR(?l)) = bif:lower("$search_param")
|| bif:lower(STR(?a)) = bif:lower("$search_param")
|| bif:lower(STR(?z)) = bif:lower("$search_param")
)
}
ORDER BY ASC(?l)
LIMIT 5
]]></codelistQuery>
</settings>
<endpointTypes>
<endpointType xml:id="virtuoso" method="GET" queryParameter="query">
<parameters>
<parameter name="format" value="application/sparql-results+json"/>
<parameter name="save" value="display"/>
<parameter name="fname" value="undefined"/>
</parameters>
</endpointType>
<endpointType xml:id="sparqlCNR" method="GET" queryParameter="query">
<parameters>
<parameter name="format" value="application/json"/>
</parameters>
</endpointType>
<endpointType xml:id="sparqlCSIRO" method="GET" queryParameter="query">
<parameters>
<parameter name="format" value="application/json"/>
</parameters>
</endpointType>
<endpointType xml:id="fuseki" method="GET" queryParameter="query">
<parameters>
<parameter name="output" value="json"/>
</parameters>
</endpointType>
</endpointTypes>
<datasources>
<codelist xml:id="charsets" endpointType="virtuoso">
<uri>http://www.rndt.gov.it/codelists/MD_CharacterSetCode/items</uri>
</codelist>
<codelist xml:id="languages" endpointType="virtuoso">
<uri>http://inspire-registry.jrc.ec.europa.eu/registers/Languages/items</uri>
<url>http://sp7.irea.cnr.it:8891/sparql</url>
</codelist>
<codelist xml:id="scopes" endpointType="virtuoso">
<uri>http://inspire-registry.jrc.ec.europa.eu/registers/Types/items</uri>
</codelist>
<codelist xml:id="fixedRoles" endpointType="virtuoso">
<uri>http://www.rndt.gov.it/codelists/CI_FixedRoleCode/items</uri>
</codelist>
<codelist xml:id="referenceSystemCodes" endpointType="virtuoso">
<uri>http://www.rndt.gov.it/codelists/MD_ReferenceSystemCode/items</uri>
</codelist>
<codelist xml:id="dateTypes" endpointType="virtuoso">
<uri>http://www.rndt.gov.it/codelists/CI_DateTypeCode/items</uri>
</codelist>
<codelist xml:id="roleCodes" endpointType="virtuoso">
<uri>http://www.rndt.gov.it/codelists/CI_RoleCode/items</uri>
</codelist>
<codelist xml:id="presentationForms" endpointType="virtuoso">
<uri>http://www.rndt.gov.it/codelists/CI_PresentationFormCode/items</uri>
</codelist>
<sparql xml:id="person" endpointType="virtuoso">
<query><![CDATA[
PREFIX ns: <http://www.w3.org/2006/vcard/ns#>
SELECT DISTINCT ?c ?l
# FROM <http://ritmare.it/rdfdata/lotrx>
WHERE {
?c rdf:type foaf:Person .
?c ns:email ?l .
?c ns:org ?o .
FILTER( REGEX( STR(?l), "$search_param", "i") )
}
ORDER BY ASC(?l)
]]></query>
</sparql>
<singleton xml:id="personS"
endpointType="virtuoso"
triggerItem="md_resp_1_uri">
<query><![CDATA[
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
SELECT ?inst ?home
# FROM <http://ritmare.it/rdfdata/lotrx>
WHERE {
<$search_param> vcard:org ?o.
?o foaf:name ?inst .
# ?o foaf:homepage ?home .
FILTER(LANG(?inst)='en')
}
]]></query>
</singleton>
<singleton xml:id="personS_2" endpointType="virtuoso" triggerItem="resp_1_uri">
<query><![CDATA[
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
SELECT ?inst ?home
# FROM <http://ritmare.it/rdfdata/lotrx>
WHERE {
<$search_param> vcard:org ?o.
?o foaf:name ?inst .
# ?o foaf:homepage ?home .
FILTER(LANG(?inst)='en')
}
]]></query>
</singleton>
<singleton xml:id="personS_3" endpointType="virtuoso" triggerItem="pdc_1_uri">
<query><![CDATA[
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
SELECT ?inst ?home
# FROM <http://ritmare.it/rdfdata/lotrx>
WHERE {
<$search_param> vcard:org ?o.
?o foaf:name ?inst .
# ?o foaf:homepage ?home .
FILTER(LANG(?inst)='en')
}
]]></query>
</singleton>
<singleton xml:id="personS_4"
endpointType="virtuoso"
triggerItem="distr_1_uri">
<query><![CDATA[
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
SELECT ?inst ?home
# FROM <http://ritmare.it/rdfdata/lotrx>
WHERE {
<$search_param> vcard:org ?o.
?o foaf:name ?inst .
# ?o foaf:homepage ?home .
FILTER(LANG(?inst)='en')
}
]]></query>
</singleton>
<codelist xml:id="updateFreq" endpointType="virtuoso">
<uri>http://www.rndt.gov.it/codelists/MD_MaintenanceFrequencyCode/items</uri>
</codelist>
<codelist xml:id="inspireTheme" endpointType="virtuoso">
<uri>http://inspire-registry.jrc.ec.europa.eu/registers/Themes/items</uri>
</codelist>
<!-- note: this query utilizes an extension that works only in Virtuoso -->
<sparql xml:id="keywordFromContrVoc" endpointType="virtuoso">
<query><![CDATA[
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?c ?l ?a ?z
WHERE {
?c rdf:type skos:Concept .
OPTIONAL {
?c skos:prefLabel ?l .
FILTER( LANG(?l) = "en" ) .
}
OPTIONAL {
?c skos:prefLabel ?a .
FILTER( LANG(?a) = "it" )
}
OPTIONAL {
?c skos:prefLabel ?z .
FILTER( LANG(?z) = "zxx" )
}
FILTER( bif:lower(STR(?l)) = bif:lower("$search_param")
|| bif:lower(STR(?a)) = bif:lower("$search_param")
|| bif:lower(STR(?z)) = bif:lower("$search_param")
)
}
ORDER BY ASC(?l)
LIMIT 5
]]></query>
</sparql>
<singleton xml:id="contrVocSpecs"
endpointType="fuseki"
triggerItem="keyw_voc_contr_1_uri">
<query><![CDATA[
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dct: <http://purl.org/dc/terms/>
SELECT ?l ?date
WHERE {
?voc skos:member <$search_param> .
OPTIONAL {
?voc skos:prefLabel ?l .
}
OPTIONAL {
?voc dct:date ?ts .
}
BIND( STRBEFORE(?ts , " ") AS ?date )
}
]]></query>
<url>http://vocab.nerc.ac.uk/sparql/sparql</url>
</singleton>
<sparql xml:id="paramOss" endpointType="virtuoso">
<query><![CDATA[
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?c ?l ?a ?z
WHERE {
?c rdf:type skos:Concept .
OPTIONAL {
?c skos:prefLabel ?l .
FILTER( LANG(?l) = "en" ) .
}
OPTIONAL {
?c skos:prefLabel ?a .
FILTER( LANG(?a) = "it" )
}
OPTIONAL {
?c skos:prefLabel ?z .
FILTER( LANG(?z) = "zxx" )
}
FILTER( REGEX( STR(?l), "$search_param", "i")
|| REGEX( STR(?a), "$search_param", "i")
|| REGEX( STR(?z), "$search_param", "i")
)
}
ORDER BY ASC(?l)
]]></query>
</sparql>
<codelist xml:id="restrictionCode" endpointType="virtuoso">
<uri>http://www.rndt.gov.it/codelists/MD_RestrictionCode/items</uri>
</codelist>
<codelist xml:id="classificationCode" endpointType="virtuoso">
<uri>http://www.rndt.gov.it/codelists/MD_ClassificationCode/items</uri>
</codelist>
<codelist xml:id="representationTypeCode" endpointType="virtuoso">
<uri>http://www.rndt.gov.it/codelists/MD_SpatialRepresentationTypeCode/items</uri>
</codelist>
<codelist xml:id="topicCategories" endpointType="virtuoso">
<uri>http://inspire-registry.jrc.ec.europa.eu/registers/TopicCategories/items</uri>
</codelist>
<codelist xml:id="conformity" endpointType="virtuoso">
<uri>http://www.rndt.gov.it/codelists/conformity/items</uri>
</codelist>
</datasources>
<group xml:id="info_md">
<label xml:lang="en">Information on metadata</label>
<label xml:lang="it">Informazioni sui metadati</label>
<element xml:id="id_md" isMandatory="true" isMultiple="false">
<label xml:lang="en">File identifier</label>
<label xml:lang="it">Identificatore del file</label>
<help xml:lang="en">The element must contain, as a prefix, the iPA code assigned by
the Administration in the Index of Public Administrations (e.g., "cnr:112358").</help>
<help xml:lang="it">L'elemento deve contenere, come prefisso, il codice iPA assegnato
all’Amministrazione nel momento dell’accreditamento all'Indice delle Pubbliche
Amministrazioni (es. "cnr:112358").</help>
<hasRoot>/gmd:MD_Metadata/gmd:fileIdentifier</hasRoot>
<produces>
<item hasIndex="1"
xml:id="id_md_1"
isFixed="false"
hasDatatype="string">
<hasPath>/gmd:MD_Metadata/gmd:fileIdentifier/gco:CharacterString</hasPath>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/metadata/$id_md_1> rdf:type <http://www.w3.org/ns/dcat#CatalogRecord> ;
<http://sp7.irea.cnr.it/metadata/$id_md_1> dct:identifier "$id_md_1"^^xsd:string .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="ling_md" isMandatory="true" isMultiple="false">
<label xml:lang="en">Metadata language</label>
<label xml:lang="it">Lingua dei metadati</label>
<help xml:lang="en">The language the metadata are expressed in, to be chosen among the official 23 languages of the EU.</help>
<help xml:lang="it"> Linguaggio in cui sono espressi i metadati, le lingue selezionabili sono le 23 lingue ufficiali della UE, codificate come da menù a tendina.</help>
<hasRoot>/gmd:MD_Metadata/gmd:language</hasRoot>
<produces>
<item hasIndex="1"
xml:id="ling_md_1"
isLanguageNeutral="true"
isFixed="false"
hasDatatype="codelist"
datasource="languages"
show="combobox">
<hasPath>gmd:LanguageCode</hasPath>
</item>
<item hasIndex="2"
xml:id="ling_md_2"
isFixed="true"
hasDatatype="string">
<hasPath>gmd:LanguageCode/@codeList</hasPath>
<hasValue>http://www.loc.gov/standards/iso639-2/</hasValue>
</item>
<item hasIndex="3"
xml:id="ling_md_3"
isFixed="true"
hasDatatype="ref">
<hasPath>/gmd:MD_Metadata/gmd:language/gmd:LanguageCode/@codeListValue</hasPath>
<hasValue>/gmd:MD_Metadata/gmd:language/gmd:LanguageCode</hasValue>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/metadata/$id_md_1> dct:language <$ling_md_1_uri> .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="chset_md" isMandatory="false" isMultiple="false">
<label xml:lang="en">Matadata character set</label>
<label xml:lang="it">Set dei caratteri dei metadati</label>
<help xml:lang="en">The encoding of characters in the metadata.</help>
<help xml:lang="it">La codifica dei caratteri utilizzati nei metadati.</help>
<hasRoot>/gmd:MD_Metadata/gmd:characterSet</hasRoot>
<produces>
<item hasIndex="1"
xml:id="chset_md_1"
isLanguageNeutral="true"
isFixed="false"
hasDatatype="codelist"
datasource="charsets">
<hasPath>/gmd:MD_Metadata/gmd:characterSet/gmd:MD_CharacterSetCode</hasPath>
</item>
<item hasIndex="2"
xml:id="chset_md_2"
isFixed="true"
hasDatatype="string">
<hasPath>/gmd:MD_Metadata/gmd:characterSet/gmd:MD_CharacterSetCode/@codeList</hasPath>
<hasValue>http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/gmxCodelists.xml#MD_CharacterSetCode</hasValue>
</item>
<item hasIndex="3"
xml:id="chset_md_3"
isLanguageNeutral="true"
isFixed="true"
hasDatatype="ref">
<hasPath>/gmd:MD_Metadata/gmd:characterSet/gmd:MD_CharacterSetCode/@codeListValue</hasPath>
<hasValue>/gmd:MD_Metadata/gmd:characterSet/gmd:MD_CharacterSetCode</hasValue>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/metadata/$id_md_1> dct:format <$chset_md_1_uri> .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="id_file_prec" isMandatory="true" isMultiple="false">
<label xml:lang="en">Preceding file id</label>
<label xml:lang="it">Id file precedente</label>
<help xml:lang="en">The element is meant to keep track of metadata update. The value is
that of the element “File identifier” in the metadata record that was available at the
time of the update. In case of first specification of metadata, the value is that of
element “File identifier” of the same metadata record.</help>
<help xml:lang="it">
L’elemento serve a tracciare la storia delle trasmissioni dei file XML e quindi degli
aggiornamenti dei metadati. Esso deve assumere il valore dell'elemento
“Identificatore del file” del file trasmesso temporalmente in precedenza e a cui il file
corrente è in relazione. Nel caso di primo impianto (quindi non esiste nessun file
precedente) l'elemento assume lo stesso valore dell’elemento “Identificatore del file”
del file corrente.</help>
<hasRoot>/gmd:MD_Metadata/gmd:parentIdentifier</hasRoot>
<produces>
<item hasIndex="1"
xml:id="id_file_prec_1"
isFixed="true"
hasDatatype="ref">
<hasPath>/gmd:MD_Metadata/gmd:parentIdentifier/gco:CharacterString</hasPath>
<hasValue>/gmd:MD_Metadata/gmd:fileIdentifier/gco:CharacterString</hasValue>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/metadata/$id_md_1> dct:replaces "$id_md_1"^^xsd:string .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="liv_ger" isMandatory="true" isMultiple="false">
<label xml:lang="en">Hierarchic level</label>
<label xml:lang="it">Livello gerarchico</label>
<help xml:lang="en">
Choose the value that is appropriate to the category of resources:
“dataset” for an identifyable collection of data that is part of
a data series or an independent resource; “series” for a collection of
related resources that share the same specification.
</help>
<help xml:lang="it">
Scegliere il valore più appropriato per il tipo di risorsa:
“dataset” per una collezione identificabile di dati che può essere parte
di una serie oppure una risorsa indipendente; “serie” per una collezione di
risorse o di dataset in relazione tra di loro che condividono le stesse specifiche di prodotto.
</help>
<hasRoot>/gmd:MD_Metadata/gmd:hierarchyLevel</hasRoot>
<produces>
<item hasIndex="1"
xml:id="liv_ger_1"
isLanguageNeutral="true"
isFixed="false"
hasDatatype="codelist"
datasource="scopes">
<hasPath>/gmd:MD_Metadata/gmd:hierarchyLevel/gmd:MD_ScopeCode</hasPath>
<defaultValue>http://inspire.ec.europa.eu/metadata-codelist/ResourceType/dataset</defaultValue>
</item>
<item hasIndex="2"
xml:id="liv_ger_2"
isFixed="true"
hasDatatype="string">
<hasPath>/gmd:MD_Metadata/gmd:hierarchyLevel/gmd:MD_ScopeCode/@codeList</hasPath>
<hasValue>http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/gmxCodelists.xml#MD_ScopeCode</hasValue>
</item>
<item hasIndex="3"
xml:id="liv_ger_3"
isFixed="true"
hasDatatype="ref">
<hasPath>/gmd:MD_Metadata/gmd:hierarchyLevel/gmd:MD_ScopeCode/@codeListValue</hasPath>
<hasValue>/gmd:MD_Metadata/gmd:hierarchyLevel/gmd:MD_ScopeCode</hasValue>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/metadata/$id_md_1> dct:type <$liv_ger_1_uri> .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="md_resp" isMandatory="true" isMultiple="true">
<label xml:lang="en">Metadata responsible party</label>
<label xml:lang="it">Responsabile dei metadati</label>
<help xml:lang="en">The email of the person that is indicated as the contact point for the maintenance of metadata and the name of the organisation she is working by.</help>
<help xml:lang="it">È la persona (punto di contatto) presso l'organizzazione che è responsabile della creazione e manutenzione dei METADATI (ovvero il responsabile del catalogo o registro. </help>
<hasRoot>/gmd:MD_Metadata</hasRoot>
<produces>
<item hasIndex="1"
xml:id="md_resp_1"
outIndex="2"
isFixed="false"
hasDatatype="autoCompletion"
datasource="person">
<label xml:lang="en">Email</label>
<label xml:lang="it">Email</label>
<hasPath>/gmd:MD_Metadata/gmd:contact/gmd:CI_ResponsibleParty/gmd:contactInfo/gmd:CI_Contact/gmd:address/gmd:CI_Address/gmd:electronicMailAddress/gco:CharacterString</hasPath>
</item>
<item hasIndex="2"
xml:id="md_resp_2"
outIndex="1"
field="inst"
isFixed="false"
hasDatatype="select"
datasource="personS">
<label xml:lang="en">Institute</label>
<label xml:lang="it">Ente</label>
<hasPath>/gmd:MD_Metadata/gmd:contact/gmd:CI_ResponsibleParty/gmd:organisationName/gco:CharacterString</hasPath>
</item>
<item hasIndex="4"
xml:id="md_resp_4"
isFixed="true"
hasDatatype="URI">
<hasPath>/gmd:MD_Metadata/gmd:contact/gmd:CI_ResponsibleParty/gmd:role/gmd:CI_RoleCode/@codeList</hasPath>
<hasValue>http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/gmxCodelists.xml#CI_RoleCode</hasValue>
</item>
<item hasIndex="5"
xml:id="md_resp_5"
isLanguageNeutral="true"
isFixed="false"
hasDatatype="codelist"
datasource="fixedRoles">
<hasPath>/gmd:MD_Metadata/gmd:contact/gmd:CI_ResponsibleParty/gmd:role/gmd:CI_RoleCode</hasPath>
<defaultValue>http://inspire.ec.europa.eu/metadata-codelist/ResponsiblePartyRole/pointOfContact</defaultValue>
</item>
<item hasIndex="6"
xml:id="md_resp_6"
isFixed="true"
hasDatatype="ref">
<hasPath>/gmd:MD_Metadata/gmd:contact/gmd:CI_ResponsibleParty/gmd:role/gmd:CI_RoleCode/@codeListValue</hasPath>
<hasValue>/gmd:MD_Metadata/gmd:contact/gmd:CI_ResponsibleParty/gmd:role/gmd:CI_RoleCode</hasValue>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/metadata/$id_md_1> dcat:contactPoint [
rdf:type vcard:Individual ;
# vcard:hasUID <$md_resp_1_uri> ;
vcard:hasRole <$md_resp_5_uri>
] .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="data_md" isMandatory="true" isMultiple="false">
<label xml:lang="en">Metadata date</label>
<label xml:lang="it">Data dei metadati</label>
<help xml:lang="en">The date metadata were created, in the yyyy-mm-dd format.</help>
<help xml:lang="it">Data di compilazione dei metadati, assume come valore di default la data corrente nel formato yyyy-mm-dd.</help>
<hasRoot>/gmd:MD_Metadata/gmd:dateStamp</hasRoot>
<produces>
<item hasIndex="1"
xml:id="data_md_1"
isFixed="false"
hasDatatype="date">
<hasPath>/gmd:MD_Metadata/gmd:dateStamp/gco:Date</hasPath>
<defaultValue>$TODAY$</defaultValue>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/metadata/$id_md_1> dct:modified "data_md_1"^^xsd:date ;
foaf:primaryTopic <http://sp7.irea.cnr.it/data/$id_md_1> .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="nome_std" isMandatory="true" isMultiple="false">
<label xml:lang="en">Name of standard</label>
<label xml:lang="it">Nome dello standard</label>
<hasRoot>/gmd:MD_Metadata/gmd:metadataStandardName</hasRoot>
<produces>
<item hasIndex="1"
xml:id="nome_std_1"
isFixed="false"
hasDatatype="string">
<hasPath>/gmd:MD_Metadata/gmd:metadataStandardName/gco:CharacterString</hasPath>
</item>
</produces>
</element>
<element xml:id="vers_std" isMandatory="true" isMultiple="false">
<label xml:lang="en">Version of standard</label>
<label xml:lang="it">Versione dello standard</label>
<hasRoot>/gmd:MD_Metadata/gmd:metadataStandardVersion</hasRoot>
<produces>
<item hasIndex="1"
xml:id="vers_std_1"
isFixed="false"
hasDatatype="string">
<hasPath>/gmd:MD_Metadata/gmd:metadataStandardVersion/gco:CharacterString</hasPath>
</item>
</produces>
</element>
</group>
<group xml:id="id_dati">
<label xml:lang="en">Data identification</label>
<label xml:lang="it">Identificazione dei dati</label>
<element xml:id="sist_rif_spa" isMandatory="true" isMultiple="false">
<label xml:lang="en">Spatial reference system</label>
<label xml:lang="it">Sistema di riferimento spaziale</label>
<help xml:lang="en">Describes the coordinate reference system that is associated with the resource.</help>
<help xml:lang="it">Esprime il sistema di riferimento in cui è inquadrata la risorsa georiferita.</help>
<hasRoot>/gmd:MD_Metadata</hasRoot>
<produces>
<item hasIndex="1"
xml:id="sist_rif_spa_1"
queryStringParameter="referencesystem"
isFixed="false"
hasDatatype="codelist"
datasource="referenceSystemCodes"
show="combobox">
<hasPath>/gmd:MD_Metadata/gmd:referenceSystemInfo/gmd:MD_ReferenceSystem/gmd:referenceSystemIdentifier/gmd:RS_Identifier/gmd:code/gco:CharacterString</hasPath>
</item>
<item hasIndex="2"
xml:id="sist_rif_spa_2"
isFixed="true"
hasDatatype="string">
<hasPath>/gmd:MD_Metadata/gmd:referenceSystemInfo/gmd:MD_ReferenceSystem/gmd:referenceSystemIdentifier/gmd:RS_Identifier/gmd:codeSpace/gco:CharacterString</hasPath>
<hasValue>http://www.epsg-registry.org/</hasValue>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/data/$id_1> rdf:type <http://www.w3.org/ns/dcat#Dataset> ;
meta:referenceSystemInfo <$sist_rif_spa_1_uri> .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="tit" isMandatory="true" isMultiple="false">
<label xml:lang="en">Title</label>
<label xml:lang="it">Titolo</label>
<help xml:lang="en">The name associated with the data.</help>
<help xml:lang="it">È il nome che si associa ad una risorsa di dati georiferiti (mappa, layer, tabella). Questo nome dovrebbe essere rappresentativo della risorsa ed eventualmente unico. Bisogna evitare abbreviazioni. NOTA: la descrizione breve della risorsa si inserisce successivamente nel campo "Descrizione".</help>
<hasRoot>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:title</hasRoot>
<produces>
<item hasIndex="1"
xml:id="tit_1"
queryStringParameter="title"
isFixed="false"
hasDatatype="string">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:title/gco:CharacterString</hasPath>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/data/$id_1> dct:title "$tit_1"^^xsd:string .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="data" isMandatory="true" isMultiple="true">
<label xml:lang="en">Date</label>
<label xml:lang="it">Data</label>
<help xml:lang="en">One among the date of creation, last revision, or publication of the resource.</help>
<help xml:lang="it">Si indica una data scegliendo se indicare quella relativa alla "creazione", "ultima revisione" o "pubblicazione" della risorsa. </help>
<hasRoot>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation</hasRoot>
<produces>
<item hasIndex="1" xml:id="data_1" isFixed="false" hasDatatype="date">
<label xml:lang="en">Date</label>
<label xml:lang="it">Data</label>
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:date/gmd:CI_Date/gmd:date/gco:Date</hasPath>
</item>
<item hasIndex="2"
xml:id="data_2"
isLanguageNeutral="true"
isFixed="false"
hasDatatype="codelist"
datasource="dateTypes">
<label xml:lang="en">Date type</label>
<label xml:lang="it">Tipo di data</label>
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:date/gmd:CI_Date/gmd:dateType/gmd:CI_DateTypeCode</hasPath>
</item>
<item hasIndex="3" xml:id="data_3" isFixed="true" hasDatatype="URI">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:date/gmd:CI_Date/gmd:dateType/gmd:CI_DateTypeCode/@codeList</hasPath>
<hasValue>http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/ML_gmxCodelists.xml#CI_DateTypeCode</hasValue>
</item>
<item hasIndex="4" xml:id="data_4" isFixed="true" hasDatatype="ref">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:date/gmd:CI_Date/gmd:dateType/gmd:CI_DateTypeCode/@codeListValue</hasPath>
<hasValue>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:date/gmd:CI_Date/gmd:dateType/gmd:CI_DateTypeCode</hasValue>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/data/$id_1> cite:date [
rdf:type cite:Date ;
cite:Date.date "$data_1"^^xsd:date ;
cite:dateType <$data_2_uri>
] .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="id" isMandatory="true" isMultiple="false">
<label xml:lang="en">Identifier</label>
<label xml:lang="it">Identificatore</label>
<help xml:lang="en">The element must contain, as a prefix, the iPA code assigned by
the Administration in the Index of Public Administrations.</help>
<help xml:lang="it">L'elemento deve contenere, come prefisso, il codice iPA assegnato
all’Amministrazione nel momento dell’accreditamento all'Indice delle Pubbliche
Amministrazioni.</help>
<hasRoot>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:identifier/gmd:MD_Identifier</hasRoot>
<produces>
<item hasIndex="1" xml:id="id_1" isFixed="false" hasDatatype="string">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:identifier/gmd:MD_Identifier/gmd:code/gco:CharacterString</hasPath>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/data/$id_1> dct:identifier "$id_1"^^xsd:string .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="resp" isMandatory="true" isMultiple="true">
<label xml:lang="en">Responsible party</label>
<label xml:lang="it">Responsabile</label>
<help xml:lang="en">The responsible party for the resource.</help>
<help xml:lang="it">È l'organizzazione titolare dei dati (risorse), della quale si devono fornire i riferimenti. Fra questi il Ruolo che deve essere scelto obbligatoriamente dalla lista proposta dallo standard. Può essere diverso dal responsabile dei metadati.</help>
<hasRoot>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation</hasRoot>
<produces>
<item hasIndex="1"
xml:id="resp_1"
outIndex="2"
isFixed="false"
hasDatatype="autoCompletion"
datasource="person">
<label xml:lang="en">Email</label>
<label xml:lang="it">Email</label>
<hasPath>gmd:citedResponsibleParty/gmd:CI_ResponsibleParty/gmd:contactInfo/gmd:CI_Contact/gmd:address/gmd:CI_Address/gmd:electronicMailAddress/gco:CharacterString</hasPath>
</item>
<item hasIndex="2"
xml:id="resp_2"
outIndex="1"
field="inst"
isFixed="false"
hasDatatype="select"
datasource="personS_2">
<label xml:lang="en">Institute</label>
<label xml:lang="it">Ente</label>
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:citedResponsibleParty/gmd:CI_ResponsibleParty/gmd:organisationName/gco:CharacterString</hasPath>
</item>
<item hasIndex="3"
xml:id="resp_3"
isLanguageNeutral="true"
isFixed="false"
hasDatatype="codelist"
datasource="roleCodes">
<label xml:lang="en">Role</label>
<label xml:lang="it">Ruolo</label>
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:citedResponsibleParty/gmd:CI_ResponsibleParty/gmd:role/gmd:CI_RoleCode</hasPath>
</item>
<item hasIndex="4" xml:id="resp_4" isFixed="true" hasDatatype="ref">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:citedResponsibleParty/gmd:CI_ResponsibleParty/gmd:role/gmd:CI_RoleCode/@codeListValue</hasPath>
<hasValue>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:citedResponsibleParty/gmd:CI_ResponsibleParty/gmd:role/gmd:CI_RoleCode</hasValue>
</item>
<item hasIndex="5" xml:id="resp_5" isFixed="true" hasDatatype="URI">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:citedResponsibleParty/gmd:CI_ResponsibleParty/gmd:role/gmd:CI_RoleCode/@codeList</hasPath>
<hasValue>http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/gmxCodelists.xml#CI_RoleCode</hasValue>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/data/$id_1> dcat:contactPoint [
rdf:type vcard:Individual ;
vcard:hasUID <$resp_1_uri> ;
vcard:hasRole <$resp_3_uri>
] .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="pres_form" isMandatory="true" isMultiple="true">
<label xml:lang="en">Presentation format</label>
<label xml:lang="it">Formato di presentazione</label>
<help xml:lang="en">The abstract category expressing the representation format for the resource.</help>
<help xml:lang="it">È la categoria astratta di rappresentazione del dato (risorsa), ovvero la sua tipologia, e va scelta obbligatoriamente dalla lista proposta dallo standard. NOTA: nonostante la parola "presentazione", non ci si riferisce al formato di distribuzione che è invece contenuto in altro campo </help>
<hasRoot>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation</hasRoot>
<produces>
<item hasIndex="1"
xml:id="pres_form_1"
isLanguageNeutral="true"
isFixed="true"
hasDatatype="codelist"
datasource="presentationForms"
show="combobox">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:presentationForm/gmd:CI_PresentationFormCode</hasPath>
<hasValue>http://www.rndt.gov.it/codelists/CI_PresentationFormCode/items</hasValue>
<defaultValue>http://www.rndt.gov.it/codelists/CI_PresentationFormCode/items/005</defaultValue>
</item>
<item hasIndex="2"
xml:id="pres_form_2"
isFixed="true"
hasDatatype="ref">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:presentationForm/gmd:CI_PresentationFormCode/@codeListValue</hasPath>
<hasValue>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:presentationForm/gmd:CI_PresentationFormCode</hasValue>
</item>
<item hasIndex="3"
xml:id="pres_form_3"
isFixed="true"
hasDatatype="string">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:presentationForm/gmd:CI_PresentationFormCode/@codeList</hasPath>
<hasValue>http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/gmxCodelists.xml#CI_PresentationFormCode</hasValue>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/data/$id_1> dct:type <$pres_form_1_uri> .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="id_liv_sup" isMandatory="true" isMultiple="false">
<label xml:lang="en">Preceding level id</label>
<label xml:lang="it">Id livello superiore</label>
<help xml:lang="en">The element is used to handle the relation between hierarchic levels.
The value corresponds to that of element “Identifier” in the metadata corresponding
to the upper level.
If this does not exist (e.e., for “flat” datasets or series) the value corresponds
to that of element “Identifier” of the current level.
</help>
<help xml:lang="it">L'elemento serve a gestire le relazioni tra i livelli gerarchici.
Esso deve assumere
il valore dell'elemento “Identificatore” del livello padre corrispondente.
Nel caso non esista un livello gerarchico di rango superiore (per es. serie
o dataset “flat”, cioè che non appartiene a nessuna serie), l'elemento deve assumere
comunque il valore dell’elemento “Identificatore” del livello corrente.</help>
<hasRoot>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:series/gmd:CI_Series/gmd:issueIdentification</hasRoot>
<produces>
<item hasIndex="1"
xml:id="id_liv_sup_1"
isFixed="false"
hasDatatype="ref">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:series/gmd:CI_Series/gmd:issueIdentification/gco:CharacterString</hasPath>
<hasValue>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:identifier/gmd:MD_Identifier/gmd:code/gco:CharacterString</hasValue>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/data/$id_1> dct:isPartOf <http://sp7.irea.cnr.it/data/$id_1> .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="altri_dettagli" isMandatory="false" isMultiple="false">
<label xml:lang="en">Other details</label>
<label xml:lang="it">Altri dettagli</label>
<help xml:lang="en">Additional details on the resource being described.</help>
<help xml:lang="it">Dettagli aggiuntivi riguardo la risorsa.</help>
<hasRoot>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:otherCitationDetails</hasRoot>
<produces>
<item hasIndex="1"
xml:id="altri_dettagli_1"
isFixed="false"
hasDatatype="text">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation/gmd:otherCitationDetails/gco:CharacterString</hasPath>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/data/$id_1> skos:note "$altri_dettagli_1"^^xsd:string .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="desc" isMandatory="true" isMultiple="false">
<label xml:lang="en">Abstract</label>
<label xml:lang="it">Descrizione</label>
<help xml:lang="en">A text describing the content of the resource.</help>
<help xml:lang="it">È un testo che descrive brevemente il contenuto della risorsa, ovvero dei dati che si stanno documentando. NOTA: è un campo importante per la ricerca delle risorse in un catalogo, pertanto dovrebbe essere breve ma rappresentativa dentro e fuori dal settore di riferimento.</help>
<hasRoot>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:abstract</hasRoot>
<produces>
<item hasIndex="1"
xml:id="desc_1"
queryStringParameter="abstract"
isFixed="false"
hasDatatype="text">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:abstract/gco:CharacterString</hasPath>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/data/$id_1> dct:description "$desc_1"^^xsd:string .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="pdc" isMandatory="true" isMultiple="true">
<label xml:lang="en">Point of contact</label>
<label xml:lang="it">Punto di contatto</label>
<help xml:lang="en">The organisation, and the responsible person by the former, that can be contacted to get information on the resource.</help>
<help xml:lang="it">Organizzazione, e referente nella stessa, che è possibile contattare per avere informazioni sulla risorsa. NOTA: può essere differente dal punto di contatto del metadato e/o dal responsabile della risorsa; a supporto di una compilazione rapida, i valori di default dei campi sono quelli associati alla persona che si accredita per la compilazione, ma possono essere modificati.</help>
<hasRoot>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification</hasRoot>
<produces>
<item hasIndex="1"
xml:id="pdc_1"
outIndex="2"
isFixed="false"
hasDatatype="autoCompletion"
datasource="person">
<label xml:lang="en">Email</label>
<label xml:lang="it">Email</label>
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:pointOfContact/gmd:CI_ResponsibleParty/gmd:contactInfo/gmd:CI_Contact/gmd:address/gmd:CI_Address/gmd:electronicMailAddress/gco:CharacterString</hasPath>
</item>
<item hasIndex="2"
xml:id="pdc_2"
outIndex="1"
field="inst"
isFixed="false"
hasDatatype="select"
datasource="personS_3">
<label xml:lang="en">Institute</label>
<label xml:lang="it">Ente</label>
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:pointOfContact/gmd:CI_ResponsibleParty/gmd:organisationName/gco:CharacterString</hasPath>
</item>
<item hasIndex="4" xml:id="pdc_4" isFixed="true" hasDatatype="URI">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:pointOfContact/gmd:CI_ResponsibleParty/gmd:role/gmd:CI_RoleCode/@codeList</hasPath>
<hasValue>http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/gmxCodelists.xml#CI_RoleCode</hasValue>
</item>
<item hasIndex="5"
xml:id="pdc_5"
isLanguageNeutral="true"
isFixed="true"
hasDatatype="codelist"
datasource="fixedRoles">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:pointOfContact/gmd:CI_ResponsibleParty/gmd:role/gmd:CI_RoleCode</hasPath>
<defaultValue>http://inspire.ec.europa.eu/metadata-codelist/ResponsiblePartyRole/pointOfContact</defaultValue>
</item>
<item hasIndex="6" xml:id="pdc_6" isFixed="true" hasDatatype="ref">
<hasPath>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:pointOfContact/gmd:CI_ResponsibleParty/gmd:role/gmd:CI_RoleCode/@codeListValue</hasPath>
<hasValue>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:pointOfContact/gmd:CI_ResponsibleParty/gmd:role/gmd:CI_RoleCode</hasValue>
</item>
</produces>
<rdfOut>
<![CDATA[
INSERT {
<http://sp7.irea.cnr.it/data/$id_1> dcat:contactPoint [
rdf:type vcard:Individual ;
vcard:hasUID <$pdc_1_uri> ;
vcard:hasRole <$pdc_5_uri>
] .
}
WHERE {}
]]>
</rdfOut>
</element>
<element xml:id="freq_agg" isMandatory="false" isMultiple="false">
<label xml:lang="en">Update frequency</label>
<label xml:lang="it">Frequenza di aggiornamento</label>
<help xml:lang="en">Optional field. Represents the frequency the resource is updated. Please select one of the values in the dropdown list (yearly, quarterly, daily, etc.).</help>
<help xml:lang="it">Campo opzionale. É la frequenza con la quale sono registrati gli aggiornamenti dei dati. Deve assumere uno tra i valori della lista del menu a tendina che segue (annualmente, due volte all'anno, giornalmente, ...). </help>
<hasRoot>/gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:resourceMaintenance/gmd:MD_MaintenanceInformation/gmd:maintenanceAndUpdateFrequency</hasRoot>
<produces>