action anchore_get_archived_analysis { label: "get_archived_analysis" description: "Returns the archive metadata record identifying the image and tags for the analysis in the archive." provider: anchore method: GET path: "/archives/images/{imageDigest}" encoding: json input: { type: "object" properties: { imageDigest: { type: "string" } } required: ["imageDigest"] additionalProperties: false } output: { type: "object" properties: { analyzed_at: { type: "string" format: "date-time" } annotations: { type: "object" description: "User provided annotations as key-value pairs" } archive_size_bytes: { type: "integer" description: "The size, in bytes, of the analysis archive file" } created_at: { type: "string" format: "date-time" } imageDigest: { type: "string" description: "The image digest (digest of the manifest describing the image, per docker spec)" } image_detail: { type: "array" description: "List of tags associated with the image digest" items: { type: "object" description: "A docker-pullable tag value as well as deconstructed components" properties: { detected_at: { type: "string" format: "date-time" description: "The timestamp at which the Anchore Engine detected this tag was mapped to the image digest. Does not necessarily indicate when the tag was actually pushed to the registry." } pullstring: { type: "string" description: "The pullable string for the tag. E.g. \"docker.io/library/node:latest\"" } registry: { type: "string" description: "The registry hostname:port section of the pull string" } repository: { type: "string" description: "The repository section of the pull string" } tag: { type: "string" description: "The tag-only section of the pull string" } } } } last_updated: { type: "string" format: "date-time" } parentDigest: { type: "string" description: "The digest of a parent manifest (for manifest-list images)" } status: { type: "string" description: "The archival status" enum: ["archiving", "archived", "deleting", "deleted"] } } } }