AutoBE
    Preparing search index...

    Interface AutoBeInterfaceSchemaPropertyCreate

    Add a new property to a DTO schema.

    Use when a database field or relation reference is missing from the schema.

    interface AutoBeInterfaceSchemaPropertyCreate {
        key: string;
        reason: string;
        required: boolean;
        schema: AutoBeOpenApi.IJsonSchemaProperty;
        type: "create";
    }
    Index

    Properties

    key: string

    Property key to add.

    reason: string

    Reason for adding this property.

    required: boolean

    Whether property should be in required array.

    Schema definition for the new property.

    type: "create"