-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
From openAPI-3 spec of spotify.
The paths./playlists/{playlist_id}/images.put.requestBody.content.image/jpeg.schema.required path is True.
"requestBody": {
"content": {
"image/jpeg": {
"schema": {
"example": ... ,
"format": "byte",
"type": "string",
"required": true,
"description": "Base64 encoded JPEG image data, maximum payload size is 256 KB."
}
}
}
},
But the module asks it to be a list type. openapi3.errors.SpecError: Expected paths./playlists/{playlist_id}/images.put.requestBody.content.image/jpeg.schema.required to be one of [<class 'list'>], got <class 'bool'>
How to solve this?
Metadata
Metadata
Assignees
Labels
No labels