-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: if ofsted related columns are missing from gias submission for …
…data processing use default values. - new 2024 gias schema without `OfstedRating (name)` and `OfstedLastInsp` columns. - when ofsted related columns are missing they are created and set to default values for downstream processing and computations. - when ofsted related columns are present (for historic submissions) the current behaviour is preserved.
- Loading branch information
Showing
7 changed files
with
230 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
gias_index_col = "URN" | ||
gias = { | ||
"default": { | ||
"URN": "Int64", | ||
"UKPRN": "Int64", | ||
"LA (code)": "Int64", | ||
"LA (name)": "string", | ||
"EstablishmentNumber": "Int64", | ||
"EstablishmentName": "string", | ||
"TypeOfEstablishment (code)": "Int64", | ||
"TypeOfEstablishment (name)": "string", | ||
"OpenDate": "string", | ||
"CloseDate": "string", | ||
"PhaseOfEducation (code)": "Int64", | ||
"PhaseOfEducation (name)": "string", | ||
"Boarders (code)": "Int64", | ||
"Boarders (name)": "string", | ||
"NurseryProvision (name)": "string", | ||
"OfficialSixthForm (code)": "Int64", | ||
"OfficialSixthForm (name)": "string", | ||
"AdmissionsPolicy (code)": "Int64", | ||
"AdmissionsPolicy (name)": "string", | ||
"OfstedLastInsp": "string", | ||
"Postcode": "string", | ||
"SchoolWebsite": "string", | ||
"TelephoneNum": "string", | ||
"GOR (name)": "string", | ||
"OfstedRating (name)": "string", | ||
"MSOA (code)": "string", | ||
"LSOA (code)": "string", | ||
"StatutoryLowAge": "Int64", | ||
"StatutoryHighAge": "Int64", | ||
"Street": "string", | ||
"Locality": "string", | ||
"Address3": "string", | ||
"Town": "string", | ||
"County (name)": "string", | ||
}, | ||
2024: { | ||
"URN": "Int64", | ||
"UKPRN": "Int64", | ||
"LA (code)": "Int64", | ||
"LA (name)": "string", | ||
"EstablishmentNumber": "Int64", | ||
"EstablishmentName": "string", | ||
"TypeOfEstablishment (code)": "Int64", | ||
"TypeOfEstablishment (name)": "string", | ||
"OpenDate": "string", | ||
"CloseDate": "string", | ||
"PhaseOfEducation (code)": "Int64", | ||
"PhaseOfEducation (name)": "string", | ||
"Boarders (code)": "Int64", | ||
"Boarders (name)": "string", | ||
"NurseryProvision (name)": "string", | ||
"OfficialSixthForm (code)": "Int64", | ||
"OfficialSixthForm (name)": "string", | ||
"AdmissionsPolicy (code)": "Int64", | ||
"AdmissionsPolicy (name)": "string", | ||
"Postcode": "string", | ||
"SchoolWebsite": "string", | ||
"TelephoneNum": "string", | ||
"GOR (name)": "string", | ||
"MSOA (code)": "string", | ||
"LSOA (code)": "string", | ||
"StatutoryLowAge": "Int64", | ||
"StatutoryHighAge": "Int64", | ||
"Street": "string", | ||
"Locality": "string", | ||
"Address3": "string", | ||
"Town": "string", | ||
"County (name)": "string", | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters