interface IString {
    contentMediaType?: string;
    default?: null | string;
    deprecated?: boolean;
    description?: string;
    enum?: (null | string)[];
    example?: any;
    examples?: Record<string, any>;
    format?:
        | string & {}
        | "binary"
        | "byte"
        | "password"
        | "regex"
        | "uuid"
        | "email"
        | "hostname"
        | "idn-email"
        | "idn-hostname"
        | "iri"
        | "iri-reference"
        | "ipv4"
        | "ipv6"
        | "uri"
        | "uri-reference"
        | "uri-template"
        | "url"
        | "date-time"
        | "date"
        | "time"
        | "duration"
        | "json-pointer"
        | "relative-json-pointer";
    maxLength?: number;
    minLength?: number;
    nullable?: boolean;
    pattern?: string;
    title?: string;
    type: "string";
}

Hierarchy (View Summary)

Properties

contentMediaType?: string
default?: null | string
deprecated?: boolean
description?: string
enum?: (null | string)[]
example?: any
examples?: Record<string, any>
format?:
    | string & {}
    | "binary"
    | "byte"
    | "password"
    | "regex"
    | "uuid"
    | "email"
    | "hostname"
    | "idn-email"
    | "idn-hostname"
    | "iri"
    | "iri-reference"
    | "ipv4"
    | "ipv6"
    | "uri"
    | "uri-reference"
    | "uri-template"
    | "url"
    | "date-time"
    | "date"
    | "time"
    | "duration"
    | "json-pointer"
    | "relative-json-pointer"
maxLength?: number
minLength?: number
nullable?: boolean
pattern?: string
title?: string
type: "string"