@@ -6,12 +6,12 @@ type IndicatorValueNCUWithToolTip {
6
6
}
7
7
8
8
type ResourcesBreakDown {
9
- data : IndicatorData !
9
+ data : IndicatorData !
10
10
toolTip : ToolTip !
11
11
}
12
12
13
13
type OverviewTabRegional {
14
- # WHAT PERCENTAGE OF PEOPLE IN WAKISO LIVE BELOW THE NATIONAL POVERTY LINE?
14
+ # WHAT PERCENTAGE OF PEOPLE IN WAKISO LIVE BELOW THE NATIONAL POVERTY LINE?
15
15
# can be no data or '12%'
16
16
poorestPeople : IndicatorValueWithToolTip
17
17
# WHAT RESOURCES ARE AVAILABLE TO LOCAL GOVERNMENTS IN WAKISO? eg 3.6m or 2.7bn
@@ -26,16 +26,16 @@ type OverviewTabRegional {
26
26
27
27
type PovertyTabKe {
28
28
poorestPeople : IndicatorValueWithToolTip
29
- #WHAT IS THE AVERAGE LIFE EXPECTANCY?
29
+ #WHAT IS THE AVERAGE LIFE EXPECTANCY?
30
30
meanExpenditure : IndicatorValueWithToolTip
31
- #WHAT IS THE STANDARD OF LIVING SCORE?
31
+ #WHAT IS THE STANDARD OF LIVING SCORE?
32
32
povertyGap : IndicatorValueWithToolTip
33
33
}
34
34
type PovertyTabUg {
35
35
poorestPeople : IndicatorValueWithToolTip
36
- #WHAT IS THE AVERAGE LIFE EXPECTANCY?
36
+ #WHAT IS THE AVERAGE LIFE EXPECTANCY?
37
37
lifeExpectancy : IndicatorValueWithToolTip
38
- #WHAT IS THE STANDARD OF LIVING SCORE?
38
+ #WHAT IS THE STANDARD OF LIVING SCORE?
39
39
stdOfLiving : IndicatorValueWithToolTip
40
40
}
41
41
@@ -57,36 +57,36 @@ type PopulationTabRegionalUg {
57
57
}
58
58
59
59
type EducationTabRegionalUg {
60
- #WHAT IS THE PUPIL–TEACHER RATIO IN PRIMARY EDUCATION?...in government schools and...in all schools
60
+ #WHAT IS THE PUPIL–TEACHER RATIO IN PRIMARY EDUCATION?...in government schools and...in all schools
61
61
pupilTeacherRatioGovtSchl : IndicatorValueWithToolTip
62
62
pupilTeacherRatioOtherSchl : IndicatorValueWithToolTip
63
- #WHAT PERCENTAGE OF STUDENTS PASS THE PRIMARY LEAVING EXAM?
63
+ #WHAT PERCENTAGE OF STUDENTS PASS THE PRIMARY LEAVING EXAM?
64
64
studentsPassRate : IndicatorValueWithToolTip
65
65
studentsPassDistrictRank : IndicatorValueWithToolTip
66
- #HOW MUCH PRIMARY EDUCATION FUNDING IS THERE?
66
+ #HOW MUCH PRIMARY EDUCATION FUNDING IS THERE?
67
67
primaryEducationfunding : IndicatorValueNCUWithToolTip
68
68
}
69
69
70
70
type EducationTabRegionalKe {
71
- #WHAT IS THE PUPIL–TEACHER RATIO IN PRIMARY EDUCATION?...in government schools and...in all schools
71
+ #WHAT IS THE PUPIL–TEACHER RATIO IN PRIMARY EDUCATION?...in government schools and...in all schools
72
72
primaryPupilTeacherRatioAllSchl : IndicatorValueWithToolTip
73
- primaryTeacherRatioPublicSchl : IndicatorValueWithToolTip
73
+ primaryTeacherRatioPublicSchl : IndicatorValueWithToolTip
74
74
primaryTeacherRatioPrivateSchl : IndicatorValueWithToolTip
75
75
}
76
76
77
77
type HealthTabRegionalUg {
78
78
#WHAT IS THE DISTRICT LEAGUE HEALTH PERFORMANCE SCORE?
79
79
districtPerformance : IndicatorValueWithToolTip
80
- #WHAT PERCENTAGE OF TUBERCULOSIS CASES HAVE BEEN SUCCESSFULLY TREATED?
80
+ #WHAT PERCENTAGE OF TUBERCULOSIS CASES HAVE BEEN SUCCESSFULLY TREATED?
81
81
treatmeantOfTb : IndicatorValueWithToolTip
82
82
districtHealthRank : IndicatorValueWithToolTip
83
- #HOW MUCH LOCAL GOVERNMENT HEALTHCARE FUNDING IS THERE?
83
+ #HOW MUCH LOCAL GOVERNMENT HEALTHCARE FUNDING IS THERE?
84
84
healthCareFunding : IndicatorValueNCUWithToolTip
85
85
}
86
86
87
87
type HealthTabRegionalKe {
88
88
birthAttendanceSkilled : IndicatorValueWithToolTip
89
- contraceptiveUse : IndicatorValueWithToolTip
89
+ contraceptiveUse : IndicatorValueWithToolTip
90
90
healthCareFunding : IndicatorValueNCUWithToolTip
91
91
}
92
92
@@ -95,6 +95,7 @@ type LocalGovernmentFinance {
95
95
startYear : Int !
96
96
currencyUSD : String !
97
97
currencyCode : String !
98
+ supportLocalCurrencyOnly : Boolean
98
99
# come from finance file
99
100
revenueAndGrants : [Domestic ]!
100
101
expenditure : [Domestic ]!
@@ -105,7 +106,7 @@ union PopulationTabRegional = PopulationTabRegionalUg | PopulationTabRegionalKe
105
106
union EducationTabRegional = EducationTabRegionalUg | EducationTabRegionalKe
106
107
union HealthTabRegional = HealthTabRegionalKe | HealthTabRegionalUg
107
108
108
- type Query {
109
+ type Query {
109
110
# id is district slug
110
111
overviewTabRegional (id : String ! , country : String ! ):OverviewTabRegional
111
112
povertyTabRegional (id : String ! , country : String ! ): PovertyTabRegional
0 commit comments