Type Alias JSONPatchRequestAddReplaceTest

type JSONPatchRequestAddReplaceTest = {
    op: "add" | "replace" | "test";
    path: string;
    value: unknown;
}
Index
op: "add" | "replace" | "test"

The operation to perform.

path: string

A JSON Pointer path.

value: unknown

The value to add, replace or test.