addedOutput schema / $defs
Added value: +{
+ "Playlist": {
+ "description": "A Spotify playlist.",
+ "properties": {
+ "description": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Description"
+ },
+ "id": {
+ "title": "Id",
+ "type": "string"
+ },
+ "name": {
+ "title": "Name",
+ "type": "string"
+ },
+ "owner": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Owner"
+ },
+ "public": {
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Public"
+ },
+ "total_tracks": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Total Tracks"
+ },
+ "tracks": {
+ "anyOf": [
+ {
+ "items": {
+ "$ref": "#/$defs/Track"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Tracks"
+ }
+ },
+ "required": [
+ "name",
+ "id"
+ ],
+ "title": "Playlist",
+ "type": "object"
+ },
+ "Track": {
+ "description": "A Spotify track with metadata.",
+ "properties": {
+ "added_at": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Added At"
+ },
+ "album": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Album"
+ },
+ "album_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Album Id"
+ },
+ "artist": {
+ "title": "Artist",
+ "type": "string"
+ },
+ "artists": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Artists"
+ },
+ "duration_ms": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Duration Ms"
+ },
+ "external_urls": {
+ "anyOf": [
+ {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "External Urls"
+ },
+ "id": {
+ "title": "Id",
+ "type": "string"
+ },
+ "name": {
+ "title": "Name",
+ "type": "string"
+ },
+ "popularity": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Popularity"
+ },
+ "release_date": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Release Date"
+ }
+ },
+ "required": [
+ "name",
+ "id",
+ "artist"
+ ],
+ "title": "Track",
+ "type": "object"
+ }
+}
addedOutput schema / properties
Added value: +{
+ "items": {
+ "items": {
+ "$ref": "#/$defs/Playlist"
+ },
+ "title": "Items",
+ "type": "array"
+ },
+ "limit": {
+ "title": "Limit",
+ "type": "integer"
+ },
+ "next": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Next"
+ },
+ "offset": {
+ "title": "Offset",
+ "type": "integer"
+ },
+ "previous": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Previous"
+ },
+ "total": {
+ "title": "Total",
+ "type": "integer"
+ }
+}