action anchore_list_retrieved_files { label: "Return a list of analyzer artifacts of the specified type" provider: anchore method: GET path: "/images/{imageDigest}/artifacts/retrieved_files" encoding: json input: { type: "object" properties: { imageDigest: { type: "string" } } required: ["imageDigest"] additionalProperties: false } output: { type: "array" description: "Simple array of RetrievedFileMetadata objects" items: { type: "object" description: "The retrieved file entry including content (b64 encoded)" properties: { b64_content: { type: "string" } path: { type: "string" } } } } }