Member Junction
    Preparing search index...

    Declarative description of how a work's structured output is written back.

    interface OutputMappingConfig {
        childRecord?: {
            entity: string;
            map: Record<string, string>;
            parentField: string;
        };
        fields?: Record<string, string>;
    }
    Index

    Properties

    childRecord?: {
        entity: string;
        map: Record<string, string>;
        parentField: string;
    }

    Optional child record to create from the result.

    Type Declaration

    • entity: string

      Target child entity name.

    • map: Record<string, string>

      Map of ChildFieldName -> resultRef.

    • parentField: string

      FK field on the child set to the processed record's primary key.

    fields?: Record<string, string>

    Map of EntityFieldName -> resultRef (e.g. { "Satisfaction": "$.satisfaction" }) applied to the processed record.