Individual JSON Patch operation for an HTTP PATCH request.

Export

PatchOperation

interface PatchOperation {
    op: PatchOperationOpEnum;
    path: string;
    value?: object[];
}

Properties

Properties

Type of JSON Patch operation. Supported JSON Patch operations include add, replace, and delete. Refer to JavaScript Object Notation (JSON) Patch for more information.

Memberof

PatchOperation

path: string

JSON Pointer path of the element to patch. Refer to JavaScript Object Notation (JSON) Patch for more information.

Memberof

PatchOperation

value?: object[]

JSON value to add, replace, or delete.

Memberof

PatchOperation