Type Alias JsonPatch

type JsonPatch = {
    from?: string;
    op: "add" | "remove" | "replace" | "move" | "copy" | "test";
    path: string;
    value?: unknown;
}
Index

Properties

Properties

from?: string

A JSON Pointer path pointing to the location to move/copy from.

op: "add" | "remove" | "replace" | "move" | "copy" | "test"
path: string
value?: unknown