-
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.
Merge pull request #1 from robert-koch-institut/frictionless_data
Added Frictionless Data
- Loading branch information
Showing
3 changed files
with
132 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
{ | ||
"fields": [ | ||
{ | ||
"name": "Meldewoche", | ||
"type": "date", | ||
"description": "Kalenderwoche, in der der Fall dem Gesundheitsamt bekannt geworden ist. `JJJJ` entspricht der Jahresangabe,`Www` entspricht der Wochenangabe nach [ISO 8601](https://de.wikipedia.org/wiki/ISO_8601) (beispielsweise `2021-W34` für die 34. Kalenderwoche des Jahres 2021)", | ||
"format": "%Y-W%W" | ||
}, | ||
{ | ||
"name": "Region", | ||
"type": "string", | ||
"description": "Name der Bezugsregion, Bundesländer bzw. gesamt Deutschland", | ||
"constraints": { | ||
"enum": [ | ||
"Baden-Württemberg", | ||
"Bayern", | ||
"Berlin", | ||
"Brandenburg", | ||
"Bremen", | ||
"Hamburg", | ||
"Hessen", | ||
"Mecklenburg-Vorpommern", | ||
"Niedersachsen", | ||
"Nordrhein-Westfalen", | ||
"Rheinland-Pfalz", | ||
"Saarland", | ||
"Sachsen", | ||
"Sachsen-Anhalt", | ||
"Schleswig-Holstein", | ||
"Thüringen", | ||
"Deutschland", | ||
"Unbekannt" | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "Region_Id", | ||
"type": "string", | ||
"description": "ID nach dem Amtlichen Gemeindeschlüssl. Zusätzlich `00` für gesamt Deutschland und `NA` für unbekannt", | ||
"missingValues": [ | ||
"NA" | ||
], | ||
"constraints": { | ||
"enum": [ | ||
"01", | ||
"02", | ||
"03", | ||
"04", | ||
"05", | ||
"06", | ||
"07", | ||
"08", | ||
"09", | ||
"10", | ||
"11", | ||
"12", | ||
"13", | ||
"14", | ||
"15", | ||
"16", | ||
"00" | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "Altersgruppe", | ||
"type": "string", | ||
"description": "Altersspanne der in der Gruppe enthaltenen Fälle", | ||
"constraints": { | ||
"enum": [ | ||
"00-14", | ||
"15-59", | ||
"60+", | ||
"00+", | ||
"Unbekannt" | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "Fallzahl", | ||
"type": "integer", | ||
"description": "Anzahl der Fälle in der Fallgruppe", | ||
"constraints": { | ||
"minimum": 0 | ||
} | ||
}, | ||
{ | ||
"name": "Inzidenz", | ||
"type": "number", | ||
"description": "Anzahl der Fälle pro 100.000 Personen bezogen auf die Gesammtbevölkerung der Fallgruppe (`NA`, falls Altersgruppe oder Region unbekannt sind)", | ||
"missingValues": [ | ||
"NA" | ||
] | ||
} | ||
] | ||
} |
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.10401796", | ||
"title": "Laborbestätigte Influenzafälle in Deutschland", | ||
"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.10401796) und Github (https://github.com/robert-koch-institut/Influenzafaelle_in_Deutschland) verfügbar.", | ||
"homepage": "https://doi.org/10.5281/zenodo.10401796", | ||
"resources": [ | ||
{ | ||
"name": "ifsg_influenzafaelle", | ||
"type": "table", | ||
"path": "IfSG_Influenzafaelle.tsv", | ||
"scheme": "file", | ||
"format": "tsv", | ||
"mediatype": "text/csv", | ||
"schema": "Metadaten/schemas/tableschema_IfSG_Influenzafaelle.json" | ||
} | ||
] | ||
} |