Skip to content

Commit

Permalink
Merge pull request #164 from enesonus/OVTF-258-dev
Browse files Browse the repository at this point in the history
Swagger Update
  • Loading branch information
bilalbdertli authored Jan 20, 2024
2 parents 226697d + f44bba8 commit 1fe8e29
Showing 1 changed file with 32 additions and 3 deletions.
35 changes: 32 additions & 3 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -4743,17 +4743,46 @@
],
"responses": {
"200": {
"description": "asd",
"description": "List of playlists retrieved successfully",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"playlists": {
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Playlist"
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"song_imgs": {
"type": "array",
"items": {
"type": "string",
"format": "url"
}
},
"user_id": {
"type": "integer",
"nullable": true
},
"friend_group_id": {
"type": "integer",
"nullable": true
}
}
}
},
"count": {
"type": "integer"
}
}
}
Expand Down

0 comments on commit 1fe8e29

Please sign in to comment.