-
Notifications
You must be signed in to change notification settings - Fork 9
/
iati-organisations-schema.xsd
781 lines (762 loc) · 37.2 KB
/
iati-organisations-schema.xsd
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
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="2.03">
<xsd:annotation>
<xsd:documentation xml:lang="en">
International Aid Transparency Initiative: Organisation-Information Schema
Release 2.03, 2018-02-19
NOTE: the xml.xsd and iati-common.xsd schemas must be in the
same directory as this one.
This W3C XML Schema defines an XML document type for information
about an aid organisation, following the standard published at
http://iatistandard.org
This document type may be extended with additional elements and
attributes, but they must belong to an explicit XML namespace.
</xsd:documentation>
</xsd:annotation>
<xsd:include schemaLocation="iati-common.xsd"/>
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="xml.xsd"/>
<xsd:element name="iati-organisations">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Top-level list of one or more IATI organisation records.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="iati-organisation" minOccurs="1" maxOccurs="unbounded"/>
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="version" type="xsd:string" use="required">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A number indicating the IATI specification version in use.
This is mandatory and must be a valid version.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="generated-datetime" type="xsd:dateTime" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A date/time stamp for when this file was generated. This
is not necessarily the last-updated date for the
individual activity records in it. Use of this attribute
is highly recommended, to allow recipients to know when a
file has been updated.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="iati-organisation">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Top-level element for a single IATI organisation report.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="organisation-identifier" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Machine-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}.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element ref="name" minOccurs="1" maxOccurs="1"/>
<xsd:element ref="reporting-org" minOccurs="1" maxOccurs="1"/>
<xsd:element ref="total-budget" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="recipient-org-budget" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="recipient-region-budget" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="recipient-country-budget" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="total-expenditure" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="document-link" minOccurs="0" maxOccurs="unbounded" type="documentLinkWithReceipientCountry"/>
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="last-updated-datetime" type="xsd:dateTime" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The last date/time that the data for this specific
organisation was updated. This date must change whenever
the value of any field changes.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute ref="xml:lang">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A code specifying the default language of text in this organisation. 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.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="default-currency" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Default ISO 4217 currency code for all financial values in
this activity report. If this is not declared then the
currency attribute MUST be specified for all monetary
values.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="name">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The human-readable name of the organisation.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="narrative" minOccurs="1" maxOccurs="unbounded" />
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="total-budget">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The total-budget element allows for the reporting of the organisation's
own budget. The recommendation is that, where and when possible, the
organisation's total annual planned budget for each of the next three
years is reported. The status explains whether the budget being reported
is indicative or has been formally committed. The value should appear
within the BudgetStatus codelist. If the @status attribute is not present,
the budget is assumed to be indicative.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="period-start" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The start of the budget period.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:any processContents="lax" namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="iso-date" type="xsd:date" use="required"/>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="period-end" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The end of the period (which must not be greater than one year)
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:any processContents="lax" namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="iso-date" type="xsd:date" use="required"/>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="value" type="currencyType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The total value of the organisation's aid budget for
this period.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="budget-line" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A breakdown of the total budget into sub-totals. The
breakdown is determined by the reporting organisation
and described in the narrative. The period covered is
the same as that covered by the parent total-budget
element. The sum of budget-line values does not have to
equal the value given in the parent element.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="currencyType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The budget sub-total. The definition of the
sub-division is determined by
iati-organisation/total-budget/budget-line/narrative
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element ref="narrative" minOccurs="1" maxOccurs="unbounded" />
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="ref" use="optional" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
An internal reference for this budget line taken
from the reporting organisation's own system.
Optional.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="status" use="optional" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The status explains whether the budget being reported is indicative or has
been formally committed. The value should appear within the BudgetStatus
codelist. If the @status attribute is not present, the budget is assumed
to be indicative.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="recipient-org-budget">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The recipient-org-budget element allows for the reporting of
forward looking budgets for each institution which receives
core funding from the reporting organisation. The
recommendation is that, where and when possible, annual
planned budgets for each recipient institution for each of the
next three financial years are reported. This is primarily
applicable to donors but any provider of core funding is
expected to use it. Earmarked budgets should be reported at
activity-level through the Activity Standard. The status
explains whether the budget being reported is indicative or
has been formally committed. The value should appear within
the BudgetStatus codelist. If the @status attribute is not
present, the budget is assumed to be indicative.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="recipient-org" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The organisation that will receive the funds.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="narrative" minOccurs="1" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The name of the organisation. This can be repeated in multiple languages.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="ref" use="optional" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Machine-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.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
<xsd:element name="period-start" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The start of the budget period.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:any processContents="lax" namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="iso-date" type="xsd:date" use="required"/>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="period-end" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The end of the period (which must not be greater than one year)
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:any processContents="lax" namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="iso-date" type="xsd:date" use="required"/>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="value" type="currencyType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The total value of the money budgeted to be disbursed to
the specified recipient organisation during this time
period.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="budget-line" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A breakdown of the recipient organisation's budget into
sub-totals. The breakdown is determined by the
reporting organisation and described in the narrative.
The period covered is the same as that covered by the
parent recipient-org-budget element. The sum of
budget-line values does not have to equal the value
given in the parent element.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="currencyType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The budget sub-total. The definition of the
sub-division is determined by
iati-organisation/recipient-org-budget/budget-line/narrative
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element ref="narrative" minOccurs="1" maxOccurs="unbounded" />
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="ref" use="optional" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
An internal reference for this budget line taken
from the reporting organisation's own system.
Optional.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="status" use="optional" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The status explains whether the budget being reported is indicative or has
been formally committed. The value should appear within the BudgetStatus
codelist. If the @status attribute is not present, the budget is assumed
to be indicative.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="recipient-region-budget">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The recipient-region-budget element allows for the reporting of forward
looking budgets where the organisation maintains region-wide, rather than
or in addition to country-specific budgets. The recommendation is that,
where and when possible, the organisation’s total annual planned budget
for each of the next three financial years is reported for each recipient
region. This must NOT include an aggregation of budgets reported in the
recipient-country-budget element. It is strongly recommended that
publishers report to existing defined regions wherever possible. The
status explains whether the budget being reported is indicative or has
been formally committed. The value should appear within the BudgetStatus
codelist. If the @status attribute is not present, the budget is assumed
to be indicative.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="recipient-region" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The supranational geographic region where funds have been allocated.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="narrative" minOccurs="0" maxOccurs="unbounded" />
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="vocabulary" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
An IATI code for the vocabulary from which the region code is
drawn. If it is not present, code 1 ('OECD DAC') is assumed.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="vocabulary-uri" type="xsd:anyURI" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The 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.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="code" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Either an OECD DAC, UN region code or (if code ‘99’ Reporting
organisation is selected for recipient-region/\@vocabulary) a
code from your internal vocabulary. The codelist is determined
by vocabulary attribute. The value in recipient-region/\@code
should appear within the Region codelist, if the vocabulary
code 1 ('OECD DAC') is used.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="period-start" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The start of the budget period.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:any processContents="lax" namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="iso-date" type="xsd:date" use="required"/>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="period-end" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The end of the period (which must not be greater than one year)
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:any processContents="lax" namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="iso-date" type="xsd:date" use="required"/>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="value" type="currencyType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The total value of the money budgeted to be disbursed to
the specified region during this time period. This
element is required.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="budget-line" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A breakdown of the recipient region’s budget into sub-totals. The
breakdown is determined by the reporting organisation and described
in the narrative. The period covered is the same as that covered by
the parent recipient-region-budget element. The sum of budget-line
values does not have to equal the value given in the parent element.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="currencyType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The budget sub-total. The definition of the
sub-division is determined by
iati-organisation/recipient-region-budget/budget-line/narrative
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element ref="narrative" minOccurs="1" maxOccurs="unbounded" />
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="ref" use="optional" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
An internal reference for this budget line taken
from the reporting organisation's own system.
Optional.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="status" use="optional" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The status explains whether the budget being reported is indicative or has
been formally committed. The value should appear within the BudgetStatus
codelist. If the @status attribute is not present, the budget is assumed
to be indicative.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="recipient-country-budget">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The recipient-country-budget element allows for the reporting of
forward looking budgets for each country in which the organisation
operates. The recommendation is that, where and when possible, the
organisation's total annual planned budget for each of the next
three financial years is reported for each recipient country.
It is strongly recommended that the start and end of the reported
financial years match those of the recipient country's
budgetary/planning cycle. The status explains whether the budget
being reported is indicative or has been formally committed. The
value should appear within the BudgetStatus codelist. If the
@status attribute is not present, the budget is assumed to be
indicative.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="recipient-country" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The recipient country.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="narrative" minOccurs="0" maxOccurs="unbounded" />
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="code" type="xsd:string" use="required">
<xsd:annotation>
<xsd:documentation xml:lang="en">
ISO 3166-1 alpha-2 code for the country.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="period-start" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The start of the budget period.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:any processContents="lax" namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="iso-date" type="xsd:date" use="required"/>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="period-end" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The end of the period (which must not be greater than one year)
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:any processContents="lax" namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="iso-date" type="xsd:date" use="required"/>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="value" type="currencyType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The total value of the money budgeted to be disbursed to
the specified country during this time period. This
element is required.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="budget-line" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A breakdown of the recipient country's budget into
sub-totals. The breakdown is determined by the
reporting organisation and described in the narrative.
The period covered is the same as that covered by the
parent recipient-country-budget element. The sum of
budget-line values does not have to equal the value
given in the parent element.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="currencyType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The budget sub-total. The definition of the
sub-division is determined by
iati-organisation/recipient-country-budget/budget-line/narrative
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element ref="narrative" minOccurs="1" maxOccurs="unbounded" />
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="ref" use="optional" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
An internal reference for this budget line taken
from the reporting organisation's own system.
Optional.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="status" use="optional" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The status explains whether the budget being reported is indicative or has
been formally committed. The value should appear within the BudgetStatus
codelist. If the @status attribute is not present, the budget is assumed
to be indicative.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="total-expenditure">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The total-expenditure element allows for the reporting of the
organisation’s international development expenditure. The
recommendation is that, where and when possible, the organisation’s
total expenditure for each of the past three years is reported.
The expense line allows publishers to record further breakdown.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="period-start" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The start of the budget period.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:any processContents="lax" namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="iso-date" type="xsd:date" use="required"/>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="period-end" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The end of the period (which must not be greater than one year)
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:any processContents="lax" namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="iso-date" type="xsd:date" use="required"/>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="value" type="currencyType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The total value of the organisation's aid expenditure for
this period.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="expense-line" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A breakdown of the total expenditure into sub-totals.
The breakdown is determined by the reporting
organisation and described in the narrative. The period
covered is the same as that covered by the parent
total-expenditure element. The sum of expenditure-line
values does not have to equal the value given in the
parent element.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="currencyType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The expenditure sub-total. The definition of the
sub-division is determined by
iati-organisation/total-expenditure/expenditure-line/narrative
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element ref="narrative" minOccurs="1" maxOccurs="unbounded" />
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="ref" use="optional" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
An internal reference for this expenditure line taken
from the reporting organisation’s own system. Optional.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
<!-- documentLinkWithReceipientCountry extends documentLinkBase to include the receipient-country sub-element, which is used within the iati-organisations schema -->
<xsd:complexType name="documentLinkWithReceipientCountry">
<xsd:complexContent>
<xsd:extension base="documentLinkBase">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A link to an online, publicly accessible web page or document.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="recipient-country" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The recipient country that is the focus of the document.
May be repeated for multiple countries.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="narrative" minOccurs="0" maxOccurs="unbounded" />
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="code" type="xsd:string" use="required">
<xsd:annotation>
<xsd:documentation xml:lang="en">
ISO 3166-1 alpha-2 code for the country.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute processContents="lax" namespace="##other"/>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:schema>