A JSON Patch document as defined by RFC 6902

interface PatchRequest {
    op: PatchOperation;
    path: string;
    value?: any;
}

Properties

Properties

Patch operation to perform

path: string

A JSON Pointer as defined by RFC 6901

value?: any

Patch value