Skip to content

Commit

Permalink
removed the last important reference to reports
Browse files Browse the repository at this point in the history
  • Loading branch information
JanReifenrath committed Sep 3, 2024
1 parent 74152a4 commit 196662c
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions tests/integrationtests/api/response_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,29 +72,3 @@ def get_indicator_feature_schema() -> Schema:
},
ignore_extra_keys=True,
)


def get_report_feature_schema() -> Schema:
schema = Schema(
{
"type": "Feature",
"geometry": dict,
Opt("id"): Or(str, int),
"properties": {
"report": {
"metadata": {
"name": str,
"description": str,
},
"result": {
"class": Or(int, None),
"label": str,
"description": str,
},
},
"indicators": [get_indicator_properties_template()],
},
},
ignore_extra_keys=True,
)
return schema

0 comments on commit 196662c

Please sign in to comment.