action anchore_get_event { label: "Get Event" description: "Lookup an event by its event ID" provider: anchore method: GET path: "/events/{eventId}" encoding: json input: { type: "object" properties: { eventId: { type: "string" } "x-anchore-account": { type: "string" } } required: ["eventId"] additionalProperties: false } output: { type: "object" description: "A record of occurance of an asynchronous event triggered either by system or by user activity" properties: { created_at: { type: "string" format: "date-time" } event: { type: "object" properties: { category: { type: "string" } details: { type: "object" } level: { type: "string" } message: { type: "string" } resource: { type: "object" properties: { id: { type: "string" } type: { type: "string" } user_id: { type: "string" } } } source: { type: "object" properties: { base_url: { type: "string" } hostid: { type: "string" } request_id: { type: "string" } servicename: { type: "string" } } } timestamp: { type: "string" format: "date-time" } type: { type: "string" } } } generated_uuid: { type: "string" } } } }