interface RegExpOptions {
    $id?: string;
    $schema?: string;
    default?: any;
    description?: string;
    examples?: any;
    maxLength?: number;
    minLength?: number;
    readOnly?: boolean;
    title?: string;
    writeOnly?: boolean;
}

Hierarchy (view full)

Properties

$id?: string

Id for this schema

$schema?: string
default?: any

Default value for this schema

description?: string

Description of this schema

examples?: any

Example values matching this schema

maxLength?: number

The maximum length of the string

minLength?: number

The minimum length of the string

readOnly?: boolean

Optional annotation for readOnly

title?: string

Title of this schema

writeOnly?: boolean

Optional annotation for writeOnly