Document the corpus filter on RemoveSelection
https://redmine.teklia.com/issues/7882
The @extend_schema_view that documents RemoveSelection includes the optional id filter, which is used to remove elements from the selection one at a time, but it does not include the corpus filter, which unselects all elements of a corpus at once. This lead us to believe we did not have this filter yet, when we always had it, and makes this filter unusable in the API client.
- A
help_textshould be added to the existingidfield to document that when set, only this element ID will be removed from the selection. - A new
corpusfield should be added with anotherhelp_textto document that when set, only elements with this corpus ID will be removed from the selection.
The behavior of the backend does not change, this only updates the docs found in /api-docs/ to reflect the existing behavior.