remove body parameter for OpenAPI delete paths

This commit is contained in:
Tom Kralidis
2022-09-19 18:00:38 -04:00
parent faa00e7c92
commit e2e12e9bd4
-6
View File
@@ -651,12 +651,6 @@ def get_oas_30(cfg):
'produces': ['application/json'],
'parameters': [
{'$ref': '{}#/components/parameters/featureId'.format(OPENAPI_YAML['oapif'])}, # noqa
{
'in': 'body',
'name': 'body',
'description': 'Updates item in collection',
'required': True,
}
],
'responses': {
'200': {'description': 'Successful delete'},