Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: invalid example GeoJSON in swagger #835

Merged
merged 7 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## Current Main

### Bug Fixes

- fixed invalid example GeoJSON in swagger ([#835])
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could reference the issue itself here (#831) rather than the PR.
Or do you see an advantage in using the PR?
The issue is a more permanent thing compared to the PR.


[#835]: https://github.com/GIScience/ohsome-quality-api/pull/835


## Release 1.5.0

### Breaking Changes
Expand Down
3 changes: 2 additions & 1 deletion ohsome_quality_api/api/request_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ class BaseBpolys(BaseConfig):
]
],
},
},
"properties": {},
}
],
}
)
Expand Down