Interface ValidateFunctionContext

interface ValidateFunctionContext {
    data: unknown;
    fullData: unknown;
    path: string;
    uischemaElement: UISchemaElement;
}

Properties

data: unknown

The resolved data scoped to the ValidateFunctionCondition's scope.

fullData: unknown

The full data of the form.

path: string

Optional instance path. Necessary when the actual data path can not be inferred via the scope alone as it is the case with nested controls.

uischemaElement: UISchemaElement

The UISchemaElement containing the rule that uses the ValidateFunctionCondition, e.g. a ControlElement