> ## Documentation Index
> Fetch the complete documentation index at: https://docs.domesystems.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Event Catalog Entry

> GetEventCatalogEntry returns the customer-safe public contract for one
 exact audit event type. Internal producer and storage metadata is omitted.



## OpenAPI

````yaml GET /v1/audit/catalog/{event_type}
openapi: 3.0.3
info:
  title: Dome Platform API
  description: Connect and REST APIs for the Dome agent governance platform.
  version: 2.0.0
servers:
  - url: https://api.domesystems.ai
    description: Production
security: []
tags:
  - name: Agents
  - name: Authorization
  - name: Guards
  - name: Tools
  - name: Tool Catalog
  - name: Models
  - name: Model Pools
  - name: Quotas
  - name: Gateways
  - name: Webhooks
  - name: Audit
  - name: Workspaces
  - name: Access Control
  - name: Tenants
  - name: Platform Keys
  - name: Enrollment
  - name: Platform
  - name: Identity
paths:
  /v1/audit/catalog/{event_type}:
    get:
      tags:
        - Audit
      description: |-
        GetEventCatalogEntry returns the customer-safe public contract for one
         exact audit event type. Internal producer and storage metadata is omitted.
      operationId: Audit_GetEventCatalogEntry
      parameters:
        - name: event_type
          in: path
          required: true
          schema:
            type: string
        - name: workspace_id
          in: query
          description: >-
            workspace_id and org_id use the same resolved permission semantics
            as the
             list request and the event-read RPCs.
          schema:
            type: string
        - name: org_id
          in: query
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetEventCatalogEntryResponse'
components:
  schemas:
    GetEventCatalogEntryResponse:
      type: object
      properties:
        catalog_version:
          type: string
        catalog_hash:
          type: string
        entry:
          $ref: '#/components/schemas/AuditEventCatalogEntry'
    AuditEventCatalogEntry:
      type: object
      properties:
        event_type:
          type: string
        display_name:
          type: string
        event_class:
          type: integer
          format: enum
        subsystem:
          type: string
        producer_status:
          type: integer
          format: enum
        lifecycle_phase:
          type: string
        allowed_results:
          type: array
          items:
            type: integer
            format: enum
        attempted_operation:
          type: integer
          format: enum
        audit_access:
          type: boolean
        availability:
          type: string
        fields:
          type: array
          items:
            $ref: '#/components/schemas/AuditEventCatalogField'
      description: >-
        AuditEventCatalogEntry is the safe public projection for one event type.
        It
         never includes payload type names, Axiom/Parquet flags, producer ownership,
         tracking issues, review dates, or internal rationale.
    AuditEventCatalogField:
      type: object
      properties:
        json_name:
          type: string
        kind:
          type: string
          description: >-
            kind is the protobuf scalar token (for example string or uint64),
            message,
             or enum. Message and enum type names are intentionally not exposed.
        repeated:
          type: boolean
        filterable:
          type: boolean
        pii:
          type: integer
          format: enum
      description: >-
        AuditEventCatalogField describes one customer-visible JSON payload
        field.
         It deliberately excludes protobuf/Go names and storage projection flags.

````