-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from robert-koch-institut/frictionless_data
Added Frictionless Data
- Loading branch information
Showing
3 changed files
with
65 additions
and
5 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
Metadaten/schemas/tableschema_COVID-ARE-Konsultationsinzidenz.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,33 @@ | ||
{ | ||
"fields": [ | ||
{ | ||
"name": "date", | ||
"type": "date", | ||
"description": "Berichtswoche des RKI im IS0-8601 Format", | ||
"format": "%Y-W%W" | ||
}, | ||
{ | ||
"name": "agegroup", | ||
"type": "string", | ||
"description": "Altersgruppen in Jahren, `00+` gibt die Gesamtinzidenz über alle Altersgruppen an.", | ||
"constraints": { | ||
"enum": [ | ||
"00-04", | ||
"05-14", | ||
"15-34", | ||
"35-59", | ||
"60+", | ||
"00+" | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "are_covid19_incidence", | ||
"type": "number", | ||
"description": "Konsultationsinzidenz akuter respiratorischer Erkrankungen mit COVID-19", | ||
"constraints": { | ||
"minimum": 0 | ||
} | ||
} | ||
] | ||
} |
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,17 @@ | ||
{ | ||
"name": "10.5281/zenodo.7221096", | ||
"title": "COVID-ARE-Konsultationsinzidenz", | ||
"description": "Diese Datei gibt eine Übersicht über die im Datensatz enthaltenen Daten im Data Package Standard (https://datapackage.org). Der dokumentierte Datensatz ist auf den Plattformen Zenodo (https://doi.org/10.5281/zenodo.7221096) und Github (https://github.com/robert-koch-institut/COVID-ARE-Konsultationsinzidenz) verfügbar.", | ||
"homepage": "https://doi.org/10.5281/zenodo.7221096", | ||
"resources": [ | ||
{ | ||
"name": "covid-are-konsultationsinzidenz", | ||
"type": "table", | ||
"path": "COVID-ARE-Konsultationsinzidenz.csv", | ||
"scheme": "file", | ||
"format": "csv", | ||
"mediatype": "text/csv", | ||
"schema": "Metadaten/schemas/tableschema_COVID-ARE-Konsultationsinzidenz.json" | ||
} | ||
] | ||
} |