action flickr_get_album_context_by_id { label: "getAlbumContextByID" description: "Returns next and previous photos for a photo in a set" provider: flickr method: GET path: "/rest?method=flickr.photosets.getContext" encoding: json input: { type: "object" properties: { api_key: { type: "string" } photo_id: { type: "string" } photoset_id: { type: "string" } } required: ["api_key", "photo_id"] additionalProperties: false } output: { type: "object" properties: { count: { type: "object" properties: { _content: { type: "string" } } } nextphoto: { type: "object" properties: { farm: { type: "string" } id: { type: "string" } is_faved: { type: "boolean" } license: { type: "integer" } media: { type: "string" } owner: { type: "string" } safe: { type: "boolean" } secret: { type: "string" } server: { type: "string" } thumb: { type: "string" } title: { type: "string" } url: { type: "string" } } } prevphoto: { type: "object" additionalProperties: true } stat: { type: "string" } } } }