File tree Expand file tree Collapse file tree 4 files changed +54
-3
lines changed
spotify-web-api-open-api/src/main/resources/patches Expand file tree Collapse file tree 4 files changed +54
-3
lines changed Original file line number Diff line number Diff line change @@ -6265,7 +6265,8 @@ components:
62656265 - show
62666266 properties :
62676267 show :
6268- $ref : ' #/components/schemas/SimplifiedShowObject'
6268+ allOf :
6269+ - $ref : ' #/components/schemas/SimplifiedShowObject'
62696270 description : |
62706271 The show on which the episode belongs.
62716272 SimplifiedEpisodeObject :
@@ -6795,7 +6796,8 @@ components:
67956796 - audiobook
67966797 properties :
67976798 audiobook :
6798- $ref : ' #/components/schemas/SimplifiedAudiobookObject'
6799+ allOf :
6800+ - $ref : ' #/components/schemas/SimplifiedAudiobookObject'
67996801 description : |
68006802 The audiobook for which the chapter belongs.
68016803 SimplifiedChapterObject :
@@ -6950,7 +6952,8 @@ components:
69506952 description : |
69516953 The artists of the album. Each artist object includes a link in `href` to more detailed information about the artist.
69526954 tracks :
6953- $ref : ' #/components/schemas/PagingSimplifiedTrackObject'
6955+ allOf :
6956+ - $ref : ' #/components/schemas/PagingSimplifiedTrackObject'
69546957 description : |
69556958 The tracks of the album.
69566959 popularity :
Original file line number Diff line number Diff line change 1+ description : fix tracks property of AlbumObject
2+ operations :
3+ # popularity
4+ - op : test
5+ path : " $.components.schemas.AlbumObject.allOf[1].properties.tracks"
6+ value :
7+ $ref : ' #/components/schemas/PagingSimplifiedTrackObject'
8+ description : |
9+ The tracks of the album.
10+ - op : set
11+ path : " $.components.schemas.AlbumObject.allOf[1].properties.tracks"
12+ value :
13+ allOf :
14+ - $ref : ' #/components/schemas/PagingSimplifiedTrackObject'
15+ description : |
16+ The tracks of the album.
Original file line number Diff line number Diff line change 1+ description : fix audiobook property of ChapterObject
2+ operations :
3+ # popularity
4+ - op : test
5+ path : " $.components.schemas.ChapterObject.allOf[1].properties.audiobook"
6+ value :
7+ $ref : ' #/components/schemas/SimplifiedAudiobookObject'
8+ description : |
9+ The audiobook for which the chapter belongs.
10+ - op : set
11+ path : " $.components.schemas.ChapterObject.allOf[1].properties.audiobook"
12+ value :
13+ allOf :
14+ - $ref : ' #/components/schemas/SimplifiedAudiobookObject'
15+ description : |
16+ The audiobook for which the chapter belongs.
Original file line number Diff line number Diff line change 1+ description : fix show property of EpisodeObject
2+ operations :
3+ # popularity
4+ - op : test
5+ path : " $.components.schemas.EpisodeObject.allOf[1].properties.show"
6+ value :
7+ $ref : ' #/components/schemas/SimplifiedShowObject'
8+ description : |
9+ The show on which the episode belongs.
10+ - op : set
11+ path : " $.components.schemas.EpisodeObject.allOf[1].properties.show"
12+ value :
13+ allOf :
14+ - $ref : ' #/components/schemas/SimplifiedShowObject'
15+ description : |
16+ The show on which the episode belongs.
You can’t perform that action at this time.
0 commit comments