> ## 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.

# List Event Catalog

> ListEventCatalog returns the complete compact audit-event vocabulary. It
 is intentionally unpaginated: clients receive the full bounded list and
 filter it locally, then call GetEventCatalogEntry for exact field detail.



## OpenAPI

````yaml GET /v1/audit/catalog
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:
    get:
      tags:
        - Audit
      description: |-
        ListEventCatalog returns the complete compact audit-event vocabulary. It
         is intentionally unpaginated: clients receive the full bounded list and
         filter it locally, then call GetEventCatalogEntry for exact field detail.
      operationId: Audit_ListEventCatalog
      parameters:
        - name: workspace_id
          in: query
          description: >-
            workspace_id optionally narrows permission resolution to one
            workspace,
             matching QueryEvents. Supplying an unreadable workspace is denied.
          schema:
            type: string
        - name: org_id
          in: query
          description: >-
            org_id optionally widens permission resolution to one organization.
            If
             workspace_id is also set, workspace_id wins as the narrower scope.
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListEventCatalogResponse'
components:
  schemas:
    ListEventCatalogResponse:
      type: object
      properties:
        catalog_version:
          type: string
          description: |-
            catalog_version versions the public projection schema; catalog_hash
             changes whenever any public entry or field metadata changes.
        catalog_hash:
          type: string
        entries:
          type: array
          items:
            $ref: '#/components/schemas/AuditEventCatalogEntrySummary'
    AuditEventCatalogEntrySummary:
      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
      description: >-
        AuditEventCatalogEntrySummary is the bounded list projection. It omits
        field
         detail so the complete catalog stays compact enough to hand to an agent.

````