AutoBE
    Preparing search index...

    Interface AutoBeInterfaceSchemaPropertyErase

    Remove an existing property from a DTO schema.

    Use when a property should not exist: phantom fields, security violations, actor identity in requests, or system-managed fields in Create DTOs.

    Samchon

    interface AutoBeInterfaceSchemaPropertyErase {
        databaseSchemaProperty: string | null;
        key: string;
        reason: string;
        type: "erase";
    }
    Index

    Properties

    databaseSchemaProperty: string | null

    Database schema property this maps to, or null if none.

    For erase, this should typically be null (phantom) or identify the DB property that shouldn't be exposed.

    key: string

    Property key to remove.

    reason: string

    Evidence and reasoning for removal.

    Describe what you checked and what you found that justifies erasure.

    type: "erase"

    Discriminator for property revision type.