Skip to main content

Audit Event Types

This document provides a reference of all audit event types emitted by the Verified Orchestration platform. Each event has a stable Event Type ID that can be used for filtering and alerting in SIEM systems.

Event Schema

Audit events are sent to Azure Log Analytics with the following structure:

FieldDescription
EventTimeISO 8601 timestamp of when the event occurred
EventTypeIdStable event code (e.g., VO0010) - never changes once assigned
EventTypeSemantic event type (e.g., api.graphql.operation)
MessageHuman-readable description of the event
PropertiesAdditional context specific to the event type

Event Type ID Format

Event Type IDs follow the format VO#### where:

  • VO = Verified Orchestration (organization prefix)
  • #### = Sequential number assigned to each event type

Important: Event Type IDs are stable identifiers that never change once assigned. Use these for SIEM rules and alerts.

API Events

Events related to API operations including GraphQL queries, mutations, and subscriptions.

Event Type IDEvent TypeDescription
VO0010api.graphql.operationAPI GraphQL Operation
VO0011api.graphql.queryAPI GraphQL Query
VO0012api.graphql.mutationAPI GraphQL Mutation
VO0013api.graphql.subscriptionAPI GraphQL Subscription

OIDC Events

Events related to OpenID Connect authentication flows, including login, logout, and authorization.

Event Type IDEvent TypeDescription
VO0030oidc.interaction.startedOIDC Interaction Started
VO0031oidc.interaction.endedOIDC Interaction Ended
VO0032oidc.par.succeededOIDC PAR Succeeded
VO0033oidc.authorization.succeededOIDC Authorization Succeeded
VO0034oidc.authorization.failedOIDC Authorization Failed
VO0035oidc.grant.succeededOIDC Grant Succeeded
VO0036oidc.backchannel.succeededOIDC Backchannel Succeeded
VO0037oidc.registration.createdOIDC Registration Created
VO0038oidc.registration.updatedOIDC Registration Updated
VO0039oidc.registration.deletedOIDC Registration Deleted
VO0040oidc.presentation.createdOIDC Presentation Created
VO0041oidc.session.startedOIDC Session Started
VO0042oidc.session.endedOIDC Session Ended

Presentation Events

Events related to verifiable credential presentations (verification requests).

Event Type IDEvent TypeDescription
VO0060presentation.request.createdPresentation Request Created
VO0061presentation.request.retrievedPresentation Request Retrieved
VO0062presentation.request.completedPresentation Request Completed
VO0063presentation.request.failedPresentation Request Failed

Issuance Events

Events related to verifiable credential issuance.

Event Type IDEvent TypeDescription
VO0080issuance.request.createdIssuance Request Created
VO0081issuance.request.retrievedIssuance Request Retrieved
VO0082issuance.credential.issuedIssuance Credential Issued
VO0083issuance.credential.revokedIssuance Credential Revoked
VO0084issuance.credential.failedIssuance Credential Failed

Async Issuance Events

Events related to async (remote) issuance workflows, including notifications and request lifecycle.

Event Type IDEvent TypeDescription
VO0100async-issuance.request.createdAsync Issuance Request Created
VO0101async-issuance.request.claimedAsync Issuance Request Claimed
VO0102async-issuance.contact.fetchedAsync Issuance Contact Fetched
VO0103async-issuance.contact.updatedAsync Issuance Contact Updated
VO0104async-issuance.notification~email.sentAsync Issuance Notification Email Sent
VO0105async-issuance.notification~sms.sentAsync Issuance Notification SMS Sent
VO0106async-issuance.notification.resend~queuedAsync Issuance Notification Resend Queued
VO0107async-issuance.notification~email.statusAsync Issuance Notification Email Status
VO0108async-issuance.notification~sms.statusAsync Issuance Notification SMS Status
VO0109async-issuance.notification.resend~failedAsync Issuance Notification Resend Failed
VO0110async-issuance.notification~email.failedAsync Issuance Notification Email Failed
VO0111async-issuance.notification~sms.failedAsync Issuance Notification SMS Failed
VO0112async-issuance.notification~job.failedAsync Issuance Notification Job Failed
VO0113async-issuance.request.cancelled~queuedAsync Issuance Request Cancelled Queued
VO0114async-issuance.request.cancelled~commandAsync Issuance Request Cancelled Command
VO0115async-issuance.request.cancelled~jobAsync Issuance Request Cancelled Job
VO0116async-issuance.request.cancelled~failedAsync Issuance Request Cancelled Failed

SIEM Integration

When integrating with your SIEM system, we recommend:

  1. Filter by EventTypeId for precise event matching
  2. Use EventType for human-readable categorization
  3. Parse Properties for detailed event context

Machine-Readable Event Catalog

Download the complete event catalog in JSON format for import into your SIEM:

Download audit-events.json

This file is automatically generated and kept in sync with the platform.

See the Audit documentation for sample audit entries and integration guidance.