action anchore_get_image_by_image_id { label: "Lookup image by docker imageId" provider: anchore method: GET path: "/images/by_id/{imageId}" encoding: json input: { type: "object" properties: { imageId: { type: "string" } "x-anchore-account": { type: "string" } } required: ["imageId"] additionalProperties: false } output: { type: "array" description: "A list of Anchore Images" items: { type: "object" description: "A unique image in the engine. May have multiple tags or references. Unique to an image content across registries or repositories." properties: { analysis_status: { type: "string" description: "A state value for the current status of the analysis progress of the image" enum: ["not_analyzed", "analyzing", "analyzed", "analysis_failed"] } annotations: { type: "object" } created_at: { type: "string" format: "date-time" } imageDigest: { type: "string" } image_content: { type: "object" description: "A metadata content record for a specific image, containing different content type entries" } image_detail: { type: "array" description: "Details specific to an image reference and type such as tag and image source" items: { type: "object" description: "A metadata detail record for a specific image. Multiple detail records may map a single catalog image." properties: { created_at: { type: "string" format: "date-time" } dockerfile: { type: "string" } fulldigest: { type: "string" description: "Full docker-pullable digest string including the registry url and repository necessary get the image" } fulltag: { type: "string" description: "Full docker-pullable tag string referencing the image" } imageDigest: { type: "string" description: "The parent Anchore Image record to which this detail maps" } imageId: { type: "string" } last_updated: { type: "string" format: "date-time" } registry: { type: "string" } repo: { type: "string" } userId: { type: "string" } } } } image_status: { type: "string" description: "State of the image" enum: ["active", "inactive", "disabled"] } last_updated: { type: "string" format: "date-time" } record_version: { type: "string" description: "The version of the record, used for internal schema updates and data migrations." } userId: { type: "string" } } } } }