action spotify_get_playlist { label: "Get Playlist\n" description: "Get a playlist owned by a Spotify user.\n" provider: spotify method: GET path: "/playlists/{playlist_id}" encoding: json input: { type: "object" properties: { fields: { type: "string" description: "Filters for the query: a comma-separated list of the\nfields to return. If omitted, all fields are returned. For example, to get\njust the playlist''s description and URI: `fields=description,uri`. A dot\nseparator can be used to specify non-reoccurring fields, while parentheses\ncan be used to specify reoccurring fields within objects. For example, to\nget just the added date and user ID of the adder: `fields=tracks.items(added_at,added_by.id)`.\nUse multiple parentheses to drill down into nested objects, for example: `fields=tracks.items(track(name,href,album(name,href)))`.\nFields can be excluded by prefixing them with an exclamation mark, for example:\n`fields=tracks.items(track(name,href,album(!name,href)))`\n" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }