This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature/COR-1772_adjusted-KPIs-for-hospital-admissions-per-municipali…
…ty (#4852) * feat(COR-1772): patienten-in-beeld part almost complete * feat(COR-1772): lokalize keys corrected mistake * feat(COR-1772): Added if statement checker for new pageType * feat(COR-1772): Added lokalize key * feat(COR-1772): commit to validate protos * feat(COR-1772): Changed to date range for PageInformationBlock and KPITile * feat(COR-1772): Schema adjustments * feat(COR-1772): final schema adjustments * feat(COR-1772): pre-final steps before PR * feat(COR-1772): First PR comment resolution * feat(COR-1772): Schema adjustment * feat(COR-1772): corrected naming based on threshold conventions * feat(COR-1772): Type contingency for choropleth legend * feat(COR-1772): PR comment resolution * feat(COR-1772): PR comment resolution
- Loading branch information
1 parent
87daac8
commit d2117ef
Showing
18 changed files
with
314 additions
and
48 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
28 changes: 28 additions & 0 deletions
28
packages/app/schema/archived_gm_collection/hospital_nice.json
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,28 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"title": "archived_gm_collection_hospital_nice", | ||
"additionalProperties": false, | ||
"required": ["date_unix", "gmcode", "admissions_on_date_of_admission", "admissions_on_date_of_admission_per_100000", "admissions_on_date_of_reporting", "date_of_insertion_unix"], | ||
"properties": { | ||
"date_unix": { | ||
"type": "integer" | ||
}, | ||
"gmcode": { | ||
"type": "string", | ||
"pattern": "^GM[0-9]+$" | ||
}, | ||
"admissions_on_date_of_admission": { | ||
"type": "integer" | ||
}, | ||
"admissions_on_date_of_admission_per_100000": { | ||
"type": "number" | ||
}, | ||
"admissions_on_date_of_reporting": { | ||
"type": "integer" | ||
}, | ||
"date_of_insertion_unix": { | ||
"type": "integer" | ||
} | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
packages/app/schema/archived_gm_collection/hospital_nice_choropleth.json
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,28 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"title": "archived_gm_collection_hospital_nice_choropleth", | ||
"additionalProperties": false, | ||
"required": ["date_unix", "gmcode", "admissions_on_date_of_admission", "admissions_on_date_of_admission_per_100000", "admissions_on_date_of_reporting", "date_of_insertion_unix"], | ||
"properties": { | ||
"date_unix": { | ||
"type": "integer" | ||
}, | ||
"gmcode": { | ||
"type": "string", | ||
"pattern": "^GM[0-9]+$" | ||
}, | ||
"admissions_on_date_of_admission": { | ||
"type": "number" | ||
}, | ||
"admissions_on_date_of_admission_per_100000": { | ||
"type": "number" | ||
}, | ||
"admissions_on_date_of_reporting": { | ||
"type": "number" | ||
}, | ||
"date_of_insertion_unix": { | ||
"type": "integer" | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.