action art19_get_classification_inclusions { label: "Get ClassificationInclusion records" description: "Classification Inclusions connect classifications with entities like series, episodes, or campaigns, amongst others.\n\nIn order to retrieve a set of classification inclusions, at least one of the following filter parameters must\nbe provided. Failing to do so renders a `400 Bad Request` response.\n\n- `ids[]`\n- `classified_id` and `classified_type`\n- `classified_id` and `classification_type`\n- `classification_id` and `classified_type`\n" provider: art19 method: GET path: "/classification_inclusions" encoding: json input: { type: "object" properties: { classification_id: { type: "string" format: "uuid" } classification_type: { type: "string" enum: ["AlternateFeedType", "Genre", "Industry", "Language", "MediaRating"] } classified_id: { type: "string" format: "uuid" } classified_type: { type: "string" enum: ["Series", "Season", "Episode"] } "ids[]": { type: "array" items: { type: "string" format: "uuid" } } "page[number]": { type: "integer" } "page[size]": { type: "integer" } q: { type: "string" } sort: { type: "array" items: { type: "string" enum: ["classification_value", "created_at", "position"] } } } additionalProperties: false } output: { type: "object" additionalProperties: true } }