action flickr_get_license_by_id { label: "getLicenseByID" description: "Fetches a list of available photo licenses for Flickr" provider: flickr method: GET path: "/rest?method=flickr.photos.licenses.getInfo" encoding: json input: { type: "object" properties: { api_key: { type: "string" } } required: ["api_key"] additionalProperties: false } output: { type: "object" properties: { licenses: { type: "object" properties: { license: { type: "array" items: { type: "object" properties: { id: { type: "integer" } name: { type: "string" } url: { type: "string" } } } } } } stat: { type: "string" } } } }