import { SchemaBase } from '../generic/SchemaBase'; export type StringBsonSchema = SchemaBase & { readonly bsonType: 'string'; readonly minLength?: number; readonly maxLength?: number; readonly pattern?: string; readonly examples?: string[]; };