@@ -6,12 +6,12 @@ type IndicatorValueNCUWithToolTip {
66}
77
88type ResourcesBreakDown {
9- data : IndicatorData !
9+ data : IndicatorData !
1010 toolTip : ToolTip !
1111}
1212
1313type 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?
1515 # can be no data or '12%'
1616 poorestPeople : IndicatorValueWithToolTip
1717 # WHAT RESOURCES ARE AVAILABLE TO LOCAL GOVERNMENTS IN WAKISO? eg 3.6m or 2.7bn
@@ -26,16 +26,16 @@ type OverviewTabRegional {
2626
2727type PovertyTabKe {
2828 poorestPeople : IndicatorValueWithToolTip
29- #WHAT IS THE AVERAGE LIFE EXPECTANCY?
29+ #WHAT IS THE AVERAGE LIFE EXPECTANCY?
3030 meanExpenditure : IndicatorValueWithToolTip
31- #WHAT IS THE STANDARD OF LIVING SCORE?
31+ #WHAT IS THE STANDARD OF LIVING SCORE?
3232 povertyGap : IndicatorValueWithToolTip
3333}
3434type PovertyTabUg {
3535 poorestPeople : IndicatorValueWithToolTip
36- #WHAT IS THE AVERAGE LIFE EXPECTANCY?
36+ #WHAT IS THE AVERAGE LIFE EXPECTANCY?
3737 lifeExpectancy : IndicatorValueWithToolTip
38- #WHAT IS THE STANDARD OF LIVING SCORE?
38+ #WHAT IS THE STANDARD OF LIVING SCORE?
3939 stdOfLiving : IndicatorValueWithToolTip
4040}
4141
@@ -57,36 +57,36 @@ type PopulationTabRegionalUg {
5757}
5858
5959type 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
6161 pupilTeacherRatioGovtSchl : IndicatorValueWithToolTip
6262 pupilTeacherRatioOtherSchl : IndicatorValueWithToolTip
63- #WHAT PERCENTAGE OF STUDENTS PASS THE PRIMARY LEAVING EXAM?
63+ #WHAT PERCENTAGE OF STUDENTS PASS THE PRIMARY LEAVING EXAM?
6464 studentsPassRate : IndicatorValueWithToolTip
6565 studentsPassDistrictRank : IndicatorValueWithToolTip
66- #HOW MUCH PRIMARY EDUCATION FUNDING IS THERE?
66+ #HOW MUCH PRIMARY EDUCATION FUNDING IS THERE?
6767 primaryEducationfunding : IndicatorValueNCUWithToolTip
6868}
6969
7070type 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
7272 primaryPupilTeacherRatioAllSchl : IndicatorValueWithToolTip
73- primaryTeacherRatioPublicSchl : IndicatorValueWithToolTip
73+ primaryTeacherRatioPublicSchl : IndicatorValueWithToolTip
7474 primaryTeacherRatioPrivateSchl : IndicatorValueWithToolTip
7575}
7676
7777type HealthTabRegionalUg {
7878 #WHAT IS THE DISTRICT LEAGUE HEALTH PERFORMANCE SCORE?
7979 districtPerformance : IndicatorValueWithToolTip
80- #WHAT PERCENTAGE OF TUBERCULOSIS CASES HAVE BEEN SUCCESSFULLY TREATED?
80+ #WHAT PERCENTAGE OF TUBERCULOSIS CASES HAVE BEEN SUCCESSFULLY TREATED?
8181 treatmeantOfTb : IndicatorValueWithToolTip
8282 districtHealthRank : IndicatorValueWithToolTip
83- #HOW MUCH LOCAL GOVERNMENT HEALTHCARE FUNDING IS THERE?
83+ #HOW MUCH LOCAL GOVERNMENT HEALTHCARE FUNDING IS THERE?
8484 healthCareFunding : IndicatorValueNCUWithToolTip
8585}
8686
8787type HealthTabRegionalKe {
8888 birthAttendanceSkilled : IndicatorValueWithToolTip
89- contraceptiveUse : IndicatorValueWithToolTip
89+ contraceptiveUse : IndicatorValueWithToolTip
9090 healthCareFunding : IndicatorValueNCUWithToolTip
9191}
9292
@@ -95,6 +95,7 @@ type LocalGovernmentFinance {
9595 startYear : Int !
9696 currencyUSD : String !
9797 currencyCode : String !
98+ supportLocalCurrencyOnly : Boolean
9899 # come from finance file
99100 revenueAndGrants : [Domestic ]!
100101 expenditure : [Domestic ]!
@@ -105,7 +106,7 @@ union PopulationTabRegional = PopulationTabRegionalUg | PopulationTabRegionalKe
105106union EducationTabRegional = EducationTabRegionalUg | EducationTabRegionalKe
106107union HealthTabRegional = HealthTabRegionalKe | HealthTabRegionalUg
107108
108- type Query {
109+ type Query {
109110 # id is district slug
110111 overviewTabRegional (id : String ! , country : String ! ):OverviewTabRegional
111112 povertyTabRegional (id : String ! , country : String ! ): PovertyTabRegional
0 commit comments