---
title: "EventTimeLineInstance"
url: "https://developers.zinnia.com/apis/case-management-1-0-0/versions/0091226b-6452-4e75-93ce-4bbfe022aad5/schemas/EventTimeLineInstance"
---

> Full API specification: https://developers.zinnia.com/apis/case-management-1-0-0/versions/0091226b-6452-4e75-93ce-4bbfe022aad5.md

# EventTimeLineInstance

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Case Management API
  version: 1.0.0
servers:
  - url: https://dev.api.zinnia.io/
    description: Dev Environment
  - url: https://qa.api.zinnia.io/
    description: QA Environment
  - url: https://uat.api.zinnia.io/
    description: UAT Environment
  - url: https://api.zinnia.io/
    description: PROD Environment
components:
  schemas:
    EventInstance:
      type: object
      properties:
        id:
          type: string
          description: A unique identifier for the event instance.
        source:
          type: string
        eventName:
          type: string
          description: The name of the event that occurred.
        eventGroup:
          type: string
          description: The group to which this event belongs.
        eventTs:
          type: string
          format: date-time
          description: The timestamp when the event occurred.
        correlationId:
          type: string
          description: An identifier used to correlate related cases.
        payload:
          type: string
          description: The payload of the event, typically containing detailed information.
        identifiers:
          type: array
          items:
            type: object
            description: A list of identifiers associated with the event.
            properties:
              identifier:
                type: string
                description: The type of identifier.
              value:
                type: string
                description: The value of the identifier.
    EventTimeLineInstance:
      type: array
      items:
        $ref: "#/components/schemas/EventInstance"
```
