Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
feat: delete third shots schemas and its relations (#4184)
Browse files Browse the repository at this point in the history
  • Loading branch information
hasan-ozaynaci authored Apr 14, 2022
1 parent d219c46 commit 07e1959
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 64 deletions.
4 changes: 0 additions & 4 deletions packages/app/schema/nl/__index.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"nursing_home",
"proto_name",
"reproduction",
"third_shot_administered",
"sewer",
"tested_ggd",
"tested_ggd_archived",
Expand Down Expand Up @@ -97,9 +96,6 @@
"booster_coverage": {
"$ref": "booster_coverage.json"
},
"third_shot_administered": {
"$ref": "third_shot_administered.json"
},
"doctor": {
"$ref": "doctor.json"
},
Expand Down
39 changes: 0 additions & 39 deletions packages/app/schema/nl/third_shot_administered.json

This file was deleted.

11 changes: 0 additions & 11 deletions packages/cms/src/data/data-structure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ export const dataStructure = {
"age_group_total",
],
booster_coverage: ["age_group", "percentage"],
third_shot_administered: ["administered_total"],
doctor: ["covid_symptoms_per_100k", "covid_symptoms"],
g_number: ["g_number"],
infectious_people: ["margin_low", "estimate", "margin_high"],
Expand Down Expand Up @@ -302,7 +301,6 @@ export const dataStructure = {
"fully_vaccinated",
"partially_or_fully_vaccinated",
],
vaccine_delivery: ["total", "date_of_report_unix"],
vaccine_delivery_estimate: ["total"],
vaccine_delivery_per_supplier: [
"total",
Expand All @@ -326,15 +324,6 @@ export const dataStructure = {
"novavax",
"total",
],
vaccine_administered_estimate: [
"pfizer",
"moderna",
"astra_zeneca",
"cure_vac",
"janssen",
"sanofi",
"total",
],
vaccine_administered_doctors: ["estimated"],
vaccine_administered_ggd_ghor: ["reported"],
vaccine_administered_ggd: ["estimated"],
Expand Down
10 changes: 0 additions & 10 deletions packages/common/src/types/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,6 @@ export interface Nl {
booster_shot_planned: NlBoosterShotPlanned;
booster_shot_per_age_group: NlBoosterShotPerAgeGroup;
booster_coverage: NlBoosterCoverage;
third_shot_administered: NlThirdShotAdministered;
doctor: NlDoctor;
g_number: NlGNumber;
infectious_people: NlInfectiousPeople;
Expand Down Expand Up @@ -434,15 +433,6 @@ export interface NlBoosterCoverageValue {
date_unix: number;
date_of_insertion_unix: number;
}
export interface NlThirdShotAdministered {
values: NlThirdShotAdministeredValue[];
last_value: NlThirdShotAdministeredValue;
}
export interface NlThirdShotAdministeredValue {
administered_total: number;
date_unix: number;
date_of_insertion_unix: number;
}
export interface NlDoctor {
values: NlDoctorValue[];
last_value: NlDoctorValue;
Expand Down

0 comments on commit 07e1959

Please sign in to comment.