import { SchemaBase } from '../generic'; import { JsonSchemaOrPrimitive } from './JsonSchemaOrPrimitive'; export type UnionJsonSchema = SchemaBase & { readonly anyOf: readonly JsonSchemaOrPrimitive[]; readonly description?: string; readonly default?: unknown; readonly examples?: unknown[]; };