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