action anchore_archive_image_analysis { label: "archive_image_analysis" provider: anchore method: POST path: "/archives/images" encoding: json input: { type: "array" description: "List of image digests to archive" items: { type: "string" description: "Image digest" } } output: { type: "array" description: "List of analysis archive add results" items: { type: "object" description: "The result of adding a single digest to the archive" properties: { detail: { type: "string" description: "Details on the status, e.g. the error message" } digest: { type: "string" description: "The image digest requested to be added" } status: { type: "string" description: "The status of the archive add operation. Typically either 'archived' or 'error'" enum: ["archived", "archiving", "error"] } } } } }