import type { CustomAttribute } from './CustomAttribute'; export type SchemaObject = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; readonly id?: string; applicationDomainId: string; name: string; shared?: boolean; /** * *Deprecation Date: 2022-04-30
Removal Date: 2023-04-30
Reason: Content types are a runtime concept and don’t provide useful value in their current implementation.*
*/ contentType?: string; schemaType: string; readonly numberOfVersions?: number; readonly eventVersionRefCount?: number; customAttributes?: Array; readonly type?: string; };