You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: