Vana SDK - v0.1.0
    Preparing search index...

    Interface GrantValidationResult

    Detailed validation result

    interface GrantValidationResult {
        valid: boolean;
        errors: {
            type: "schema" | "business";
            field?: string;
            message: string;
            error?: Error;
        }[];
        grant?: GrantFile;
    }
    Index

    Properties

    Properties

    valid: boolean

    Whether validation passed

    errors: {
        type: "schema" | "business";
        field?: string;
        message: string;
        error?: Error;
    }[]

    Validation errors encountered

    grant?: GrantFile

    The validated grant file (if validation passed)