-
Notifications
You must be signed in to change notification settings - Fork 0
/
hxl-knowledge-base.json
1006 lines (1004 loc) · 40 KB
/
hxl-knowledge-base.json
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
{
"top": {
"question": "Que tipo de dados você tem na coluna?",
"question_en": "What kind of data do you have in the column?",
"options": [
{
"text": "Número de pessoas (por exemplo, censo ou visão geral de necessidades)",
"text_en": "Numbers of people (e.g. census or needs overview)",
"dest": "people_tags"
},
{
"text": "Locais",
"text_en": "Places",
"dest": "place_tags"
},
{
"text": "Resultados de pesquisa ou avaliação de necessidades",
"text_en": "Survey or assessment results",
"dest": "survey_tags"
},
{
"text": "Organizações humanitárias",
"text_en": "Humanitarian organisations",
"hashtag": "org",
"dest": "org_atts"
},
{
"text": "Resposta humanitária (atividades, grupos, etc.)",
"text_en": "Humanitarian response (activities, clusters, etc.)",
"dest": "response_tags"
},
{
"text": "Crises ou eventos (por exemplo, incidentes de segurança)",
"text_en": "Crises or events (e.g. security incidents)",
"dest": "event_tags"
},
{
"text": "Datas",
"text_en": "Dates",
"hashtag": "date",
"dest": "date_atts"
},
{
"text": "Dinheiro ou informações financeiras",
"text_en": "Cash or financial information",
"dest": "cash_tags"
},
{
"text": "Indicadores humanitários gerais",
"text_en": "General humanitarian indicators",
"hashtag": "indicator",
"dest": "indicator_shape"
},
{
"text": "Metadados que descrevem a linha de dados (por exemplo, origem)",
"text_en": "Metadata describing the data row (e.g. source)",
"hashtag": "meta",
"dest": "meta_atts"
},
{
"text": "Nenhuma das acima",
"text_en": "None of the above",
"hashtag": "x_???",
"note": "As hashtags centrais do Padrão HXL não tem como atender todo tipo mais especializado de dados humanitários. Se você não encontrar nenhuma correspondência para o que precisa marcar, poderá criar uma hashtag personalizada começando com \"#x_\", por exemplo, \"#x_virulencia\" (favor não usar acentos e cedilha ç nas hashtags).",
"note_en": "The core HXL hashtags cannot cover every specialised type of humanitarian data. If you cannot find any match for what you need to tag, you are free to create a custom hashtag beginning with \"#x_\", e.g. \"#x_virulence\"."
}
]
},
"indicator_shape": {
"question": "How is your overall dataset shaped?",
"options": [
{
"text": "It is wide, with multiple columns of indicator values in each row",
"attribute": "MY_CUSTOM_ATTRIBUTE",
"dest": "datatype_atts"
},
{
"text": "It is narrow and long, with one indicator value in each row, together with the indicator's name or code",
"dest": "indicator_atts"
}
],
"pre-text": "Note that if your dataset contains many columns of indicators, you do not have to tag all of them. Add hashtags only to the columns that people might want to be able to work on using HXL-aware tools."
},
"people_tags": {
"question": "Qual é o contexto humanitário?",
"question_en": "What is the humanitarian context?",
"options": [
{
"text": "População geral (incluindo aquelas não afetadas pela crise)",
"text_en": "General population (including those not affected by the crisis)",
"dest": "gender_atts",
"hashtag": "population"
},
{
"text": "Todos os indivíduos afetados pela crise",
"text_en": "All individuals affected by the crisis",
"hashtag": "affected",
"attribute": "ind",
"dest": "impact_atts"
},
{
"text": "Todas as famílias/moradias afetadas pela crise",
"text_en": "All households affected by the crisis",
"hashtag": "affected",
"attribute": "hh",
"dest": "impact_atts"
},
{
"text": "Todos os indivíduos que precisam de assistência humanitária",
"text_en": "All individuals in need of humanitarian assistance",
"hashtag": "inneed",
"attribute": "ind",
"dest": "impact_atts"
},
{
"text": "Todas as famílias/moradias que precisam de assistência humanitária",
"text_en": "All households in need of humanitarian assistance",
"hashtag": "inneed",
"attribute": "hh",
"dest": "impact_atts"
},
{
"text": "Todos os indivíduos que são foco de assistência humanitária",
"text_en": "All individuals targeted for humanitarian assistance",
"hashtag": "targeted",
"attribute": "ind",
"dest": "impact_atts"
},
{
"text": "Todas as famílias/moradias que são foco de assistência humanitária",
"text_en": "All households targeted for humanitarian assistance",
"hashtag": "targeted",
"attribute": "hh",
"dest": "impact_atts"
},
{
"text": "Somente indivíduos que, de fato, são alcançados pela assistência humanitária",
"text_en": "Only individuals actually reached with humanitarian assistance",
"hashtag": "reached",
"attribute": "ind",
"dest": "impact_atts"
},
{
"text": "Somente famílias/moradias que, de fato, são alcançadas pela assistência humanitária",
"text_en": "Only households actually reached with humanitarian assistance",
"hashtag": "reached",
"attribute": "hh",
"dest": "impact_atts"
}
]
},
"survey_tags": {
"question": "Que tipo de de pesquisa/avaliação de necessidades?",
"question_en": "What kind of survey/assessment information?",
"options": [
{
"text": "Individual respondees (e.g. people, households, or merchants)",
"hashtag": "respondee",
"dest": "code_atts"
},
{
"text": "Capacities (number of beds, maximum cargo, etc)",
"hashtag": "capacity",
"dest": "code_atts"
},
{
"text": "Needs (shelter, communications, etc)",
"hashtag": "need",
"dest": "code_atts"
},
{
"text": "Services (healthcare, counselling, etc)",
"hashtag": "service",
"dest": "code_atts"
},
{
"text": "Items (food, shelter kits, etc)",
"hashtag": "item",
"dest": "code_atts"
},
{
"text": "Some other kind of indicator",
"hashtag": "indicator",
"attribute": "MY_CUSTOM_ATTRIBUTE",
"dest": "datatype_atts"
}
],
"post-text": "CAUTION: survey results are often sensitive data."
},
"place_tags": {
"question": "Que tipo de lugares?",
"options": [
{
"text": "Subdivisões administrativas (região, país, província, distrito, etc.)",
"text_en": "Administrative subdivisions (region, country, province, district, etc)",
"dest": "admin_tags"
},
{
"text": "Latitude e/ou longitude",
"text_en": "Latitude and/or longitude",
"hashtag": "geo",
"dest": "geo_atts"
},
{
"text": "Locais específicos (por exemplo, acampamentos) ou tipos mistos de locais",
"text_en": "Specific locations (e.g. camps) or mixed types of locations",
"hashtag": "loc",
"dest": "loc_atts"
}
]
},
"response_tags": {
"question": "What kind of response information?",
"options": [
{
"text": "A cluster or sector",
"hashtag": "sector",
"dest": "sector_tags"
},
{
"text": "A programme, project, or activity",
"hashtag": "activity",
"dest": "id_atts"
},
{
"text": "A longer description of an activity, project, etc",
"hashtag": "description",
"dest": "lang_atts"
},
{
"text": "The output or outcome of a humanitarian activity",
"hashtag": "output",
"dest": "code_atts"
},
{
"text": "The intended beneficiary/ies",
"hashtag": "beneficiary",
"dest": "code_atts"
},
{
"text": "The current status of an activity, project, etc.",
"hashtag": "status",
"dest": "code_atts"
},
{
"text": "Contact information",
"hashtag": "contact",
"dest": "contact_atts"
}
]
},
"event_tags": {
"question": "Que tipo de crise ou evento?",
"question_en": "What kind of crisis or event?",
"options": [
{
"text": "Uma ampla crise/emergência humanitária",
"text_en": "A broad humanitarian crisis/emergency",
"hashtag": "crisis",
"dest": "code_atts"
},
{
"text": "Um incidente de evento específico",
"text_en": "A specific event incident",
"hashtag": "event",
"dest": "id_atts"
},
{
"text": "Informações sobre um grupo não-humanitário envolvido em um incidente",
"text_en": "Information about a non-humanitarian group involved an incident",
"hashtag": "group",
"dest": "id_atts"
},
{
"text": "Barreiras ou restrições de acesso",
"text_en": "Barriers or restrictions on access",
"hashtag": "access",
"dest": "code_atts"
},
{
"text": "A causa de um incidente",
"text_en": "The cause of an incident",
"hashtag": "cause",
"dest": "code_atts"
},
{
"text": "A frequência de um incidente",
"text_en": "The frequency of an incident",
"hashtag": "frequency",
"dest": "code_atts"
},
{
"text": "A gravidade de um incidente",
"text_en": "The severity of an incident",
"hashtag": "severity",
"dest": "code_atts"
},
{
"text": "O impacto de um incidente",
"text_en": "An impact of an incident",
"hashtag": "impact",
"dest": "code_atts"
}
]
},
"admin_tags": {
"question": "What administrative level?",
"options": [
{
"text": "A multi-country region, like West Africa or the Caribbean",
"hashtag": "region",
"dest": "movement_atts"
},
{
"text": "A country or country-like (admin0) entity",
"hashtag": "country",
"dest": "movement_atts"
},
{
"text": "A top-level (admin1) subdivision",
"hashtag": "adm1",
"dest": "movement_atts"
},
{
"text": "A second-level (admin2) subdivision",
"hashtag": "adm2",
"dest": "movement_atts"
},
{
"text": "A third-level (admin3) subdivision",
"hashtag": "adm3",
"dest": "movement_atts"
},
{
"text": "A fourth-level (admin4) subdivision",
"hashtag": "adm4",
"dest": "movement_atts"
},
{
"text": "A fifth-level (admin5) subdivision",
"hashtag": "adm5",
"dest": "movement_atts"
}
]
},
"sector_tags": {
"question": "Que tipo de setor?",
"question_en": "What kind of sector?",
"options": [
{
"text": "Um cluster humanitário",
"text_en": "A humanitarian cluster",
"hashtag": "sector",
"attribute": "cluster",
"dest": "code_atts"
},
{
"text": "Outro tipo de setor de nível superior",
"text_en": "Another kind of top-level sector",
"hashtag": "sector",
"dest": "code_atts"
},
{
"text": "Um subsetor",
"text_en": "A subsector",
"hashtag": "subsector",
"dest": "code_atts"
}
]
},
"cash_tags": {
"question": "Que tipo de dinheiro/informação financeira?",
"question_en": "What kind of cash/finance information?",
"options": [
{
"text": "Uma quantidade de dinheiro",
"text_en": "An amount of money",
"hashtag": "value",
"dest": "value_atts"
},
{
"text": "Uma moeda monetária",
"text_en": "A monetary currency",
"hashtag": "currency",
"attribute": "code",
"note": "O conteúdo preferido é códigos de moeda ISO 4217, como \"CFA\" para o franco da África Ocidental.",
"note_en": "Preferred content is ISO 4217 currency codes, such as \"CFA\" for the West African franc."
},
{
"text": "Uma modalidade/método de transferência de renda",
"text_en": "A modality/method of cash transfer",
"hashtag": "modality",
"dest": "code_atts"
},
{
"text": "O canal pelo qual o dinheiro é transferido",
"text_en": "The channel through which money is transferred",
"hashtag": "channel",
"dest": "code_atts"
}
]
},
"impact_atts": {
"question": "Qual é a situação humanitária?",
"question_en": "What is the humanitarian situation?",
"options": [
{
"text": "Não, a situação não é especificada",
"text_en": "No, the situation is unspecified",
"dest": "gender_atts"
},
{
"text": "Pessoas mortas",
"text_en": "People killed",
"dest": "gender_atts",
"attribute": "killed",
"exclude": ["inneed", "targeted", "reached"]
},
{
"text": "Pessoas feridas",
"text_en": "People injured",
"dest": "gender_atts",
"attribute": "injured"
},
{
"text": "Pessoas sequestradas",
"text_en": "People abducted",
"dest": "gender_atts",
"attribute": "abducted"
},
{
"text": "Todas as pessoas deslocadas (internas ou externas)",
"text_en": "All displaced people (internal or external)",
"dest": "gender_atts",
"attribute": "displaced"
},
{
"text": "Deslocados internos / refugiados internos (em inglês: internally displaced people, IDP)",
"text_en": "Internally-displaced people (IDPs)",
"dest": "gender_atts",
"attribute": "idps"
},
{
"text": "Pessoas refugiadas",
"text_en": "Refugees",
"text_comment": "Usando 'Pessoas Redugiadas' pois é um genero neutro",
"dest": "gender_atts",
"attribute": "refugees"
}
]
},
"gender_atts": {
"question": "Se pertinente, qual gênero específico?",
"question_en": "What is the gender specific gender?",
"question_comment": "Talvez o original em ingles precise de melhorias na forma escrita",
"options": [
{
"text": "Todos os gêneros estão incluídos",
"text_en": "All genders are included",
"dest": "age_atts"
},
{
"text": "Somente mulheres",
"text_en": "Female people only",
"dest": "age_atts",
"attribute": "f"
},
{
"text": "Somente homens",
"text_en": "Male people only",
"dest": "age_atts",
"attribute": "m"
},
{
"text": "Somente pessoas de gênero não-binário",
"text_en": "Non-gender-binary people only",
"dest": "age_atts",
"attribute": "i"
}
]
},
"age_atts": {
"question": "Os números se aplicam apenas a uma faixa etária específica?",
"question_en": "Do the numbers apply only to a specific age group?",
"options": [
{
"text": "Todas as idades estão incluídas",
"text_en": "All ages are included",
"note": "Os valores devem sempre ser números.",
"note_en": "The values should always be numbers"
},
{
"text": "Qualquer criança (pode incluir bebês ou adolescentes)",
"text_en": "Any children (might include infants or adolescents)",
"attribute": "children",
"note": "Os valores devem sempre ser números. Você também pode adicionar um atributo personalizado como +age_5_12 (de 5 a 12 anos, inclusive) para fornecer um intervalo específico.",
"note_en": "The values should always be numbers. You may also add a custom attribute like +age_5_12 to give a specific range."
},
{
"text": "Somente bebês",
"text_en": "Infants only",
"attribute": "infants",
"note": "Os valores devem sempre ser números. Você também pode adicionar um atributo personalizado como +age_0_2 (de 0 a 2 anos, inclusive) para fornecer um intervalo específico.",
"note_en": "The values should always be numbers. You may also add a custom attribute like +age_0_2 to give a specific range."
},
{
"text": "Apenas adolescentes",
"text_en": "Adolescents only",
"attribute": "adolescents",
"note": "Os valores devem sempre ser números. Você também pode adicionar um atributo personalizado como +age_12_17 (de 12 a 17 anos, inclusive) para fornecer um intervalo específico.",
"note_en": "The values should always be numbers. You may also add a custom attribute like +age_12_17 to give a specific range."
},
{
"text": "Qualquer adulto (pode incluir adolescentes ou idosos)",
"text_en": "Any adults (might include adolescents or elderly people",
"text_comment": "Faltou um ) no original em ingles",
"attribute": "adults",
"note": "Os valores devem sempre ser números. Você também pode adicionar um atributo personalizado como +age_18_64 (de 18 a 64 anos, inclusive) para fornecer um intervalo específico.",
"note_en": "The values should always be numbers. You may also add a custom attribute like +age_18_64 to give a specific range."
},
{
"text": "Apenas idosos",
"text_en": "Elderly people only",
"attribute": "elderly",
"note": "Os valores devem sempre ser números. Você também pode adicionar um atributo personalizado como +age_65_ (igual ou maior que 65 anos) para fornecer um intervalo específico.",
"note_en": "The values should always be numbers. You may also add a custom attribute like +age_65_ to give a specific range."
}
]
},
"geo_atts": {
"question": "Que tipo de informação geográfica você deseja marcar?",
"question_en": "What kind of geographic information do you want to tag?",
"options": [
{
"text": "Apenas latitude",
"text_en": "Latitude only",
"attribute": "lat",
"note": "O formato preferido para latitude é um valor decimal, i.e. \"8.5\" em vez de \"8 30.0N\".",
"note_en": "The preferred format for latitude is a decimal value, e.g. \"8.5\" instead of \"8 30.0N\"."
},
{
"text": "Apenas longitude",
"text_en": "Longitude only",
"attribute": "lon",
"note": "O formato preferido para longitude é um valor decimal, i.e. \"-75.5\" em vez de \"75 30.0W\".",
"note_en": "The preferred format for longitude is a decimal value, e.g. \"-75.5\" instead of \"75 30.0W\"."
},
{
"text": "Latitude e longitude juntas em um campo",
"text_en": "Latitude and longitude together in one field",
"attribute": "latlon",
"note": "O formato preferido é a latitude decimal separada por uma vírgula da longitude decimal, i.e. \"8.5, -75.5\".",
"note_en": "The preferred format is the decimal latitude separated by a comma from the decimal longitude, e.g. \"8.5, -75.5\"."
},
{
"text": "Elevação acima do nível do mar",
"text_en": "Elevation above sea level",
"attribute": "elev",
"note": "A unidade preferida é metros acima do nível do mar",
"note_en": "The preferred unit is metres above sea level."
}
]
},
"movement_atts": {
"question": "Is this location part of a population movement?",
"options": [
{
"text": "No, the dataset is not about population movements",
"dest": "adm_atts"
},
{
"text": "Yes, it is the origin of a population movement",
"attribute": "origin",
"dest": "adm_atts"
},
{
"text": "Yes, it is the destination of a population movement",
"attribute": "dest",
"dest": "adm_atts"
},
{
"text": "Yes, it is a location of asylum",
"attribute": "asylum",
"dest": "adm_atts"
}
]
},
"loc_atts": {
"question": "Que tipo de localizações são elas?",
"question_en": "What kind of locations are they?",
"options": [
{
"text": "Acampamentos",
"text_en": "Camps",
"attribute": "camp",
"dest": "movement_atts"
},
{
"text": "Instalações (saúde, educação, etc)",
"text_en": "Facilities (health, education, etc)",
"attribute": "facility",
"dest": "adm_atts"
},
{
"text": "Local de comércio",
"text_en": "Marketplaces",
"attribute": "market",
"dest": "adm_atts"
},
{
"text": "Nenhuma das acima",
"text_en": "None of the above",
"dest": "movement_atts"
}
]
},
"id_atts": {
"question": "Que tipo de informação você deseja fornecer?",
"question_en": "What kind of information do you want to provide?",
"options": [
{
"text": "Um nome legível por humanos",
"text_en": "A human-readable name",
"attribute": "name",
"dest": "lang_atts"
},
{
"text": "Um identificador exclusivo",
"text_en": "A unique identifier",
"attribute": "id"
},
{
"text": "Um tipo e/ou uma classificação",
"text_en": "A type/classification",
"attribute": "type"
}
]
},
"code_atts": {
"question": "Que tipo de informação você deseja fornecer?",
"question_en": "What kind of information do you want to provide?",
"options": [
{
"text": "Um nome legível por humanos",
"text_en": "A human-readable name",
"attribute": "name",
"dest": "lang_atts"
},
{
"text": "Um código de máquina exclusivo",
"text_en": "A unique machine code",
"attribute": "code"
},
{
"text": "Um tipo e/ou uma classificação",
"text_en": "A type/classification",
"attribute": "type",
"exclude": ["status"]
}
]
},
"date_atts": {
"question": "Que tipo de data é esta?",
"question_en": "What kind of a date is this?",
"options": [
{
"text": "Não especificado",
"text_en": "Unspecified",
"note": "O formato de data preferido é YYYY-MM-DD, i.e. \"2019-04-01\". Você também pode abreviar para apenas o mês (\"2019-04\") ou apenas o ano (\"2019\").",
"note_en": "The preferred date format is YYYY-MM-DD, e.g. \"2019-04-01\". You may also abbreviate to just the month (\"2019-04\") or just the year (\"2019\")."
},
{
"text": "Uma data de início",
"text_en": "A start date",
"attribute": "start",
"note": "O formato de data preferido é YYYY-MM-DD, i.e. \"2019-04-01\". Você também pode abreviar para apenas o mês (\"2019-04\") ou apenas o ano (\"2019\").",
"note_en": "The preferred date format is YYYY-MM-DD, e.g. \"2019-04-01\". You may also abbreviate to just the month (\"2019-04\") or just the year (\"2019\")."
},
{
"text": "Uma data final",
"text_en": "An end date",
"attribute": "end",
"note": "O formato de data preferido é YYYY-MM-DD, i.e. \"2019-04-01\". Você também pode abreviar para apenas o mês (\"2019-04\") ou apenas o ano (\"2019\").",
"note_en": "The preferred date format is YYYY-MM-DD, e.g. \"2019-04-01\". You may also abbreviate to just the month (\"2019-04\") or just the year (\"2019\")."
},
{
"text": "Uma data específica em que algo aconteceu",
"text_en": "A specific date when something happened",
"attribute": "occurred",
"note": "O formato de data preferido é YYYY-MM-DD, i.e. \"2019-04-01\". Você também pode abreviar para apenas o mês (\"2019-04\") ou apenas o ano (\"2019\").",
"note_en": "The preferred date format is YYYY-MM-DD, e.g. \"2019-04-01\". You may also abbreviate to just the month (\"2019-04\") or just the year (\"2019\")."
},
{
"text": "Uma data específica em que algo foi relatado",
"text_en": "A specific date when something was reported",
"attribute": "reported",
"note": "O formato de data preferido é YYYY-MM-DD, i.e. \"2019-04-01\". Você também pode abreviar para apenas o mês (\"2019-04\") ou apenas o ano (\"2019\").",
"note_en": "The preferred date format is YYYY-MM-DD, e.g. \"2019-04-01\". You may also abbreviate to just the month (\"2019-04\") or just the year (\"2019\")."
}
]
},
"adm_atts": {
"question": "Como é descrita a localização?",
"question_en": "How is the location described?",
"options": [
{
"text": "Pelo seu nome",
"text_en": "By its name",
"attribute": "name",
"dest": "lang_atts"
},
{
"text": "Por um código",
"text_en": "By a code",
"attribute": "code",
"dest": "geocode_atts"
}
]
},
"lang_atts": {
"question": "Deseja especificar o idioma do conteúdo?",
"question_en": "Do you want to identify the language of the content?",
"options": [
{
"text": "Não, quero deixar não especificado",
"text_en": "No, I want to leave it unspecified"
},
{
"text": "Sim, o texto está em Português",
"attribute": "i_pt"
},
{
"text": "Sim, o texto está em Inglês",
"text_en": "Yes, the text is in English",
"attribute": "i_en"
},
{
"text": "Sim, o texto está em Frances",
"text_en": "Yes, the text is in French",
"attribute": "i_fr"
},
{
"text": "Sim, o texto está em Árabe",
"text_en": "Yes, the text is in Arabic",
"attribute": "i_ar"
},
{
"text": "Sim, o texto está em Espanhol",
"text_en": "Yes, the text is in Spanish",
"attribute": "i_es"
},
{
"text": "Sim, o texto está em Russo",
"text_en": "Yes, the text is in Russian",
"attribute": "i_ru"
},
{
"text": "Sim, o texto está em Suaíli",
"text_en": "Yes, the text is in Swahili",
"attribute": "i_sw"
},
{
"text": "O texto está em um idioma não listado aqui",
"text_en": "The text is in a language not listed here",
"attribute": "i_xx",
"note": "Substitua o \"xx\" em +i_xx pelo código de duas letras do padrão ISO 639 para o idioma desejado, por exemplo. +i_tl para língua tagalo.",
"note_en": "Replace the \"xx\" in +i_xx with the two-letter ISO 639 code for your language, e.g. +i_tl for Tagalog."
}
]
},
"geocode_atts": {
"question": "Deseja indicar qual lista de códigos você está usando?",
"question_en": "Do you want to indicate what code list you are using?",
"pre-text": "Assumimos ISO3 para países e P-Codes para subdivisões administrativas se não forem especificados.",
"pre-text_en": "We assume ISO3 for countries and P-codes for administrative subdivisions if unspecified.",
"options": [
{
"text": "No, leave it unspecified",
"text_en": "No, leave it unspecified"
},
{
"text": "Sim, deixar explícito que são códigos de país ISO3 (como \"SYR\" para Síria)",
"text_en": "Yes, specify ISO3 country codes (like \"SYR\" for Syria)",
"attribute": "v_iso3",
"include": ["country"]
},
{
"text": "Sim, deixar explícito que são códigos de país ISO2 (como \"SY\" para Síria)",
"text_en": "Yes, specify ISO2 country codes (like \"SY\" for Syria)",
"attribute": "v_iso2",
"include": ["country"]
},
{
"text": "Sim, deixar explícito que são P-codes",
"text_en": "Yes, specify P-codes",
"attribute": "v_pcodes",
"exclude": ["region", "country"]
}
]
},
"indicator_atts": {
"question": "What do these values tell about the indicator (one indicator per row)?",
"options": [
{
"text": "The indicator's name",
"attribute": "name",
"dest": "lang_atts"
},
{
"text": "The indicator's identifier or code",
"attribute": "code"
},
{
"text": "The indicators type/classification",
"attribute": "type"
},
{
"text": "The indicator's value",
"attribute": "value",
"dest": "datatype_atts"
}
]
},
"datatype_atts": {
"question": "Qual é o tipo de dados mais específico que se aplica a todos os valores de indicadores?",
"question_en": "What is the most-specific data type that applies to every indicator value?",
"options": [
{
"text": "Tipos mistos, ou qualquer tipo de texto",
"text_en": "Mixed types, or all text"
},
{
"text": "Um valor booleano (ao estilo true/false, yes/no, sim/não)",
"text_en": "A boolean (true/false or yes/no-style) value",
"attribute": "bool"
},
{
"text": "Uma porcentagem",
"text_en": "A percentage",
"attribute": "pct"
},
{
"text": "Qualquer outro valor numérico",
"text_en": "Any other numeric value",
"attribute": "num"
},
{
"text": "Um link da web",
"text_en": "A web link",
"attribute": "url"
}
]
},
"org_atts": {
"question": "Are all the organisations tagged playing a specific role?",
"options": [
{
"text": "No, there are different roles mixed in the column",
"dest": "id_atts"
},
{
"text": "Yes, they are all donor organisations",
"attribute": "funding",
"dest": "id_atts"
},
{
"text": "Yes, they are all programming/extending organisations",
"attribute": "prog",
"dest": "id_atts"
},
{
"text": "Yes, they are all implementing partners",
"attribute": "impl",
"dest": "id_atts"
},
{
"text": "Yes, they are all organisations making a report",
"attribute": "reporting",
"dest": "id_atts"
}
]
},
"value_atts": {
"question": "What type of monetary value is this?",
"options": [
{
"text": "Not specified",
"dest": "currency_atts"
},
{
"text": "A cash transfer",
"attribute": "transfer",
"dest": "currency_atts"
},
{
"text": "An incoming funding commitment",
"attribute": "incoming",
"dest": "currency_atts"
},
{
"text": "An outgoing funding commitment",
"attribute": "outgoing",
"dest": "currency_atts"
},
{
"text": "A budget",
"attribute": "budget",
"dest": "currency_atts"
},
{
"text": "A disbursement",
"attribute": "disbursement",
"dest": "currency_atts"
},
{
"text": "An expenditure",
"attribute": "expenditure",
"dest": "currency_atts"
}
]
},
"currency_atts": {
"question": "What currency do the monetary values represent?",
"options": [
{
"text": "A mixture of different currencies",
"note": "there should be another column tagged with #currency"
},
{
"text": "Us dollars",
"attribute": "usd"
},
{
"text": "Euros",
"attribute": "eur"
},
{
"text": "Pounds Sterling",
"attribute": "gbp"
},
{
"text": "A currency not listed here",
"attribute": "xxx",
"note": "Replace +xxx with your currency code, e.g. +caf for West African francs"
}
]
},
"contact_atts": {
"question": "Que tipo de informação de contato?",
"question_en": "What kind of contact information?",
"options": [
{
"text": "Nome da pessoa de contato",
"text_en": "Name of a contact person",
"attribute": "name"
},
{
"text": "Endereço de e-mail",
"text_en": "Email address",
"attribute": "email"
},
{
"text": "Número de telefone",
"text_en": "Phone number",
"attribute": "phone"
},
{
"text": "Web site",
"text_en": "Web site",
"attribute": "url"
}
]
},
"meta_atts": {
"question": "Qual tipo de metadados da linha?",
"question_en": "What kind of row metadata?",
"options": [
{
"text": "Um identificador exclusivo para o registro/linha",
"text_en": "A unique identifier for the record/row",
"attribute": "id",
"note": "Supõe-se que seja exclusivo apenas dentro do seu conjunto de dados, não precisa ser exclusivo globalmente.",
"note_en": "Assumed to be unique only within the dataset, not globally."
},
{
"text": "A fonte dos dados",
"text_en": "The source of the data",
"attribute": "source"
},
{
"text": "A URL para os dados na linha",
"text_en": "A URL for the data in the row",
"attribute": "url"
},
{
"text": "Metadados não listados acima",
"text_en": "Metadata not listed above",
"attribute": "XXX",
"note": "Você pode inventar qualquer atributo personalizado necessário para descrever seus metadados, por exemplo +certeza",