action shutterstock_validate { label: "Validate input" provider: shutterstock method: GET path: "/v2/test/validate" encoding: json input: { type: "object" properties: { id: { type: "integer" } tag: { type: "array" items: { type: "string" } } "user-agent": { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Validation results" properties: { header: { type: "object" description: "Validation results" properties: { "user-agent": { type: "string" description: "User agent to expect in the response" } } } query: { type: "object" description: "Validation results" required: ["id"] properties: { id: { type: "integer" description: "Integer ID that was passed in the request" } tag: { type: "array" description: "List of tags that were passed in the request" items: { type: "string" } } } } } } }