-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilters.json
3841 lines (3841 loc) · 161 KB
/
filters.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
[
{
"field": "dataset_version",
"label": "Dataset Version",
"type": "select",
"description": "\nA number indicating the IATI specification version in use.\nThis is mandatory and must be a valid version.\n",
"codelist_name": "Version",
"codelist_condition": "",
"attribute_name": "version",
"path": "iati-activities/@version",
"xsd_type": "xsd:string",
"solr_required": "true",
"solr_multivalued": "false"
},
{
"field": "dataset_generated_datetime",
"label": "Dataset Generated Datetime",
"type": "date",
"description": "\nA date/time stamp for when this file was generated. This\nis not necessarily the last-updated date for the\nindividual activity records in it. Use of this attribute\nis highly recommended, to allow recipients to know when a\nfile has been updated.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "generated-datetime",
"path": "iati-activities/@generated-datetime",
"xsd_type": "xsd:dateTime",
"solr_required": "false",
"solr_multivalued": "false"
},
{
"field": "dataset_linked_data_default",
"label": "Dataset Linked Data Default",
"type": "text",
"description": "\nIf a publisher chooses to publish linked data about their\nIATI activities then allowing them to declare where this\ndata is published would support discovery of it, and any\nadditional information they may choose to publish as\nLinked Data alongside it.\n\nThis attribute is a URI path upon which an activity\nidentifier can be appended to get a differentiable URI\nfor any activity contained within a file.\n\nWhere a publisher declares using one of these properties\nthat authoritative linked data is accessible for an\nactivity then consuming applications that are generating\nLinked Data from an IATI XML file should assert an\nowl:sameAs relationship to the relevant URI.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "linked-data-default",
"path": "iati-activities/@linked-data-default",
"xsd_type": "xsd:anyURI",
"solr_required": "false",
"solr_multivalued": "false"
},
{
"field": "last_updated_datetime",
"label": "Last Updated Datetime",
"type": "date",
"description": "\nThe last date/time that the data for this specific\nactivity was updated. This date must change whenever the\nvalue of any field changes.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "last-updated-datetime",
"path": "iati-activities/iati-activity/@last-updated-datetime",
"xsd_type": "xsd:dateTime",
"solr_required": "false",
"solr_multivalued": "false"
},
{
"field": "xml_lang",
"label": "Xml Lang",
"type": "select",
"description": "\nA code specifying the default language of text in this activity. It is recommended that wherever possible only codes from ISO 639-1 are used. If this is not declared then the xml:lang attribute MUST be specified for each narrative element.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "false"
},
{
"field": "default_currency",
"label": "Default Currency",
"type": "select",
"description": "\nDefault ISO 4217 alphabetic currency code for all\nfinancial values in this activity report. If this is not\ndeclared then the currency attribute MUST be specified for\nall monetary values.\n",
"codelist_name": "Currency",
"codelist_condition": "",
"attribute_name": "default-currency",
"path": "iati-activities/iati-activity/@default-currency",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "false"
},
{
"field": "humanitarian",
"label": "Humanitarian",
"type": "boolean",
"description": "\nA process flag to indicate that this activity relates entirely\nor partially to humanitarian aid.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "humanitarian",
"path": "iati-activities/iati-activity/@humanitarian",
"xsd_type": "xsd:boolean",
"solr_required": "false",
"solr_multivalued": "false"
},
{
"field": "hierarchy",
"label": "Hierarchy",
"type": "integer",
"description": "\nThe hierarchical level within the reporting organisation's\nsubdivision of its units of aid. (eg activity = 1;\nsub-activity = 2; sub-sub-activity = 3). If hierarchy is\nnot reported then 1 is assumed. If multiple levels are\nreported then, to avoid double counting, financial\ntransactions should only be reported at the lowest\nhierarchical level.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "hierarchy",
"path": "iati-activities/iati-activity/@hierarchy",
"xsd_type": "xsd:int",
"solr_required": "false",
"solr_multivalued": "false"
},
{
"field": "linked_data_uri",
"label": "Linked Data Uri",
"type": "text",
"description": "\nA Linked Data URI for a given activity (overrides\niati-activities/\\@linked-data-default if set)\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "linked-data-uri",
"path": "iati-activities/iati-activity/@linked-data-uri",
"xsd_type": "xsd:anyURI",
"solr_required": "false",
"solr_multivalued": "false"
},
{
"field": "budget_not_provided",
"label": "Budget Not Provided",
"type": "select",
"description": "\nA code indicating the reason why this activity does not contain any iati-activity/budget elements. The attribute MUST only be used when no budget elements are present.\n",
"codelist_name": "BudgetNotProvided",
"codelist_condition": "",
"attribute_name": "budget-not-provided",
"path": "iati-activities/iati-activity/@budget-not-provided",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "false"
},
{
"field": "iati_identifier",
"label": "Iati Identifier",
"type": "text",
"description": "\nA globally unique identifier for the activity.\n\nThis MUST be prefixed with EITHER the current IATI\norganisation identifier for the reporting organisation\n(reporting-org/\\@ref) OR a previous identifier reported in\nother-identifier, and suffixed with the organisation\u2019s own\nactivity identifier. The prefix and the suffix should be\nseparated by a hyphen \"-\".\n\nOnce an activity has been reported to IATI its identifier MUST\nNOT be changed in subsequent updates.\n",
"name": "iati-identifier",
"path": "iati-activities/iati-activity/iati-identifier",
"xsd_type": "",
"solr_required": "true",
"solr_multivalued": "false"
},
{
"field": "reporting_org_ref",
"label": "Reporting Org Ref",
"type": "text",
"description": "\nMachine-readable identification string for the organisation issuing the report. Must be in the format {RegistrationAgency}-{RegistrationNumber} where {RegistrationAgency} is a valid code in the Organisation Registration Agency code list and {RegistrationNumber} is a valid identifier issued by the {RegistrationAgency}.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "ref",
"path": "iati-activities/iati-activity/reporting-org/@ref",
"xsd_type": "xsd:string",
"solr_required": "true",
"solr_multivalued": "false"
},
{
"field": "reporting_org_type",
"label": "Reporting Org Type",
"type": "select",
"description": "\nThe type of organisation issuing the report. See IATI codelist for values.\n",
"codelist_name": "OrganisationType",
"codelist_condition": "",
"attribute_name": "type",
"path": "iati-activities/iati-activity/reporting-org/@type",
"xsd_type": "xsd:string",
"solr_required": "true",
"solr_multivalued": "false"
},
{
"field": "reporting_org_secondary_reporter",
"label": "Reporting Org Secondary Reporter",
"type": "boolean",
"description": "\nA flag indicating that the reporting organisation of this activity is acting as a secondary reporter. A secondary reporter is one that reproduces data on the activities of an organisation for which it is not directly responsible. This does not include a publisher officially assigned as a proxy to report on behalf of another.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "secondary-reporter",
"path": "iati-activities/iati-activity/reporting-org/@secondary-reporter",
"xsd_type": "xsd:boolean",
"solr_required": "false",
"solr_multivalued": "false"
},
{
"field": "reporting_org_narrative",
"label": "Reporting Org Narrative",
"type": "text",
"description": "\nThe name of the organisation. May be repeated for\ndifferent languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/reporting-org/narrative",
"xsd_type": "",
"solr_required": "true",
"solr_multivalued": "true"
},
{
"field": "reporting_org_narrative_xml_lang",
"label": "Reporting Org Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/reporting-org/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "title_narrative",
"label": "Title Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/title/narrative",
"xsd_type": "",
"solr_required": "true",
"solr_multivalued": "true"
},
{
"field": "title_narrative_xml_lang",
"label": "Title Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/title/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "description_type",
"label": "Description Type",
"type": "select",
"description": "\nThe type of description being provided. This is not\nrequired if only one general description of the activity\nis reported.\n",
"codelist_name": "DescriptionType",
"codelist_condition": "",
"attribute_name": "type",
"path": "iati-activities/iati-activity/description/@type",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "description_narrative",
"label": "Description Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/description/narrative",
"xsd_type": "",
"solr_required": "true",
"solr_multivalued": "true"
},
{
"field": "description_narrative_xml_lang",
"label": "Description Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/description/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "participating_org_ref",
"label": "Participating Org Ref",
"type": "text",
"description": "\nMachine-readable identification string for the organisation issuing the report. Must be in the format {RegistrationAgency}-{RegistrationNumber} where {RegistrationAgency} is a valid code in the Organisation Registration Agency code list and {RegistrationNumber} is a valid identifier issued by the {RegistrationAgency}. If this is not present then the narrative MUST contain the name of the organisation.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "ref",
"path": "iati-activities/iati-activity/participating-org/@ref",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "participating_org_type",
"label": "Participating Org Type",
"type": "select",
"description": "\nThe type of organisation issuing the report. See IATI codelist for values.\n",
"codelist_name": "OrganisationType",
"codelist_condition": "",
"attribute_name": "type",
"path": "iati-activities/iati-activity/participating-org/@type",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "participating_org_role",
"label": "Participating Org Role",
"type": "select",
"description": "\nAn IATI code describing the organisation's role in the activity (donor, agency, etc.).\n",
"codelist_name": "OrganisationRole",
"codelist_condition": "",
"attribute_name": "role",
"path": "iati-activities/iati-activity/participating-org/@role",
"xsd_type": "xsd:string",
"solr_required": "true",
"solr_multivalued": "true"
},
{
"field": "participating_org_activity_id",
"label": "Participating Org Activity Id",
"type": "text",
"description": "\nA valid activity identifier published by the participating organisation which points to the activity that it has published to IATI that describes its role in this activity.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "activity-id",
"path": "iati-activities/iati-activity/participating-org/@activity-id",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "participating_org_crs_channel_code",
"label": "Participating Org Crs Channel Code",
"type": "select",
"description": "\nUnder CRS++ Reporting Directives this code identifies the implementing agency. Codes ending in '00' are generic and are similar to the OrganisationType code.\n",
"codelist_name": "CRSChannelCode",
"codelist_condition": "",
"attribute_name": "crs-channel-code",
"path": "iati-activities/iati-activity/participating-org/@crs-channel-code",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "participating_org_narrative",
"label": "Participating Org Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/participating-org/narrative",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "participating_org_narrative_xml_lang",
"label": "Participating Org Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/participating-org/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "other_identifier_ref",
"label": "Other Identifier Ref",
"type": "text",
"description": "\nThe identifier you wish to report.\nThis can be used to report a number of different types\nof identifiers. See the OtherIdentifierType codelist\nfor details and options.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "ref",
"path": "iati-activities/iati-activity/other-identifier/@ref",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "other_identifier_type",
"label": "Other Identifier Type",
"type": "select",
"description": "\nThe type of identifier being reported, taken from\nthe OtherIdentifierType codelist.\n",
"codelist_name": "OtherIdentifierType",
"codelist_condition": "",
"attribute_name": "type",
"path": "iati-activities/iati-activity/other-identifier/@type",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "other_identifier_owner_org_ref",
"label": "Other Identifier Owner Org Ref",
"type": "text",
"description": "\nAn organisation identifier. This is NOT MANDATORY\nbut when used MUST contain a valid organisation\nidentifier.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "ref",
"path": "iati-activities/iati-activity/other-identifier/owner-org/@ref",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "other_identifier_owner_org_narrative",
"label": "Other Identifier Owner Org Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/other-identifier/owner-org/narrative",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "other_identifier_owner_org_narrative_xml_lang",
"label": "Other Identifier Owner Org Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/other-identifier/owner-org/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "activity_status_code",
"label": "Activity Status Code",
"type": "select",
"description": "\nAn IATI code defining the current status of the activity.\n",
"codelist_name": "ActivityStatus",
"codelist_condition": "",
"attribute_name": "code",
"path": "iati-activities/iati-activity/activity-status/@code",
"xsd_type": "xsd:string",
"solr_required": "true",
"solr_multivalued": "false"
},
{
"field": "activity_date_type",
"label": "Activity Date Type",
"type": "select",
"description": "\nAn IATI code defining the type of activity date being reported.\n",
"codelist_name": "ActivityDateType",
"codelist_condition": "",
"attribute_name": "type",
"path": "iati-activities/iati-activity/activity-date/@type",
"xsd_type": "xsd:string",
"solr_required": "true",
"solr_multivalued": "true"
},
{
"field": "activity_date_iso_date",
"label": "Activity Date Iso Date",
"type": "date",
"description": "\nThe planned and actual start and completion dates of the\nactivity. Start dates may reflect either the commencement of\nfunding, planning or physical activity. End dates should,\nwherever possible, reflect the ending of physical activity.\n\nThe narrative content may contain text (e.g. 2011Q1) for\naccurately recording less specific dates such as month,\nquarter, or year.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "iso-date",
"path": "iati-activities/iati-activity/activity-date/@iso-date",
"xsd_type": "xsd:date",
"solr_required": "true",
"solr_multivalued": "true"
},
{
"field": "activity_date_narrative",
"label": "Activity Date Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/activity-date/narrative",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "activity_date_narrative_xml_lang",
"label": "Activity Date Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/activity-date/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_type",
"label": "Contact Info Type",
"type": "select",
"description": "\nThe type of contact. See IATI codelist for values.\n",
"codelist_name": "ContactType",
"codelist_condition": "",
"attribute_name": "type",
"path": "iati-activities/iati-activity/contact-info/@type",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_organisation_narrative",
"label": "Contact Info Organisation Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/contact-info/organisation/narrative",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_organisation_narrative_xml_lang",
"label": "Contact Info Organisation Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/contact-info/organisation/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_department_narrative",
"label": "Contact Info Department Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/contact-info/department/narrative",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_department_narrative_xml_lang",
"label": "Contact Info Department Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/contact-info/department/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_person_name_narrative",
"label": "Contact Info Person Name Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/contact-info/person-name/narrative",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_person_name_narrative_xml_lang",
"label": "Contact Info Person Name Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/contact-info/person-name/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_job_title_narrative",
"label": "Contact Info Job Title Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/contact-info/job-title/narrative",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_job_title_narrative_xml_lang",
"label": "Contact Info Job Title Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/contact-info/job-title/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_telephone",
"label": "Contact Info Telephone",
"type": "text",
"description": "\nThe contact telephone number. May be repeated for\nmultiple numbers.\n",
"name": "telephone",
"path": "iati-activities/iati-activity/contact-info/telephone",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_email",
"label": "Contact Info Email",
"type": "text",
"description": "\nThe contact email address. May be repeated for multiple\naddresses.\n",
"name": "email",
"path": "iati-activities/iati-activity/contact-info/email",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_website",
"label": "Contact Info Website",
"type": "text",
"description": "\nThe contact web address. May be repeated for multiple sites.\n",
"name": "website",
"path": "iati-activities/iati-activity/contact-info/website",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_mailing_address_narrative",
"label": "Contact Info Mailing Address Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/contact-info/mailing-address/narrative",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "contact_info_mailing_address_narrative_xml_lang",
"label": "Contact Info Mailing Address Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/contact-info/mailing-address/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "activity_scope_code",
"label": "Activity Scope Code",
"type": "select",
"description": "\nThe geographical scope. See IATI codelist for values.\n",
"codelist_name": "ActivityScope",
"codelist_condition": "",
"attribute_name": "code",
"path": "iati-activities/iati-activity/activity-scope/@code",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "false"
},
{
"field": "recipient_country_code",
"label": "Recipient Country Code",
"type": "select",
"description": "\nISO 3166-1 alpha-2 code for the country.\n",
"codelist_name": "Country",
"codelist_condition": "",
"attribute_name": "code",
"path": "iati-activities/iati-activity/recipient-country/@code",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "recipient_country_percentage",
"label": "Recipient Country Percentage",
"type": "number",
"description": "\nThe percentage of total commitments or total activity budget to this item. Content must be a decimal number between 0 and 100 inclusive, with no percentage sign. Percentages for all reported countries and regions within a vocabulary MUST add up to 100.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "percentage",
"path": "iati-activities/iati-activity/recipient-country/@percentage",
"xsd_type": "xsd:decimal",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "recipient_country_narrative",
"label": "Recipient Country Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/recipient-country/narrative",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "recipient_country_narrative_xml_lang",
"label": "Recipient Country Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/recipient-country/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "recipient_region_code",
"label": "Recipient Region Code",
"type": "select",
"description": "\nEither an OECD DAC or UN region code. Codelist is\ndetermined by vocabulary attribute.\n",
"codelist_name": "Region",
"codelist_condition": "@vocabulary = '1' or not(@vocabulary)",
"attribute_name": "code",
"path": "iati-activities/iati-activity/recipient-region/@code",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "recipient_region_vocabulary",
"label": "Recipient Region Vocabulary",
"type": "select",
"description": "\nAn IATI code for the vocabulary from which the region code\nis drawn. If it is not present 1 - 'OECD DAC' is assumed.\n",
"codelist_name": "RegionVocabulary",
"codelist_condition": "",
"attribute_name": "vocabulary",
"path": "iati-activities/iati-activity/recipient-region/@vocabulary",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "recipient_region_vocabulary_uri",
"label": "Recipient Region Vocabulary Uri",
"type": "text",
"description": "\nThe URI where this vocabulary is defined. If the vocabulary is 99 (reporting organisation), the URI where this internal vocabulary is defined. While this is an optional field it is STRONGLY RECOMMENDED that all publishers use it to ensure that the meaning of their codes are fully understood by data users.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "vocabulary-uri",
"path": "iati-activities/iati-activity/recipient-region/@vocabulary-uri",
"xsd_type": "xsd:anyURI",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "recipient_region_percentage",
"label": "Recipient Region Percentage",
"type": "number",
"description": "\nThe percentage of total commitments or total activity budget to this item. Content must be a decimal number between 0 and 100 inclusive, with no percentage sign. Percentages for all reported countries and regions within a vocabulary MUST add up to 100.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "percentage",
"path": "iati-activities/iati-activity/recipient-region/@percentage",
"xsd_type": "xsd:decimal",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "recipient_region_narrative",
"label": "Recipient Region Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/recipient-region/narrative",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "recipient_region_narrative_xml_lang",
"label": "Recipient Region Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/recipient-region/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_ref",
"label": "Location Ref",
"type": "text",
"description": "\nAn internal reference that describes the location in the reporting organisation\u2019s own system.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "ref",
"path": "iati-activities/iati-activity/location/@ref",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_location_reach_code",
"label": "Location Location Reach Code",
"type": "select",
"description": "\nAn IATI code for the geographic scope of the activity.\n",
"codelist_name": "GeographicLocationReach",
"codelist_condition": "",
"attribute_name": "code",
"path": "iati-activities/iati-activity/location/location-reach/@code",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_location_id_code",
"label": "Location Location Id Code",
"type": "text",
"description": "\nA code from the gazetteer or administrative boundary repository specified by the vocabulary\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "code",
"path": "iati-activities/iati-activity/location/location-id/@code",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_location_id_vocabulary",
"label": "Location Location Id Vocabulary",
"type": "select",
"description": "\nAn IATI code for a recognised gazetteer or administrative boundary repository.\n",
"codelist_name": "GeographicVocabulary",
"codelist_condition": "",
"attribute_name": "vocabulary",
"path": "iati-activities/iati-activity/location/location-id/@vocabulary",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_name_narrative",
"label": "Location Name Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/location/name/narrative",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_name_narrative_xml_lang",
"label": "Location Name Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/location/name/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_description_narrative",
"label": "Location Description Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/location/description/narrative",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_description_narrative_xml_lang",
"label": "Location Description Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/location/description/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_activity_description_narrative",
"label": "Location Activity Description Narrative",
"type": "text",
"description": "\nThe free text name or description of the item being described. This can\nbe repeated in multiple languages.\n",
"name": "narrative",
"path": "iati-activities/iati-activity/location/activity-description/narrative",
"xsd_type": "",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_activity_description_narrative_xml_lang",
"label": "Location Activity Description Narrative Xml Lang",
"type": "select",
"description": "\nA code specifying the language of text in this element. It is recommended that wherever possible only codes from ISO 639-1 are used. If not present, the default language is assumed.\n",
"codelist_name": "Language",
"codelist_condition": "",
"attribute_name": "xml:lang",
"path": "iati-activities/iati-activity/location/activity-description/narrative/@xml:lang",
"xsd_type": null,
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_administrative_code",
"label": "Location Administrative Code",
"type": "select",
"description": "\nThe code for the administrative area being reported from the vocabulary specified.\n",
"codelist_name": "Country",
"codelist_condition": "@vocabulary = 'A4'",
"attribute_name": "code",
"path": "iati-activities/iati-activity/location/administrative/@code",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_administrative_vocabulary",
"label": "Location Administrative Vocabulary",
"type": "select",
"description": "\nAn IATI code for a recognised administrative boundary repository.\n",
"codelist_name": "GeographicVocabulary",
"codelist_condition": "",
"attribute_name": "vocabulary",
"path": "iati-activities/iati-activity/location/administrative/@vocabulary",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_administrative_level",
"label": "Location Administrative Level",
"type": "text",
"description": "\nA number defining a subdivision within a hierarchical system of administrative areas. The precise system for defining the particular meaning of each @level value is determined by the @vocabulary being used.\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "level",
"path": "iati-activities/iati-activity/location/administrative/@level",
"xsd_type": "xsd:nonNegativeInteger",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_point_srsName",
"label": "Location Point Srsname",
"type": "text",
"description": "\nThe name of the spatial reference system used by the coordinates.\n\nAlways: http://www.opengis.net/def/crs/EPSG/0/4326\n",
"codelist_name": "",
"codelist_condition": "",
"attribute_name": "srsName",
"path": "iati-activities/iati-activity/location/point/@srsName",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_point_pos",
"label": "Location Point Pos",
"type": "text",
"description": "\nThe latitude and longitude coordinates in the format \"lat lng\"\n",
"name": "pos",
"path": "iati-activities/iati-activity/location/point/pos",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_exactness_code",
"label": "Location Exactness Code",
"type": "select",
"description": "\nA code from the Geographic Exactness Codelist.\n",
"codelist_name": "GeographicExactness",
"codelist_condition": "",
"attribute_name": "code",
"path": "iati-activities/iati-activity/location/exactness/@code",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{
"field": "location_location_class_code",
"label": "Location Location Class Code",
"type": "select",
"description": "\nA code from the Location Class codelist\n",
"codelist_name": "GeographicLocationClass",
"codelist_condition": "",
"attribute_name": "code",
"path": "iati-activities/iati-activity/location/location-class/@code",
"xsd_type": "xsd:string",
"solr_required": "false",
"solr_multivalued": "true"
},
{