@typia/website
    Preparing search index...
    interface IString {
        contentMediaType?: string;
        default?: null | string;
        deprecated?: boolean;
        description?: string;
        enum?: (null | string)[];
        example?: any;
        examples?: any[] | 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)

    Index

    Properties

    contentMediaType?: string
    default?: null | string
    deprecated?: boolean

    Whether the type is deprecated or not.

    description?: string

    Detailed description of the schema.

    enum?: (null | string)[]
    example?: any

    Example value.

    examples?: any[] | 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

    Title of the schema.

    type: "string"

    Discriminator value of the type.