Remove incorrect id
and model
properties from CreateEditResponse
#16
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The
id
andmodel
properties are defined in theCreateEditResponse
schema, but these properties are not returned by thePOST
/edits
endpoint.These two properties are also listed as required, which causes issues with tools/libraries using this OpenAPI specification.
Your Postman Collection does not list these properties for the Create Edit response, it only lists
object
,created
,choices
andusage
.This pull request removes these
id
andmodel
properties from the OpenAPI schema.Example JSON response: from
https://api.openai.com/v1/edits
as of today:The official API Reference does not mention either
id
ormodel
in the response body:So I believe these properties can be safely removed from the OpenAPI specification.
Fixes #7
Reported by @Netizine @janodev.