forked from OpenDataGIS/ckanext-facet_scheming
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdcat_full.yaml
2424 lines (2317 loc) · 83.2 KB
/
dcat_full.yaml
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
scheming_version: 2
dataset_type: dataset
about: "Datasets/Distributions: Adaptation for CKAN of the Data Catalog Vocabulary (DCAT) - Version 3 (https://www.w3.org/TR/vocab-dcat-3/)."
about_url: https://github.com/mjanez/ckanext-schemingdcat
form_languages: ["en", "es"]
required_language: "en"
schema_version: 3.0
schema_date: 2024-08-01
schema_name: dcat_full
schema_title: DCAT
schema_description: Data Catalog Vocabulary (DCAT)
schema_profile_version: 3.0.0
schema_profile_url: https://www.w3.org/TR/vocab-dcat-3/
schema_form_groups:
# Basic Info parties form_page (#1)
- form_group_id: title
label:
en: Title
es: Título
fa_icon: fa-sticky-note
- form_group_id: general_info
label:
en: General information
es: Información general
fa_icon: fa-info-circle
- form_group_id: identification
label:
en: Dataset identification
es: Identificación del conjunto de datos
fa_icon: fa-id-card
- form_group_id: notes
label:
en: Abstract
es: Resumen
fa_icon: fa-file-text
- form_group_id: vocabs
label:
en: Vocabs information
es: Información de vocabularios
fa_icon: fa-database
- form_group_id: contact
label:
en: Contact information
es: Información de contacto
fa_icon: fa-address-book
# Responsible parties form_page (#2)
- form_group_id: publisher
label:
en: Publisher information
es: Información del publicador
fa_icon: fa-user
- form_group_id: maintainer
label:
en: Maintainer information
es: Información del mantenedor
fa_icon: fa-server
- form_group_id: author
label:
en: Author information
es: Información del autor
fa_icon: fa-pencil-square
# Quality form_page (#3)
- form_group_id: standards
label:
en: Standards compliance
es: Adecuación a estándares
fa_icon: fa-check-square
- form_group_id: temporal_info
label:
en: Timing
es: Información temporal
fa_icon: fa-clock
- form_group_id: lineage
label:
en: Provenance information
es: Información de procedencia
fa_icon: fa-history
- form_group_id: purpose
label:
en: Purpose of the dataset
es: Propósito del conjunto de datos
fa_icon: fa-question-circle
# Spatial form_page (#4)
- form_group_id: spatial_info
label:
en: Location information
es: Información sobre localización
fa_icon: fa-map-marker
# License form_page (#5)
- form_group_id: license_info
label:
en: License and restrictions
es: Licencia y restricciones
fa_icon: fa-lock
- form_group_id: version_notes
label:
en: Version information
es: Información sobre versiones
fa_icon: fa-info-circle
# Resources form_page
- form_group_id: resource_title
label:
en: Title
es: Título
fa_icon: fa-sticky-note
- form_group_id: resource_notes
label:
en: Abstract
es: Resumen
fa_icon: fa-file-text
- form_group_id: resource_identification
label:
en: Resource identification
es: Identificación del recurso
fa_icon: fa-id-card
- form_group_id: resource_url
label:
en: Resource locator
es: Localizador del recurso
- form_group_id: resource_access_service
label:
en: Data Service of the resource
es: Servicio de datos del recurso
fa_icon: fa-asterisk
- form_group_id: resource_distribution
label:
en: Information on resource distribution
es: Información de la distribución del recurso
fa_icon: fa-list-ul
- form_group_id: resource_type
label:
en: Resource type information
es: Información del tipo de recurso
fa_icon: fa-file-code
- form_group_id: resource_license_info
label:
en: License and restrictions
es: Licencia y restricciones
fa_icon: fa-lock
- form_group_id: resource_lineage
label:
en: Provenance information
es: Información de procedencia
fa_icon: fa-history
- form_group_id: resource_standards
label:
en: Standards compliance
es: Adecuación a estándares
fa_icon: fa-check-square
- form_group_id: resource_relations
label:
en: Related resources
es: Recursos relacionados
fa_icon: fa-code-fork
schema_form_tabs:
# Dataset tabs
- form_tab: basic_tab
tab_type: dataset_fields
label:
en: Identification
es: Identificación
form_group_id:
- title
- general_info
- identification
- notes
- form_tab: vocabs_tab
tab_type: dataset_fields
label:
en: Vocabs
es: Vocabularios
form_group_id:
- vocabs
- form_tab: contact_tab
tab_type: dataset_fields
label:
en: Contact point
es: Punto de contacto
form_group_id:
- contact
- form_tab: publisher_tab
tab_type: dataset_fields
label:
en: Publisher
es: Publicador
form_group_id:
- publisher
- form_tab: responsible_parties_tab
tab_type: dataset_fields
label:
en: Responsible parties
es: Responsables
form_group_id:
- maintainer
- author
- form_tab: quality_tab
tab_type: dataset_fields
label:
en: Quality
es: Calidad
form_group_id:
- standards
- temporal_info
- form_tab: lineage_tab
tab_type: dataset_fields
label:
en: Lineage
es: Linaje
form_group_id:
- lineage
- purpose
- form_tab: spatial_tab
tab_type: dataset_fields
label:
en: Spatial
es: Espacial
form_group_id:
- spatial_info
- form_tab: license_tab
tab_type: dataset_fields
label:
en: License
es: Licencia
form_group_id:
- license_info
- version_notes
# Distribution tabs
- form_tab: resource_basic_tab
tab_type: resource_fields
label:
en: Identification
es: Identificación
form_group_id:
- resource_title
- resource_url
- resource_notes
- resource_identification
- form_tab: resource_distribution
tab_type: resource_fields
label:
en: Distribution
es: Distribución
form_group_id:
- resource_distribution
- resource_type
- resource_access_service
- form_tab: resource_lineage_tab
tab_type: resource_fields
label:
en: Lineage
es: Linaje
form_group_id:
- resource_lineage
- resource_relations
- form_tab: resource_quality_tab
tab_type: resource_fields
label:
en: Quality
es: Calidad
form_group_id:
- resource_standards
- form_tab: resource_license_tab
tab_type: resource_fields
label:
en: License
es: Licencia
form_group_id:
- resource_license_info
### Codes in Schema
# (M): Mandatory
# (R): Recommended
# (C): Conditional
# (O): Optional
#--Dataset (dcat:Dataset) fields--#
dataset_fields:
# Dataset title translated (M)
- field_name: title_translated
label:
en: Dataset title
es: Título del conjunto de datos
preset: schemingdcat_fluent_title_translated
required: True
display_property: dct:title
form_placeholder:
en: e.g. A descriptive title.
es: ej. Un título descriptivo.
form_languages: ["en", "es"]
required_language: "en"
form_group_id: title
# Metadata template for schemingdcat_xls harvester
- field_name: schemingdcat_xls_metadata_template
label:
en: Metadata template for schemingdcat_xls harvester
es: Plantilla de metadatos para el cosechador schemingdcat_xls
preset: schemingdcat_xls_metadata_template
required: False
choices:
- label:
en: "No"
es: "No"
value: False
- label:
en: "Yes"
es: "Si"
value: True
help_text:
en: 'ckanext-schemingdcat <a href="https://github.com/mjanez/ckanext-schemingdcat?tab=readme-ov-file#remote-google-sheetonedrive-excel-metadata-upload-harvester" target="_blank" rel="noopener noreferrer">remote Google Sheet/Onedrive Excel metadata harvester</a>'
es: 'ckanext-schemingdcat <a href="https://github.com/mjanez/ckanext-schemingdcat?tab=readme-ov-file#remote-google-sheetonedrive-excel-metadata-upload-harvester" target="_blank" rel="noopener noreferrer">cosechador de ficheros remotos Google Sheet/Onedrive Excel/a>'
form_group_id: general_info
# Non-spatial Dataset (Hidden field, based on dcat_type)
- field_name: dataset_scope
label:
en: Scope of the data
es: Alcance de los datos
preset: dataset_scope
required: False
choices:
- label:
en: "Non-spatial dataset"
es: "Conjunto de datos no espaciales"
value: non_spatial_dataset
- label:
en: "Spatial dataset"
es: "Conjunto de datos espaciales"
value: spatial_dataset
form_group_id: general_info
# CKAN Organization (M) // Dataset privacy (M)
- field_name: owner_org
label:
en: Organization
es: Organización
required: True
help_text:
en: Entity (organisation) responsible for making the Dataset available.
es: Entidad (organización) responsable de publicar el conjunto de datos.
preset: dataset_organization
form_group_id: general_info
# Dataset privacy (M)
- field_name: private
label:
en: Dataset visibility
es: Visiblidad del conjunto de datos
required: True
preset: dataset_private
form_include_blank_choice: False
choices:
- label:
en: Private
es: Privado
value: True
- label:
en: Public
es: Público
value: False
form_group_id: general_info
help_text:
en: The publicity or the visibility of the dataset. Only an <code>admin</code> can publish.
es: Publicidad o visiblidad del conjunto de datos. Solo un <code>administrador</code> puede publicar.
help_allow_html: True
# Graphic overview (O)
- field_name: graphic_overview
label:
en: Graphic overview of the dataset
es: Descripción gráfica del conjunto de datos
display_snippet: schemingdcat/display_snippets/graphic_overview.html
form_placeholder: http://example.com/dataset.jpg
help_text:
en: "Graphic that provides an illustration of the dataset."
es: "Gráfico que ilustra el conjunto de datos."
form_group_id: general_info
# Metadata file identifier (M)
## Unique resource identifier (UUID) (Mandatory). If it does not exist, CKAN creates a UUID (Metadata file identifier 'package_id')
- field_name: identifier
label:
en: Metadata identifier
es: Identificador de los metadatos
preset: schemingdcat_identifier
required: True
display_property: dct:identifier
form_placeholder: 123e4567-e89b-12d3-a456-426614174000
help_text:
en: e.g. Unique resource identifier (UUID).
es: Ej. Identificador único de recurso (UUID).
help_allow_html: True
form_group_id: identification
# Dataset locator (O)
## For all resources that is equivalent to this element, such as a URI (of dcat:Dataset).
- field_name: name
label:
en: URL
es: URL
preset: schemingdcat_dataset_slug
display_property: dcat:landingPage
form_placeholder:
en: URL title Dataset
es: Título de la URL del Dataset
form_slug_related: identifier
form_group_id: identification
# Dataset type (M)
- field_name: dcat_type
label:
en: Resource type
es: Tipo de recurso
preset: select_not_empty
form_include_blank_choice: False
required: True
display_property: dct:type
display_snippet: schemingdcat/display_snippets/link_schema.html
choices:
- label:
en: Spatial data set
es: Conjunto de datos espacial
value: http://inspire.ec.europa.eu/metadata-codelist/ResourceType/dataset
dataset_scope: spatial_dataset
- label:
en: Article
es: Artículo
value: http://id.loc.gov/vocabulary/marcgt/art
dataset_scope: non_spatial_dataset
- label:
en: Bibliographic data
es: Datos bibliográficos
value: http://id.loc.gov/vocabulary/marcgt/bda
dataset_scope: non_spatial_dataset
- label:
en: Collection
es: Colección
value: http://purl.org/dc/dcmitype/Collection
dataset_scope: non_spatial_dataset
- label:
en: Database
es: Base de datos
value: http://id.loc.gov/vocabulary/marcgt/dtb
dataset_scope: non_spatial_dataset
- label:
en: Document (computer)
es: Documento (informático)
value: http://id.loc.gov/vocabulary/marcgt/doc
dataset_scope: non_spatial_dataset
- label:
en: Event
es: Evento
value: http://purl.org/dc/dcmitype/Event
dataset_scope: non_spatial_dataset
- label:
en: Government publication
es: Publicación gubernamental
value: http://id.loc.gov/vocabulary/marcgt/gov
dataset_scope: non_spatial_dataset
- label:
en: Image
es: Imagen
value: http://purl.org/dc/dcmitype/Image
dataset_scope: non_spatial_dataset
- label:
en: Still Image
es: Imagen fija
value: http://purl.org/dc/dcmitype/StillImage
dataset_scope: non_spatial_dataset
- label:
en: Journal
es: Revista
value: http://id.loc.gov/vocabulary/marcgt/jou
dataset_scope: non_spatial_dataset
- label:
en: Legislation
es: Legislación
value: http://id.loc.gov/vocabulary/marcgt/leg
dataset_scope: non_spatial_dataset
- label:
en: Moving Image
es: Imagen en movimiento
value: http://purl.org/dc/dcmitype/MovingImage
dataset_scope: non_spatial_dataset
- label:
en: Physical Object
es: Objeto físico
value: http://purl.org/dc/dcmitype/PhysicalObject
dataset_scope: non_spatial_dataset
- label:
en: Reporting
es: Informe
value: http://id.loc.gov/vocabulary/marcgt/rpt
dataset_scope: non_spatial_dataset
- label:
en: Interactive Resource
es: Recurso interactivo
value: http://purl.org/dc/dcmitype/InteractiveResource
dataset_scope: non_spatial_dataset
- label:
en: Spatial data set series
es: Series de datos espaciales
value: http://inspire.ec.europa.eu/metadata-codelist/ResourceType/series
dataset_scope: spatial_dataset
- label:
en: Service
es: Servicio
value: http://purl.org/dc/dcmitype/Service
dataset_scope: non_spatial_dataset
- label:
en: Spatial data service
es: Servicio de datos espaciales
value: http://inspire.ec.europa.eu/metadata-codelist/ResourceType/service
dataset_scope: spatial_dataset
- label:
en: Sound
es: Sonido
value: http://purl.org/dc/dcmitype/Sound
dataset_scope: non_spatial_dataset
- label:
en: Software
es: Software
value: http://purl.org/dc/dcmitype/Software
dataset_scope: non_spatial_dataset
- label:
en: Standard or specification
es: Norma o especificación
value: http://id.loc.gov/vocabulary/marcgt/stp
dataset_scope: non_spatial_dataset
- label:
en: Technical report
es: Informe técnico
value: http://id.loc.gov/vocabulary/marcgt/ter
dataset_scope: non_spatial_dataset
- label:
en: Text
es: Texto
value: http://purl.org/dc/dcmitype/Text
dataset_scope: non_spatial_dataset
form_group_id: identification
# MDR Themes (M)
## Taxonomy [DCAT-AP](hhttp://publications.europa.eu/resource/authority/data-theme)
- field_name: theme_eu
label:
en: Themes (DCAT-AP)
es: Temáticas (DCAT-AP)
preset: multiple_choice_icon
display_property: dcat:theme
select_size: 10
required: True
help_text:
en: '<a href="http://publications.europa.eu/resource/authority/data-theme" target="_blank" rel="noopener">Themes</a> (DCAT-AP)'
es: '<a href="http://publications.europa.eu/resource/authority/data-theme" target="_blank" rel="noopener">Temáticas</a> (DCAT-AP)'
help_allow_html: True
sorted_choices: True
choices:
- value: http://publications.europa.eu/resource/authority/data-theme/AGRI
label:
en: Agriculture, fisheries, forestry and food
es: Agricultura, pesca, silvicultura y alimentación
- value: http://publications.europa.eu/resource/authority/data-theme/ECON
label:
en: Economy and finance
es: Economía y finanzas
- value: http://publications.europa.eu/resource/authority/data-theme/EDUC
label:
en: Education, culture and sport
es: Educación, cultura y deporte
- value: http://publications.europa.eu/resource/authority/data-theme/ENER
label:
en: Energy
es: Energía
- value: http://publications.europa.eu/resource/authority/data-theme/ENVI
label:
en: Environment
es: Medio ambiente
- value: http://publications.europa.eu/resource/authority/data-theme/GOVE
label:
en: Government and public sector
es: Gobierno y sector público
- value: http://publications.europa.eu/resource/authority/data-theme/HEAL
label:
en: Health
es: Salud
- value: http://publications.europa.eu/resource/authority/data-theme/INTR
label:
en: International issues
es: Asuntos internacionales
- value: http://publications.europa.eu/resource/authority/data-theme/JUST
label:
en: Justice, legal system and public safety
es: Justicia, sistema jurídico y seguridad pública
- value: http://publications.europa.eu/resource/authority/data-theme/REGI
label:
en: Regions and cities
es: Regiones y ciudades
- value: http://publications.europa.eu/resource/authority/data-theme/SOCI
label:
en: Population and society
es: Población y sociedad
- value: http://publications.europa.eu/resource/authority/data-theme/TECH
label:
en: Science and technology
es: Ciencia y tecnología
form_group_id: identification
# Metadata file language (M)
- field_name: language
label:
en: Metadata language
es: Idioma de los metadatos
preset: select_not_empty
display_property: dct:language
display_snippet: schemingdcat/display_snippets/link_schema.html
form_include_blank_choice: False
required: True
sorted_choices: True
choices:
- label:
en: Spanish
es: Español
value: http://publications.europa.eu/resource/authority/language/SPA
- label:
en: English
es: Inglés
value: http://publications.europa.eu/resource/authority/language/ENG
- label:
en: German
es: Alemán
value: http://publications.europa.eu/resource/authority/language/DEU
- label:
en: French
es: Francés
value: http://publications.europa.eu/resource/authority/language/FRA
- label:
en: Italian
es: Italiano
value: http://publications.europa.eu/resource/authority/language/ITA
- label:
en: Dutch
es: Neerlandés
value: http://publications.europa.eu/resource/authority/language/NLD
- label:
en: Danish
es: Danés
value: http://publications.europa.eu/resource/authority/language/DAN
- label:
en: Greek
es: Griego
value: http://publications.europa.eu/resource/authority/language/ELL
- label:
en: Portuguese
es: Portugués
value: http://publications.europa.eu/resource/authority/language/POR
- label:
en: Finnish
es: Finés
value: http://publications.europa.eu/resource/authority/language/FIN
- label:
en: Swedish
es: Sueco
value: http://publications.europa.eu/resource/authority/language/SWE
- label:
en: Czech
es: Checo
value: http://publications.europa.eu/resource/authority/language/CES
- label:
en: Estonian
es: Estonio
value: http://publications.europa.eu/resource/authority/language/EST
- label:
en: Croatian
es: Croata
value: http://publications.europa.eu/resource/authority/language/HRV
- label:
en: Hungarian
es: Húngaro
value: http://publications.europa.eu/resource/authority/language/HUN
- label:
en: Latvian
es: Letón
value: http://publications.europa.eu/resource/authority/language/LAV
- label:
en: Lithuanian
es: Lituano
value: http://publications.europa.eu/resource/authority/language/LIT
- label:
en: Luxembourgish
es: Luxemburgués
value: http://publications.europa.eu/resource/authority/language/LTZ
- label:
en: Maltese
es: Maltés
value: http://publications.europa.eu/resource/authority/language/MLT
- label:
en: Polish
es: Polaco
value: http://publications.europa.eu/resource/authority/language/POL
- label:
en: Slovak
es: Eslovaco
value: http://publications.europa.eu/resource/authority/language/SLK
- label:
en: Slovene
es: Esloveno
value: http://publications.europa.eu/resource/authority/language/SLV
- label:
en: Romanian
es: Rumano
value: http://publications.europa.eu/resource/authority/language/ROM
form_group_id: identification
# Date of creation (O)
- field_name: created
label:
en: Date of creation
es: Fecha de creación
display_property: dct:created
preset: date_created
form_group_id: identification
# Date of last revision (O)
- field_name: modified
label:
en: Date of last revision
es: Fecha de última modificación
display_snippet: schemingdcat/display_snippets/last_update.html
display_property: dct:modified
preset: date_modified
form_group_id: identification
# # Dataset abstract translated (M)
- field_name: notes_translated
label:
en: Dataset abstract
es: Resumen del conjunto de datos
preset: schemingdcat_fluent_notes_translated
required: True
display_property: dct:description
form_placeholder:
en: e.g. Some useful description about the dataset.
es: ej. Una descripción útil sobre el conjunto de datos.
form_languages: ["es", "en"]
required_language: "es"
default_values:
en: Default abstract of the {dataset}.
es: Resumen por defecto del conjunto de datos {dataset}.
form_group_id: notes
# Keyword value (M)
- field_name: tag_string
label:
en: Keywords
es: Palabras clave
preset: tag_string_autocomplete
display_property: dct:subject
form_placeholder: 'payments'
help_text:
en: 'A keyword or tag describing the resource.'
es: 'Palabra clave o etiqueta que describe el recurso.'
form_group_id: vocabs
# Keyword URI (M)
## TODO: Improve form_snippet to generate tag_uri auto from tag_string
## TODO: Add as scheming_datastore_choices (helpers.py/#102) http://github.com/ckan/ckanext-scheming/issues/270
## Only for ckanext-dcat profiles.py
- field_name: tag_uri
label:
en: Keyword URIs
es: URI de palabras clave
preset: multiple_text
display_snippet: schemingdcat/display_snippets/list_keywords.html
form_placeholder: 'http://inspire.ec.europa.eu/metadata-codelist/IACSData/gsaa'
help_text:
en: 'e.g. Metadata code list register (INSPIRE): http://inspire.ec.europa.eu/metadata-codelist'
es: 'ej: Registro de listas controladas de metadatos (INSPIRE): http://inspire.ec.europa.eu/metadata-codelist'
form_group_id: vocabs
# TODO: Probably better include contact_role and contact_organization (boolean) to distinguish between vcard:Individual and vcard:Organizationto use in ckanext-dcat/profiles.py
# Metadata point of contact URI (M)
- field_name: contact_uri
label:
en: URI of the Metadata contact point
es: URI del punto de contacto de los metadatos
dependent_fields:
field_name: contact
subfields:
- field_name: uri
validators: schemingdcat_fill_dependent_fields
display_snippet: schemingdcat/display_snippets/link_name.html
form_placeholder: http://orgs.vocab.org/some-org
form_group_id: contact
# Metadata point of contact name (M)
- field_name: contact_name
label:
en: Metadata contact point name
es: Nombre del punto de contacto de los metadatos
dependent_fields:
field_name: contact
subfields:
- field_name: name
validators: schemingdcat_fill_dependent_fields
display_property: dcat:contactPoint
form_placeholder: José Blanco
form_group_id: contact
# Metadata point of contact email (M)
- field_name: contact_email
label:
en: Metadata contact point email
es: Email del punto de contacto de los Metadatos
dependent_fields:
field_name: contact
subfields:
- field_name: email
validators: not_empty scheming_required schemingdcat_valid_email schemingdcat_fill_dependent_fields
required: True
display_property: vcard:hasEmail
display_snippet: email.html
form_placeholder: [email protected]
form_group_id: contact
# Metadata point of contact Web (R)
- field_name: contact_url
label:
en: Website of the Metadata contact point
es: Web del punto de contacto de los metadatos
dependent_fields:
field_name: contact
subfields:
- field_name: url
preset: valid_url_dependent_fields
display_property: vcard:hasURL
form_placeholder: http://www.example.com
form_group_id: contact
# GeoDCAT-AP: https://semiceu.github.io/GeoDCAT-AP/releases/3.0.0#responsible-party-and-metadata-point-of-contact---dataset-responsible-party-and-metadata-point-of-contact
- field_name: contact_role
label:
en: Metadata contact point role
es: Rol del punto de contacto de los metadatos
display_property: dcat:hadRole
dependent_fields:
field_name: contact
subfields:
- field_name: role
preset: select_dependent_fields
display_snippet: schemingdcat/display_snippets/link_schema.html
choices:
- label:
en: Resource Provider
es: Proveedor de recursos
value: http://inspire.ec.europa.eu/metadata-codelist/ResponsiblePartyRole/resourceProvider
geodcatap: geodcatap:resourceProvider
- label:
en: Custodian
es: Custodio
value: http://inspire.ec.europa.eu/metadata-codelist/ResponsiblePartyRole/custodian
geodcatap: geodcatap:custodian
- label:
en: Owner
es: Propietario
value: http://inspire.ec.europa.eu/metadata-codelist/ResponsiblePartyRole/owner
geodcatap: dct:rightsHolder
- label:
en: User
es: Usuario
value: http://inspire.ec.europa.eu/metadata-codelist/ResponsiblePartyRole/user
geodcatap: geodcatap:user
- label:
en: Distributor
es: Distribuidor
value: http://inspire.ec.europa.eu/metadata-codelist/ResponsiblePartyRole/distributor
geodcatap: geodcatap:distributor
- label:
en: Originator
es: Originador
value: http://inspire.ec.europa.eu/metadata-codelist/ResponsiblePartyRole/originator
geodcatap: geodcatap:originator
- label:
en: Point of Contact
es: Punto de contacto
value: http://inspire.ec.europa.eu/metadata-codelist/ResponsiblePartyRole/pointOfContact
geodcatap: dcat:contactPoint
- label:
en: Principal Investigator
es: Investigador principal
value: http://inspire.ec.europa.eu/metadata-codelist/ResponsiblePartyRole/principalInvestigator
geodcatap: geodcatap:principalInvestigator
- label:
en: Processor
es: Procesador
value: http://inspire.ec.europa.eu/metadata-codelist/ResponsiblePartyRole/processor
geodcatap: geodcatap:processor
- label:
en: Publisher
es: Editor
value: http://inspire.ec.europa.eu/metadata-codelist/ResponsiblePartyRole/publisher
geodcatap: dct:publisher
- label:
en: Author
es: Autor
value: http://inspire.ec.europa.eu/metadata-codelist/ResponsiblePartyRole/author
geodcatap: dct:creator
form_group_id: contact
# TO MIGRATE: contact dict. Filling with contact_* values
- field_name: contact
label:
en: Contact points
es: Puntos de contacto
repeating_label:
en: Contact point
es: Punto de contacto
form_snippet: null
display_snippet: null
repeating_subfields:
- field_name: uri
legacy: contact_uri
label:
en: URI of the Metadata contact point
es: URI del punto de contacto de los metadatos
- field_name: name
legacy: contact_name
label:
en: Metadata contact point name
es: Nombre del punto de contacto de los metadatos
- field_name: email
legacy: contact_email
label:
en: Metadata contact point email
es: Email del punto de contacto de los Metadatos
- field_name: url
legacy: contact_url
label:
en: Website of the Metadata contact point
es: Web del punto de contacto de los metadatos
- field_name: role
legacy: contact_role
label:
en: Metadata contact point role
es: Rol del punto de contacto de los metadatos
help_text:
en: 'Contact information for enquiries about the dataset.'
es: 'Información de contacto para consultas sobre el conjunto de datos.'
form_group_id: contact
# Publisher party (M)
- field_name: publisher_name
label:
en: Name of the publisher
es: Nombre del publicador
display_property: foaf:name
form_placeholder: José Blanco
dependent_fields:
field_name: publisher
subfields:
- field_name: name
validators: schemingdcat_fill_dependent_fields
help_text:
en: "A party that makes a dataset available to others."
es: "Persona u organización que pone a disposición de otros el conjunto de datos."
form_group_id: publisher
# Publisher identifier (M)
- field_name: publisher_identifier
label:
en: Identifier of the publisher
es: Identificador del publicador
dependent_fields:
field_name: publisher
subfields:
- field_name: identifier
validators: schemingdcat_fill_dependent_fields
display_property: dct:identifier
form_placeholder: http://datos.gob.es/recurso/sector-publico/org/Organismo/E05068001
help_text:
en: "Unique identifier of the publisher. Spain: Unique identifier (DIR3) of the public organization (<a href='http://datos.gob.es/es/recurso/sector-publico/org/Organismo' target='_blank'>datos.gob.es</a>)."
es: "Identificador único del publicador. España: Identificador único (DIR3) del organismo público. (<a href='http://datos.gob.es/es/recurso/sector-publico/org/Organismo' target='_blank'>datos.gob.es</a>)"
help_allow_html: True
form_group_id: publisher
# Publisher URI (M)
- field_name: publisher_uri
label:
en: URI of the publisher
es: URI del publicador
dependent_fields:
field_name: publisher
subfields:
- field_name: uri