action art19_get_classifications { label: "Get a list of classifications" provider: art19 method: GET path: "/classifications" encoding: json input: { type: "object" properties: { "ids[]": { type: "array" items: { type: "string" format: "uuid" } } is_country: { type: "string" } "page[number]": { type: "integer" } "page[size]": { type: "integer" } q: { type: "string" } sort: { type: "array" items: { type: "string" enum: ["created_at", "updated_at", "value"] } } type: { type: "string" enum: ["AlternateFeedType", "Genre", "Industry", "Language", "MediaRating"] } } additionalProperties: false } output: { type: "object" additionalProperties: true } }