action anchore_get_image_metadata_by_type { label: "Get the metadata of an image by type" provider: anchore method: GET path: "/images/{imageDigest}/metadata/{mtype}" encoding: json input: { type: "object" properties: { imageDigest: { type: "string" } mtype: { type: "string" } "x-anchore-account": { type: "string" } } required: ["imageDigest", "mtype"] additionalProperties: false } output: { type: "object" description: "Generic wrapper for metadata listings from images" properties: { imageDigest: { type: "string" } metadata: { type: "object" } metadata_type: { type: "string" } } } }