@cfxlabsinc/b2b-services
    Preparing search index...

    Interface ComplianceInfoInput

    Input to RouteFusion's undocumented complianceEvaluation mutation — the reliance-model attestation that must precede finalizeEntity.

    interface ComplianceInfoInput {
        provider: RouteFusionComplianceProvider;
        result: string;
        verificationResult: RouteFusionVerificationResult;
    }
    Index
    result: string

    The attesting provider's result payload, SERIALIZED AS JSON.

    The GraphQL schema types this String! and introspection reveals nothing further, but RF's resolver PARSES it: any value that is not valid JSON is rejected outright with complianceInfo.result must be a valid JSON string. A bare identifier does not qualify — pass JSON.stringify(...) of an object, which is also what RF's compliance team dereferences.

    verificationResult: RouteFusionVerificationResult