AutoBE
    Preparing search index...

    Interface AutoBeDatabaseGroupReviseCreate

    Request to create a new group in the component skeleton list.

    Use this when you identify a missing business domain group that should exist based on requirements analysis. Common scenarios:

    • A business domain was not identified during initial group generation
    • A domain was incorrectly merged into another group and needs separation
    • Requirements analysis reveals additional functional areas

    Michael

    interface AutoBeDatabaseGroupReviseCreate {
        group: AutoBeDatabaseGroup;
        reason: string;
        type: "create";
    }
    Index

    Properties

    Properties

    The new group to add.

    Must be a complete AutoBeDatabaseGroup with all required fields.

    reason: string

    Brief, concise reason for creating this group.

    Explain which business domain this group covers and why it was missing from the initial generation.

    IMPORTANT: Keep it concise - one or two sentences maximum

    type: "create"

    Type discriminator indicating this is a create operation.