action anchore_get_image_policy_check_by_image_id { label: "Check policy evaluation status for image" description: "Get the policy evaluation for the given image" provider: anchore method: GET path: "/images/by_id/{imageId}/check" encoding: json input: { type: "object" properties: { detail: { type: "boolean" } history: { type: "boolean" } imageId: { type: "string" } policyId: { type: "string" } tag: { type: "string" } "x-anchore-account": { type: "string" } } required: ["imageId", "tag"] additionalProperties: false } output: { type: "array" description: "Evaluation response object" items: { type: "object" description: "Evaluation response object" } } }