BSB Node.js Type Definitions
    Preparing search index...

    Interface BSBStringType

    String type with optional validation constraints.

    interface BSBStringType {
        description?: string;
        optional?: boolean;
        nullable?: boolean;
        _bsb: "string";
        minLength?: number;
        maxLength?: number;
        pattern?: string;
        format?: "url" | "email" | "uuid" | "datetime" | "uri";
    }

    Hierarchy (View Summary)

    Index

    Properties

    description?: string

    Human-readable description for documentation

    optional?: boolean

    Whether this field is optional

    nullable?: boolean

    Whether this field can be null

    _bsb: "string"

    Type discriminator for JSON serialization

    minLength?: number
    maxLength?: number
    pattern?: string
    format?: "url" | "email" | "uuid" | "datetime" | "uri"