Skip to content

Files

Latest commit

 

History

History
37 lines (23 loc) · 1.21 KB

EventSchema.md

File metadata and controls

37 lines (23 loc) · 1.21 KB

EventSchema

Structure of an event schema

Properties

Name Type Description Notes
name String Name of the event. Must be unique for an organization.
description String Description of the event [optional]
version Integer Version of event schema
status StatusEnum Status of event schema * DRAFT - Schema is in draft state * ACTIVE - Schema is currently active * INACTIVE - Schema is currently inactive * ARCHIVED - Older version of event schema [optional]
attributes Set<EventAttributeSchema> [optional]
dimensions Set<DimensionsSchema> [optional]
enrichments Enrichments [optional]
createdAt OffsetDateTime [optional]
updatedAt OffsetDateTime [optional]

Enum: StatusEnum

Name Value
DRAFT "DRAFT"
ACTIVE "ACTIVE"
INACTIVE "INACTIVE"
ARCHIVED "ARCHIVED"

Implemented Interfaces

  • Serializable