interface DataValidationCxt<T> {
    dynamicAnchors: {};
    instancePath: string;
    parentData: {
        [K in string | number]: any
    };
    parentDataProperty: T;
    rootData: any[] | Record<string, any>;
}

Type Parameters

  • T extends string | number = string | number

Properties

dynamicAnchors: {}

Type declaration

    instancePath: string
    parentData: {
        [K in string | number]: any
    }
    parentDataProperty: T
    rootData: any[] | Record<string, any>