action flickr_get_photo_exif_by_id { label: "getPhotoExifByID" description: "Retrieves a list of EXIF/TIFF/GPS tags for a given photo. The calling user must have permission to view the photo." provider: flickr method: GET path: "/rest?method=flickr.photos.getExif" encoding: json input: { type: "object" properties: { api_key: { type: "string" } photo_id: { type: "string" } secret: { type: "string" } } required: ["api_key", "photo_id"] additionalProperties: false } output: { type: "object" properties: { photo: { type: "object" properties: { camera: { type: "string" } exif: { type: "array" items: { type: "object" properties: { label: { type: "string" } raw: { type: "object" properties: { _content: { type: "string" } } } tag: { type: "string" } tagspace: { type: "string" } tagspaceid: { type: "string" } } } } farm: { type: "string" } id: { type: "string" } secret: { type: "string" } server: { type: "string" } } } stat: { type: "string" } } } }