import type { CustomAttribute } from './CustomAttribute'; import type { SchemaVersionReferenceDTO } from './SchemaVersionReferenceDTO'; export type SchemaVersionFrontEnd = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; readonly id?: string; schemaId: string; description?: string; version: string; displayName?: string; content?: string; readonly referencedByEventVersionIds?: Array; readonly referencedBySchemaVersionIds?: Array; schemaVersionReferences?: Array; customAttributes?: Array; readonly stateId?: string; referencedByEventVersionIdsInEventMesh?: Array; parentName?: string; readonly type?: string; };