forked from OpenDataGIS/ckanext-facet_scheming
-
Notifications
You must be signed in to change notification settings - Fork 2
/
es_geodcat_ap_full.yaml
4041 lines (3918 loc) · 142 KB
/
es_geodcat_ap_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 GeoDCAT-AP metadata schema extended (3.0.0) with ISO-19115 (INSPIRE) mandatory elements. Spanish context NTI-RISP: http://www.boe.es/eli/es/res/2013/02/19/(4)/con"
about_url: https://github.com/mjanez/ckanext-schemingdcat
form_languages: ["es", "en"]
required_language: "es"
schema_version: 3.0
schema_date: 2024-08-01
schema_name: es_geodcat_ap_full
schema_title: GeoDCAT-AP (ES)
schema_description: "Geospatial extension to the DCAT application profile for data portals in Europe (GeoDCAT-AP). It is adapted to the Spanish context and includes compatibility with the Technical Interoperability Standard (NTI-RISP), the open data profile for Spain: https://datos.gob.es/en/documentacion/guia-de-aplicacion-de-la-norma-tecnica-de-interoperabilidad-de-reutilizacion-de"
schema_profile_version: 3.0.0
schema_profile_url: https://semiceu.github.io/GeoDCAT-AP/releases/3.0.0
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
- form_group_id: inspire
label:
en: INSPIRE information
es: Información INSPIRE
fa_icon: fa-globe
# 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
- inspire
- 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: ["es", "en"]
required_language: "es"
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
# NTI-RISP Theme (M)
## Taxonomy [NTI-RISP Annex IV](http://www.boe.es/eli/es/res/2013/02/19/(4)/con#aniv)
- field_name: theme_es
label:
en: Themes (NTI-RISP)
es: Temáticas (NTI-RISP)
preset: multiple_choice_icon
display_property: dcat:theme
select_size: 10
required: True
help_text:
en: '<a href="http://www.boe.es/eli/es/res/2013/02/19/(4)/con#aniv" target="_blank" rel="noopener">Themes</a> (NTI-RISP Annex IV)'
es: '<a href="http://www.boe.es/eli/es/res/2013/02/19/(4)/con#aniv" target="_blank" rel="noopener">Temáticas</a> (Anexo IV NTI-RISP)'
help_allow_html: True
sorted_choices: True
choices:
- value: http://datos.gob.es/kos/sector-publico/sector/ciencia-tecnologia
notation: ciencia-tecnologia
label:
en: Science and technology
es: Ciencia y tecnología
ca: Ciència i tecnologia
gl: Ciencia e tecnoloxía
eu: Zientzia eta teknologia
description:
en: ''
es: 'Incluye: Innovación, Investigación, I/u002BD/u002BI, Telecomunicaciones,
Inernet y Sociedad de la Información.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/TECH
- value: http://datos.gob.es/kos/sector-publico/sector/comercio
notation: comercio
label:
en: Commerce
es: Comercio
ca: Comerç
gl: Comercio
eu: Merkataritza
description:
en: ''
es: 'Incluye: Consumo.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/ECON
- value: http://datos.gob.es/kos/sector-publico/sector/cultura-ocio
notation: cultura-ocio
label:
en: Culture and leisure
es: Cultura y ocio
ca: Cultura i lleure
gl: Cultura e lecer
eu: Kultura eta aisia
description:
en: ''
es: 'Incluye: Tiempo libre.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/EDUC
- value: http://datos.gob.es/kos/sector-publico/sector/demografia
notation: demografia
label:
en: Demography
es: Demografía
ca: Demografia
gl: Demografía
eu: Demografia
description:
en: ''
es: 'Incluye: Inmigración y Emigración, Familia, Mujeres, Infancia, Mayores,
Padrón.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/SOCI
- value: http://datos.gob.es/kos/sector-publico/sector/deporte
notation: deporte
label:
en: Sport
es: Deporte
ca: Esport
gl: Deporte
eu: Kirola
description:
en: ''
es: 'Incluye: Instalaciones deportivas, Federaciones, Competiciones.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/EDUC
- value: http://datos.gob.es/kos/sector-publico/sector/economia
notation: economia
label:
en: Economy
es: Economía
ca: Economia
gl: Economía
eu: Ekonomia
description:
en: ''
es: 'Incluye: Deuda, Moneda y Banca y finanzas.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/ECON
- value: http://datos.gob.es/kos/sector-publico/sector/educacion
notation: educacion
label:
en: Education
es: Educación
ca: Educació
gl: Educación
eu: Hezkuntza
description:
en: ''
es: 'Incluye: Formación.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/EDUC
- value: http://datos.gob.es/kos/sector-publico/sector/empleo
notation: empleo
label:
en: Employment
es: Empleo
ca: Ocupació
gl: Emprego
eu: Enplegua
description:
en: ''
es: 'Incluye: Trabajo, Mercado laboral.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/ECON
- value: http://datos.gob.es/kos/sector-publico/sector/energia
notation: energia
label:
en: Energy
es: Energía
ca: Energia
gl: Enerxía
eu: Energia
description:
en: ''
es: 'Incluye: Fuentes renovables.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/ENER
- value: http://datos.gob.es/kos/sector-publico/sector/hacienda
notation: hacienda
label:
en: Treasury
es: Hacienda
ca: Hisenda
gl: Facenda
eu: Ogasuna
description:
en: ''
es: 'Incluye: Impuestos.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/GOVE
- value: http://datos.gob.es/kos/sector-publico/sector/industria
notation: industria
label:
en: Industry
es: Industria
ca: Indústria
gl: Industria
eu: Industria
description:
en: ''
es: 'Incluye: Minería.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/ECON
- value: http://datos.gob.es/kos/sector-publico/sector/legislacion-justicia
notation: legislacion-justicia
label:
en: Legislation and justice
es: Legislación y justicia
ca: Legislació i justícia
gl: Lexislación e xustiza
eu: Legegintza eta justizia
description:
en: ''
es: 'Incluye: Registros.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/JUST
- value: http://datos.gob.es/kos/sector-publico/sector/medio-ambiente
notation: medio-ambiente
label:
en: Environment
es: Medio ambiente
ca: Medi ambient
gl: Medio ambiente
eu: Ingurumena
description:
en: ''
es: 'Incluye: Meteorología, Geografía, Conservación fauna y flora.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/ENVI
- value: http://datos.gob.es/kos/sector-publico/sector/medio-rural-pesca
notation: medio-rural-pesca
label:
en: Rural environment
es: Medio Rural
ca: Medi rural
gl: Medio rural
eu: Nekazaritza
description:
en: ''
es: 'Incluye: Agricultura, Ganadería, Pesca y Silvicultura.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/AGRI
- value: http://datos.gob.es/kos/sector-publico/sector/salud
notation: salud
label:
en: Healthcare
es: Salud
ca: Salut
gl: Saúde
eu: Osasuna
description:
en: ''
es: 'Incluye: Sanidad.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/HEAL
- value: http://datos.gob.es/kos/sector-publico/sector/sector-publico
notation: sector-publico
label:
en: Public sector
es: Sector público
ca: Sector públic
gl: Sector público
eu: Sektore publikoa
description:
en: ''
es: 'Incluye: Presupuestos, Organigrama institucional, Legislación interna,
Función pública.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/GOVE
- value: http://datos.gob.es/kos/sector-publico/sector/seguridad
notation: seguridad
label:
en: Security
es: Seguridad
ca: Seguretat
gl: Seguridade
eu: Segurtasuna
description:
en: ''
es: 'Incluye: Protección civil, Defensa.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/JUST
- value: http://datos.gob.es/kos/sector-publico/sector/sociedad-bienestar
notation: sociedad-bienestar
label:
en: Society and welfare
es: Sociedad y bienestar
ca: Societat i benestar
gl: Sociedade e benestar
eu: Gizartea eta ongizatea
description:
en: ''
es: 'Incluye: Participación ciudadana, Marginación, Envejecimiento Activo, Autonomía
personal y Dependencia, Invalidez, Jubilación, Seguros y Pensiones, Prestaciones
y Subvenciones.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/SOCI
- value: http://datos.gob.es/kos/sector-publico/sector/transporte
notation: transporte
label:
en: Transport
es: Transporte
ca: Transport
gl: Transporte
eu: Garraioa
description:
en: ''
es: 'Incluye: Comunicaciones y Tr/u00E1fico.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/TRAN
- value: http://datos.gob.es/kos/sector-publico/sector/turismo
notation: turismo
label:
en: Tourism
es: Turismo
ca: Turisme
gl: Turismo
eu: Turismoa
description:
en: ''
es: 'Incluye: Alojamientos, Hostelería, Gastronomía.'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/ECON
- value: http://datos.gob.es/kos/sector-publico/sector/urbanismo-infraestructuras
notation: urbanismo-infraestructuras
label:
en: Town planning and infrastructures
es: Urbanismo e infraestructuras
ca: Urbanisme i infraestructures
gl: Urbanismo e infraestruturas
eu: Hirigintza eta azpiegiturak
description:
en: ''
es: 'Incluye: Saneamiento público, Construcción (infraestructuras, equipamientos
públicos).'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/REGI
- value: http://datos.gob.es/kos/sector-publico/sector/vivienda
notation: vivienda
label:
en: Housing
es: Vivienda
ca: Habitatge
gl: Vivenda
eu: Etxebizitza
description:
en: ''
es: 'Incluye: Mercado inmobiliario, Construcción (viviendas).'
ca: ''
gl: ''
eu: ''
dcat_ap: http://publications.europa.eu/resource/authority/data-theme/REGI
form_group_id: identification
# High-value dataset category (R)
- field_name: hvd_category
label:
en: High-value dataset category
es: Categoría del conjunto de alto valor (HVD)
preset: select
display_property: dcatap:hvdCategory
display_snippet: schemingdcat/display_snippets/link_schema.html
form_snippet: schemingdcat/form_snippets/select_hvd_category.html
select_size: 10
sorted_choices: False
choices:
- label:
en: Meteorological
es: Meteorología
value: http://data.europa.eu/bna/c_164e0bf5
narrower: null
narrower_level: NT0
- label:
en: NWP model data
es: Datos del modelo PMN
value: http://data.europa.eu/bna/c_13e3cf16
narrower: http://data.europa.eu/bna/c_164e0bf5
narrower_level: NT1
- label:
en: "Climate data: validated observations"
es: "Datos climáticos: observaciones validadas"
value: http://data.europa.eu/bna/c_36807466
narrower: http://data.europa.eu/bna/c_164e0bf5
narrower_level: NT1
- label:
en: Observations data measured by weather stations
es: Datos de observaciones medidos por estaciones meteorológicas
value: http://data.europa.eu/bna/c_3af3368c
narrower: http://data.europa.eu/bna/c_164e0bf5
narrower_level: NT1
- label:
en: Weather alerts
es: Avisos meteorológicos
value: http://data.europa.eu/bna/c_be47b010
narrower: http://data.europa.eu/bna/c_164e0bf5
narrower_level: NT1
- label:
en: Radar data
es: Datos de radares
value: http://data.europa.eu/bna/c_d13a4420
narrower: http://data.europa.eu/bna/c_164e0bf5
narrower_level: NT1
- label:
en: Companies and company ownership
es: Sociedades y propiedad de sociedades
value: http://data.europa.eu/bna/c_a9135398
narrower: null
narrower_level: NT0
- label:
en: "Basic company information: key attributes"
es: "Información de contacto básica: principales atributos"
value: http://data.europa.eu/bna/c_56a1bf47
narrower: http://data.europa.eu/bna/c_a9135398
narrower_level: NT1
- label:
en: Company documents and accounts
es: Documentos y cuentas de la empresa
value: http://data.europa.eu/bna/c_8f0fac04
narrower: http://data.europa.eu/bna/c_a9135398
narrower_level: NT1
- label:
en: Geospatial
es: Geoespacial
value: http://data.europa.eu/bna/c_ac64a52d
narrower: null
narrower_level: NT0
- label:
en: Buildings
es: Edificios
value: http://data.europa.eu/bna/c_60182062
narrower: http://data.europa.eu/bna/c_ac64a52d
narrower_level: NT1
- label:
en: Agricultural parcels
es: Parcelas agrícolas
value: http://data.europa.eu/bna/c_642643e6
narrower: http://data.europa.eu/bna/c_ac64a52d
narrower_level: NT1
- label:
en: Cadastral parcels
es: Parcelas catastrales
value: http://data.europa.eu/bna/c_6a3f6896
narrower: http://data.europa.eu/bna/c_ac64a52d
narrower_level: NT1
- label:
en: Geographical names
es: Nombres geográficos
value: http://data.europa.eu/bna/c_6c2bb82d
narrower: http://data.europa.eu/bna/c_ac64a52d
narrower_level: NT1
- label:
en: Administrative units