action flickr_get_photo_sizes_by_id { label: "getPhotoSizesByID" description: "Returns photo sizes" provider: flickr method: GET path: "/rest?method=flickr.photos.getSizes" encoding: json input: { type: "object" properties: { api_key: { type: "string" } photo_id: { type: "string" } } required: ["api_key", "photo_id"] additionalProperties: false } output: { type: "object" properties: { sizes: { type: "object" properties: { canblog: { type: "number" } candownload: { type: "number" } canprint: { type: "number" } sizes: { type: "array" items: { type: "object" properties: { height: { type: "number" } label: { type: "string" } media: { type: "string" } source: { type: "string" } url: { type: "string" } width: { type: "number" } } } } } } stat: { type: "string" } } } }