AutoBE
    Preparing search index...

    Interface AutoBeInterfaceSchemaPropertyNullish

    Change the nullability or required status of a property.

    Use for DB nullable to DTO non-null violations. Do not use for the reverse (DB non-null to DTO nullable is intentionally allowed).

    Samchon

    interface AutoBeInterfaceSchemaPropertyNullish {
        databaseSchemaProperty: string | null;
        description: string | null;
        key: string;
        nullable: boolean;
        reason: string;
        required: boolean;
        specification: string | null;
        type: "nullish";
    }
    Index

    Properties

    databaseSchemaProperty: string | null

    Database schema property this maps to, or null for computed properties.

    description: string | null

    Updated description, or null to preserve existing.

    key: string

    Property key to modify.

    nullable: boolean

    Whether property should accept null values.

    reason: string

    Evidence and reasoning for nullability change.

    Describe the DB nullable vs DTO non-null mismatch.

    required: boolean

    Whether property should be in required array.

    specification: string | null

    Updated specification, or null to preserve existing.

    type: "nullish"

    Discriminator for property revision type.