action shutterstock_get_editorial_image_livefeed { label: "Get editorial livefeed" provider: shutterstock method: GET path: "/v2/editorial/images/livefeeds/{id}" encoding: json input: { type: "object" properties: { country: { type: "string" format: "country-code-3" } id: { type: "string" } } required: ["country", "id"] additionalProperties: false } output: { type: "object" description: "Metadata about editorial livefeed" required: ["id", "name", "total_item_count"] properties: { cover_item: { type: "object" description: "Cover image for editorial livefeed" required: ["id", "url"] properties: { height: { type: "integer" } id: { type: "string" } url: { type: "string" } width: { type: "integer" } } } created_time: { type: "string" format: "date-time" description: "When the livefeed was initially created" } id: { type: "string" description: "Livefeed ID" } name: { type: "string" description: "Name of the livefeed" } total_item_count: { type: "integer" description: "Total count of items in the livefeed" } } } }