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