Individual JSON Patch operation for an HTTP PATCH request.

PatchOperation

interface ListingsItemsApiModelPatchOperation {
    op:
        | "replace"
        | "add"
        | "delete"
        | ListingsItemsApiModelPatchOperationOpEnum;
    path: string;
    value?: object[];
}

Properties

Properties

op: "replace" | "add" | "delete" | ListingsItemsApiModelPatchOperationOpEnum

Type of JSON Patch operation. Supported JSON Patch operations include add, replace, and delete. See https://tools.ietf.org/html/rfc6902.

PatchOperation

path: string

JSON Pointer path of the element to patch. See https://tools.ietf.org/html/rfc6902.

PatchOperation

value?: object[]

JSON value to add, replace, or delete.

PatchOperation

MMNEPVFCICPMFPCPTTAAATR