-
Notifications
You must be signed in to change notification settings - Fork 7
/
metadata_schema.yml
996 lines (995 loc) · 34.3 KB
/
metadata_schema.yml
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
# This determines the schema that all indicator metadata must follow.
# It also provides a configuration for the Prose.io file-editing service.
prose:
metadata:
meta:
######### Global Metadata #########
# - name: SDG_INDICATOR_INFO__GLOBAL
# field:
# element: text
# label: Indicator information (global)
# translation_key: metadata_fields.SDG_INDICATOR_INFO
# scope: global
# - name: SDG_GOAL__GLOBAL
# field:
# element: text
# label: Goal (global)
# translation_key: metadata_fields.SDG_GOAL
# scope: global
- name: SDG_INDICATOR__GLOBAL
field:
element: text
label: Indicator (global)
translation_key: metadata_fields.SDG_INDICATOR
scope: global
- name: SDG_TARGET__GLOBAL
field:
element: text
label: Target (global)
translation_key: metadata_fields.SDG_TARGET
scope: global
# - name: SDG_SERIES_DESCR__GLOBAL
# field:
# element: text
# label: Series (global)
# translation_key: metadata_fields.SDG_SERIES_DESCR
# scope: global
- name: META_LAST_UPDATE__GLOBAL
field:
element: text
label: Metadata update (global)
translation_key: metadata_fields.META_LAST_UPDATE
scope: global
- name: SDG_CUSTODIAN_AGENCIES__GLOBAL
field:
element: text
label: International organisations(s) responsible for global monitoring (global)
translation_key: metadata_fields.SDG_CUSTODIAN_AGENCIES
scope: global
- name: SDG_RELATED_INDICATORS__GLOBAL
field:
element: text
label: Related indicators (global)
translation_key: metadata_fields.SDG_RELATED_INDICATORS
scope: global
# - name: CONTACT__GLOBAL
# field:
# element: text
# label: Data reporter (global)
# translation_key: metadata_fields.CONTACT
# scope: global
# - name: CONTACT_ORGANISATION__GLOBAL
# field:
# element: text
# label: Organisation (global)
# translation_key: metadata_fields.CONTACT_ORGANISATION
# scope: global
# - name: CONTACT_NAME__GLOBAL
# field:
# element: text
# label: Contact person(s) (global)
# translation_key: metadata_fields.CONTACT_NAME
# scope: global
# - name: ORGANISATION_UNIT__GLOBAL
# field:
# element: text
# label: Contact organisation unit (global)
# translation_key: metadata_fields.ORGANISATION_UNIT
# scope: global
# - name: CONTACT_FUNCT__GLOBAL
# field:
# element: text
# label: Contact person function (global)
# translation_key: metadata_fields.CONTACT_FUNCT
# scope: global
# - name: CONTACT_PHONE__GLOBAL
# field:
# element: text
# label: Contact phone (global)
# translation_key: metadata_fields.CONTACT_PHONE
# scope: global
# - name: CONTACT_MAIL__GLOBAL
# field:
# element: text
# label: Contact mail (global)
# translation_key: metadata_fields.CONTACT_MAIL
# scope: global
# - name: CONTACT_EMAIL__GLOBAL
# field:
# element: text
# label: Contact email (global)
# translation_key: metadata_fields.CONTACT_EMAIL
# scope: global
# - name: IND_DEF_CON_CLASS__GLOBAL
# field:
# element: text
# label: Definition, concepts, and classifications (global)
# translation_key: metadata_fields.IND_DEF_CON_CLASS
# scope: global
# - name: STAT_CONC_DEF__GLOBAL
# field:
# element: text
# label: Definition and concepts (global)
# translation_key: metadata_fields.STAT_CONC_DEF
# scope: global
# - name: UNIT_MEASURE__GLOBAL
# field:
# element: text
# label: Unit of measure (global)
# translation_key: metadata_fields.UNIT_MEASURE
# scope: global
# - name: CLASS_SYSTEM__GLOBAL
# field:
# element: text
# label: Classifications (global)
# translation_key: metadata_fields.CLASS_SYSTEM
# scope: global
# - name: SRC_TYPE_COLL_METHOD__GLOBAL
# field:
# element: text
# label: Data source type and collection method (global)
# translation_key: metadata_fields.SRC_TYPE_COLL_METHOD
# scope: global
# - name: SOURCE_TYPE__GLOBAL
# field:
# element: text
# label: Data sources (global)
# translation_key: metadata_fields.SOURCE_TYPE
# scope: global
# - name: COLL_METHOD__GLOBAL
# field:
# element: text
# label: Data collection method (global)
# translation_key: metadata_fields.COLL_METHOD
# scope: global
# - name: FREQ_COLL__GLOBAL
# field:
# element: text
# label: Data collection calendar (global)
# translation_key: metadata_fields.FREQ_COLL
# scope: global
# - name: REL_CAL_POLICY__GLOBAL
# field:
# element: text
# label: Data release calendar (global)
# translation_key: metadata_fields.REL_CAL_POLICY
# scope: global
# - name: DATA_SOURCE__GLOBAL
# field:
# element: text
# label: Data providers (global)
# translation_key: metadata_fields.DATA_SOURCE
# scope: global
# - name: COMPILING_ORG__GLOBAL
# field:
# element: text
# label: Data compilers (global)
# translation_key: metadata_fields.COMPILING_ORG
# scope: global
# - name: INST_MANDATE__GLOBAL
# field:
# element: text
# label: Institutional mandate (global)
# translation_key: metadata_fields.INST_MANDATE
# scope: global
# - name: OTHER_METHOD__GLOBAL
# field:
# element: text
# label: Other methodological considerations (global)
# translation_key: metadata_fields.OTHER_METHOD
# scope: global
# - name: RATIONALE__GLOBAL
# field:
# element: text
# label: Rationale (global)
# translation_key: metadata_fields.RATIONALE
# scope: global
# - name: REC_USE_LIM__GLOBAL
# field:
# element: text
# label: Comment and limitations (global)
# translation_key: metadata_fields.REC_USE_LIM
# scope: global
# - name: DATA_COMP__GLOBAL
# field:
# element: text
# label: Method of computation (global)
# translation_key: metadata_fields.DATA_COMP
# scope: global
# - name: DATA_VALIDATION__GLOBAL
# field:
# element: text
# label: Validation (global)
# translation_key: metadata_fields.DATA_VALIDATION
# scope: global
# - name: ADJUSTMENT__GLOBAL
# field:
# element: text
# label: Adjustments (global)
# translation_key: metadata_fields.ADJUSTMENT
# scope: global
# - name: IMPUTATION__GLOBAL
# field:
# element: text
# label: Treatment of missing values (i) at country level and (ii) at regional level (global)
# translation_key: metadata_fields.IMPUTATION
# scope: global
# - name: REG_AGG__GLOBAL
# field:
# element: text
# label: Regional aggregations (global)
# translation_key: metadata_fields.REG_AGG
# scope: global
# - name: DOC_METHOD__GLOBAL
# field:
# element: text
# label: Methods and guidance available to countries for the compilation of the data at the national level (global)
# translation_key: metadata_fields.DOC_METHOD
# scope: global
# - name: QUALITY_MGMNT__GLOBAL
# field:
# element: text
# label: Quality management (global)
# translation_key: metadata_fields.QUALITY_MGMNT
# scope: global
# - name: QUALITY_ASSURE__GLOBAL
# field:
# element: text
# label: Quality assurance (global)
# translation_key: metadata_fields.QUALITY_ASSURE
# scope: global
# - name: QUALITY_ASSMNT__GLOBAL
# field:
# element: text
# label: Quality assessment (global)
# translation_key: metadata_fields.QUALITY_ASSMNT
# scope: global
# - name: COVERAGE__GLOBAL
# field:
# element: text
# label: Data availability and disaggregation (global)
# translation_key: metadata_fields.COVERAGE
# scope: global
# - name: COMPARABILITY__GLOBAL
# field:
# element: text
# label: Comparability/deviation from international standards (global)
# translation_key: metadata_fields.COMPARABILITY
# scope: global
# - name: OTHER_DOC__GLOBAL
# field:
# element: text
# label: References and Documentation (global)
# translation_key: metadata_fields.OTHER_DOC
# scope: global
######### National Metadata #########
- name: SDG_INDICATOR_INFO
field:
element: text
label: Indicator information
translation_key: metadata_fields.SDG_INDICATOR_INFO
scope: national
- name: SDG_GOAL
field:
element: text
label: Goal
translation_key: metadata_fields.SDG_GOAL
scope: national
- name: SDG_TARGET
field:
element: text
label: Target
translation_key: metadata_fields.SDG_TARGET
scope: national
- name: SDG_INDICATOR
field:
element: text
label: Indicator
translation_key: metadata_fields.SDG_INDICATOR
scope: national
- name: SDG_SERIES_DESCR
field:
element: text
label: Series
translation_key: metadata_fields.SDG_SERIES_DESCR
scope: national
- name: META_LAST_UPDATE
field:
element: text
label: Metadata update
translation_key: metadata_fields.META_LAST_UPDATE
scope: national
- name: SDG_RELATED_INDICATORS
field:
element: text
label: Related indicators
translation_key: metadata_fields.SDG_RELATED_INDICATORS
scope: national
- name: CONTACT
field:
element: text
label: Data reporter
translation_key: metadata_fields.CONTACT
scope: national
- name: CONTACT_ORGANISATION
field:
element: text
label: Organisation
translation_key: metadata_fields.CONTACT_ORGANISATION
scope: national
- name: CONTACT_NAME
field:
element: text
label: Contact person(s)
translation_key: metadata_fields.CONTACT_NAME
scope: national
- name: ORGANISATION_UNIT
field:
element: text
label: Contact organisation unit
translation_key: metadata_fields.ORGANISATION_UNIT
scope: national
- name: CONTACT_FUNCT
field:
element: text
label: Contact person function
translation_key: metadata_fields.CONTACT_FUNCT
scope: national
- name: CONTACT_PHONE
field:
element: text
label: Contact phone
translation_key: metadata_fields.CONTACT_PHONE
scope: national
- name: CONTACT_MAIL
field:
element: text
label: Contact mail
translation_key: metadata_fields.CONTACT_MAIL
scope: national
- name: CONTACT_EMAIL
field:
element: text
label: Contact email
translation_key: metadata_fields.CONTACT_EMAIL
scope: national
- name: IND_DEF_CON_CLASS
field:
element: text
label: Definition, concepts, and classifications
translation_key: metadata_fields.IND_DEF_CON_CLASS
scope: national
- name: STAT_CONC_DEF
field:
element: text
label: Definition and concepts
translation_key: metadata_fields.STAT_CONC_DEF
scope: national
- name: UNIT_MEASURE
field:
element: text
label: Unit of measure
translation_key: metadata_fields.UNIT_MEASURE
scope: national
- name: CLASS_SYSTEM
field:
element: text
label: Classifications
translation_key: metadata_fields.CLASS_SYSTEM
scope: national
- name: SRC_TYPE_COLL_METHOD
field:
element: text
label: Data source type and collection method
translation_key: metadata_fields.SRC_TYPE_COLL_METHOD
scope: national
- name: SOURCE_TYPE
field:
element: text
label: Data sources
translation_key: metadata_fields.SOURCE_TYPE
scope: national
- name: COLL_METHOD
field:
element: text
label: Data collection method
translation_key: metadata_fields.COLL_METHOD
scope: national
- name: FREQ_COLL
field:
element: text
label: Data collection calendar
translation_key: metadata_fields.FREQ_COLL
scope: national
- name: REL_CAL_POLICY
field:
element: text
label: Data release calendar
translation_key: metadata_fields.REL_CAL_POLICY
scope: national
- name: DATA_SOURCE
field:
element: text
label: Data providers
translation_key: metadata_fields.DATA_SOURCE
scope: national
- name: COMPILING_ORG
field:
element: text
label: Data compilers
translation_key: metadata_fields.COMPILING_ORG
scope: national
- name: INST_MANDATE
field:
element: text
label: Institutional mandate
translation_key: metadata_fields.INST_MANDATE
scope: national
- name: OTHER_METHOD
field:
element: text
label: Other methodological considerations
translation_key: metadata_fields.OTHER_METHOD
scope: national
- name: RATIONALE
field:
element: text
label: Rationale
translation_key: metadata_fields.RATIONALE
scope: national
- name: REC_USE_LIM
field:
element: text
label: Comment and limitations
translation_key: metadata_fields.REC_USE_LIM
scope: national
- name: DATA_COMP
field:
element: text
label: Method of computation
translation_key: metadata_fields.DATA_COMP
scope: national
- name: DATA_VALIDATION
field:
element: text
label: Validation
translation_key: metadata_fields.DATA_VALIDATION
scope: national
- name: DOC_METHOD
field:
element: text
label: Methods and guidance available to countries for the compilation of the data at the national level
translation_key: metadata_fields.DOC_METHOD
scope: national
- name: QUALITY_MGMNT
field:
element: text
label: Quality management
translation_key: metadata_fields.QUALITY_MGMNT
scope: national
- name: QUALITY_ASSURE
field:
element: text
label: Quality assurance
translation_key: metadata_fields.QUALITY_ASSURE
scope: national
- name: QUALITY_ASSMNT
field:
element: text
label: Quality assessment
translation_key: metadata_fields.QUALITY_ASSMNT
scope: national
- name: COVERAGE
field:
element: text
label: Data availability and disaggregation
translation_key: metadata_fields.COVERAGE
scope: national
- name: COMPARABILITY
field:
element: text
label: Comparability/deviation from international standards
translation_key: metadata_fields.COMPARABILITY
scope: national
- name: OTHER_DOC
field:
element: text
label: References and Documentation
translation_key: metadata_fields.OTHER_DOC
scope: national
######### Last updated dates #########
- name: "national_data_updated_date"
field:
element: hidden
label: "Data last updated"
translation_key: metadata_fields.national_data_update_url
scope: national
- name: "national_metadata_updated_date"
field:
element: hidden
label: "Metadata last updated"
translation_key: metadata_fields.national_metadata_update_url
scope: national
######### National Sources #########
## Source 1
- name: source_active_1
field:
element: checkbox
label: Source 1 active
translation_key: metadata_fields.source_active_1
help: Whether or not to display this source
value: true
- name: source_organisation_1
field:
element: text
label: "Organisation"
translation_key: metadata_fields.source_organisation_1
scope: source_1
- name: "source_periodicity_1"
field:
element: text
label: "Periodicity"
translation_key: metadata_fields.source_periodicity_1
scope: source_1
- name: "source_earliest_available_1"
field:
element: text
label: "Earliest available data"
translation_key: metadata_fields.source_earliest_available_1
scope: source_1
- name: "source_geographical_coverage_1"
field:
element: text
label: "Geographical coverage"
translation_key: metadata_fields.source_geographical_coverage_1
scope: source_1
- name: "source_url_1"
field:
element: text
label: "Link to data source"
translation_key: metadata_fields.source_url_1
scope: source_1
- name: "source_url_text_1"
field:
element: text
label: "Link to data source text"
translation_key: metadata_fields.source_url_text_1
value: "Link to source"
scope: source_1
- name: "source_release_date_1"
field:
element: text
label: "Release date"
translation_key: metadata_fields.source_release_date_1
help: "A date in YYYY-MM-DD format"
placeholder: "YYYY-MM-DD"
scope: source_1
- name: "source_next_release_1"
field:
element: text
label: "Next release"
translation_key: metadata_fields.source_next_release_1
help: "A date in YYYY-MM-DD format"
placeholder: "YYYY-MM-DD"
scope: source_1
- name: "source_statistical_classification_1"
field:
element: text
label: "Statistical classification"
translation_key: metadata_fields.source_statistical_classification_1
scope: source_1
- name: "source_contact_1"
field:
element: text
label: "Contact details"
translation_key: metadata_fields.source_contact_1
scope: source_1
- name: "source_other_info_1"
field:
element: textarea
label: "Other information"
translation_key: metadata_fields.source_other_info_1
scope: source_1
## Source 2
- name: source_active_2
field:
element: checkbox
label: Source 2 active
translation_key: metadata_fields.source_active_1
help: Whether or not to display this source
value: false
- name: source_organisation_2
field:
element: text
label: "Organisation"
translation_key: metadata_fields.source_organisation_1
scope: source_2
- name: "source_periodicity_2"
field:
element: text
label: "Periodicity"
translation_key: metadata_fields.source_periodicity_1
scope: source_2
- name: "source_earliest_available_2"
field:
element: text
label: "Earliest available data"
translation_key: metadata_fields.source_earliest_available_1
scope: source_2
- name: "source_geographical_coverage_2"
field:
element: text
label: "Geographical coverage"
translation_key: metadata_fields.source_geographical_coverage_1
scope: source_2
- name: "source_url_2"
field:
element: text
label: "Link to data source"
translation_key: metadata_fields.source_url_1
scope: source_2
- name: "source_url_text_2"
field:
element: text
label: "Link to data source text"
translation_key: metadata_fields.source_url_text_1
value: "Link to Source"
scope: source_2
- name: "source_release_date_2"
field:
element: text
label: "Release date"
translation_key: metadata_fields.source_release_date_1
help: "A date in YYYY-MM-DD format"
placeholder: "YYYY-MM-DD"
scope: source_2
- name: "source_next_release_2"
field:
element: text
label: "Next release"
translation_key: metadata_fields.source_next_release_1
help: "A date in YYYY-MM-DD format"
placeholder: "YYYY-MM-DD"
scope: source_2
- name: "source_statistical_classification_2"
field:
element: text
label: "Statistical classification"
translation_key: metadata_fields.source_statistical_classification_1
scope: source_2
- name: "source_contact_2"
field:
element: text
label: "Contact details"
translation_key: metadata_fields.source_contact_1
scope: source_2
- name: "source_other_info_2"
field:
element: textarea
label: "Other information"
translation_key: metadata_fields.source_other_info_1
scope: source_2
## Source 3
- name: source_active_3
field:
element: checkbox
label: Source 3 active
translation_key: metadata_fields.source_active_1
help: Whether or not to display this source
value: false
- name: source_organisation_3
field:
element: text
label: "Organisation"
translation_key: metadata_fields.source_organisation_1
scope: source_3
- name: "source_periodicity_3"
field:
element: text
label: "Periodicity"
translation_key: metadata_fields.source_periodicity_1
scope: source_3
- name: "source_earliest_available_3"
field:
element: text
label: "Earliest available data"
translation_key: metadata_fields.source_earliest_available_1
scope: source_3
- name: "source_geographical_coverage_3"
field:
element: text
label: "Geographical coverage"
translation_key: metadata_fields.source_geographical_coverage_1
scope: source_3
- name: "source_url_3"
field:
element: text
label: "Link to data source"
translation_key: metadata_fields.source_url_1
value: "Link to source"
scope: source_3
- name: "source_url_text_3"
field:
element: text
label: "Link to data source text"
translation_key: metadata_fields.source_url_text_1
scope: source_3
- name: "source_release_date_3"
field:
element: text
label: "Release date"
translation_key: metadata_fields.source_release_date_1
help: "A date in YYYY-MM-DD format"
placeholder: "YYYY-MM-DD"
scope: source_3
- name: "source_next_release_3"
field:
element: text
label: "Next release"
translation_key: metadata_fields.source_next_release_1
help: "A date in YYYY-MM-DD format"
placeholder: "YYYY-MM-DD"
scope: source_3
- name: "source_statistical_classification_3"
field:
element: text
label: "Statistical classification"
translation_key: metadata_fields.source_statistical_classification_1
scope: source_3
- name: "source_contact_3"
field:
element: text
label: "Contact details"
translation_key: metadata_fields.source_contact_1
scope: source_3
- name: "source_other_info_3"
field:
element: textarea
label: "Other information"
translation_key: metadata_fields.source_other_info_1
scope: source_3
## Source 4
- name: source_active_4
field:
element: checkbox
label: Source 4 active
translation_key: metadata_fields.source_active_1
help: Whether or not to display this source
value: false
- name: source_organisation_4
field:
element: text
label: "Organisation"
translation_key: metadata_fields.source_organisation_1
scope: source_4
- name: "source_periodicity_4"
field:
element: text
label: "Periodicity"
translation_key: metadata_fields.source_periodicity_1
scope: source_4
- name: "source_earliest_available_4"
field:
element: text
label: "Earliest available data"
translation_key: metadata_fields.source_earliest_available_1
scope: source_4
- name: "source_geographical_coverage_4"
field:
element: text
label: "Geographical coverage"
translation_key: metadata_fields.source_geographical_coverage_1
scope: source_4
- name: "source_url_4"
field:
element: text
label: "Link to data source"
translation_key: metadata_fields.source_url_1
scope: source_4
- name: "source_url_text_4"
field:
element: text
label: "Link to data source text"
translation_key: metadata_fields.source_url_text_1
value: "Link to source"
scope: source_4
- name: "source_release_date_4"
field:
element: text
label: "Release date"
translation_key: metadata_fields.source_release_date_1
help: "A date in YYYY-MM-DD format"
placeholder: "YYYY-MM-DD"
scope: source_4
- name: "source_next_release_4"
field:
element: text
label: "Next release"
translation_key: metadata_fields.source_next_release_1
help: "A date in YYYY-MM-DD format"
placeholder: "YYYY-MM-DD"
scope: source_4
- name: "source_statistical_classification_4"
field:
element: text
label: "Statistical classification"
translation_key: metadata_fields.source_statistical_classification_1
scope: source_4
- name: "source_contact_4"
field:
element: text
label: "Contact details"
translation_key: metadata_fields.source_contact_1
scope: source_4
- name: "source_other_info_4"
field:
element: textarea
label: "Other information"
translation_key: metadata_fields.source_other_info_1
scope: source_4
## Source 5
- name: source_active_5
field:
element: checkbox
label: Source 5 active
translation_key: metadata_fields.source_active_1
help: Whether or not to display this source
value: false
- name: source_organisation_5
field:
element: text
label: "Organisation"
translation_key: metadata_fields.source_organisation_1
scope: source_5
- name: "source_periodicity_5"
field:
element: text
label: "Periodicity"
translation_key: metadata_fields.source_periodicity_1
scope: source_5
- name: "source_earliest_available_5"
field:
element: text
label: "Earliest available data"
translation_key: metadata_fields.source_earliest_available_1
scope: source_5
- name: "source_geographical_coverage_5"
field:
element: text
label: "Geographical coverage"
translation_key: metadata_fields.source_geographical_coverage_1
scope: source_5
- name: "source_url_5"
field:
element: text
label: "Link to data source"
translation_key: metadata_fields.source_url_1
scope: source_5
- name: "source_url_text_5"
field:
element: text
label: "Link to data source text"
translation_key: metadata_fields.source_url_text_1
value: "Link to source"
scope: source_5
- name: "source_release_date_5"
field:
element: text
label: "Release date"
translation_key: metadata_fields.source_release_date_1
help: "A date in YYYY-MM-DD format"
placeholder: "YYYY-MM-DD"
scope: source_5
- name: "source_next_release_5"
field:
element: text
label: "Next release"
translation_key: metadata_fields.source_next_release_1
help: "A date in YYYY-MM-DD format"
placeholder: "YYYY-MM-DD"
scope: source_5
- name: "source_statistical_classification_5"
field:
element: text
label: "Statistical classification"
translation_key: metadata_fields.source_statistical_classification_1
scope: source_5
- name: "source_contact_5"
field:
element: text
label: "Contact details"
translation_key: metadata_fields.source_contact_1
scope: source_5
- name: "source_other_info_5"
field:
element: textarea
label: "Other information"
translation_key: metadata_fields.source_other_info_1
scope: source_5
## Source 6
- name: source_active_6
field:
element: checkbox
label: Source 6 active
translation_key: metadata_fields.source_active_1
help: Whether or not to display this source
value: false
- name: source_organisation_6
field:
element: text
label: "Organisation"
translation_key: metadata_fields.source_organisation_1
scope: source_6
- name: "source_periodicity_6"
field:
element: text
label: "Periodicity"
translation_key: metadata_fields.source_periodicity_1
scope: source_6
- name: "source_earliest_available_6"
field:
element: text
label: "Earliest available data"
translation_key: metadata_fields.source_earliest_available_1
scope: source_6
- name: "source_geographical_coverage_6"
field:
element: text
label: "Geographical coverage"
translation_key: metadata_fields.source_geographical_coverage_1
scope: source_6
- name: "source_url_6"
field:
element: text
label: "Link to data source"
translation_key: metadata_fields.source_url_1
scope: source_6
- name: "source_url_text_6"
field:
element: text
label: "Link to data source text"
translation_key: metadata_fields.source_url_text_1
value: "Link to source"
scope: source_6
- name: "source_release_date_6"
field:
element: text
label: "Release date"
translation_key: metadata_fields.source_release_date_1
help: "A date in YYYY-MM-DD format"
placeholder: "YYYY-MM-DD"
scope: source_6
- name: "source_next_release_6"
field:
element: text
label: "Next release"
translation_key: metadata_fields.source_next_release_1
help: "A date in YYYY-MM-DD format"
placeholder: "YYYY-MM-DD"
scope: source_6
- name: "source_statistical_classification_6"
field:
element: text
label: "Statistical classification"
translation_key: metadata_fields.source_statistical_classification_1
scope: source_6
- name: "source_contact_6"
field:
element: text
label: "Contact details"
translation_key: metadata_fields.source_contact_1
scope: source_6
- name: "source_other_info_6"
field:
element: textarea
label: "Other information"
translation_key: metadata_fields.source_other_info_1
scope: source_6
######### Other fields #########
- name: un_designated_tier
field:
element: text
label: UN designated tier
translation_key: metadata_fields.un_designated_tier
scope: global
ignore: ['/scripts', '/.github']