A JSON Patch operation as per RFC 6902.

Hierarchy

  • JsonPatchOperation

Constructors

Properties

Constructors

Properties

additionalProperties?: {
    [key: string]: any;
}

A container for additional, undeclared properties. This is a holder for any undeclared properties as specified with the 'additionalProperties' keyword in the OAS document.

Type declaration

  • [key: string]: any

The operation to perform.

path: string

A JSON Pointer path (e.g., "/name", "/value/secure").

value?: any

The value to use for the operation (not applicable for "remove" and "test" operations).

Generated using TypeDoc