Ampersand · Schema

JSONPatchOperation

Represents a single JSON Patch operation (RFC 6902). Only supports add, remove, and replace operations for config updates.

Developer ToolsIntegrationsPlatformSaaSOAuthData SyncWebhooks

Properties

Name Type Description
op string The operation to perform. - "add": Adds a new field or replaces an existing one at the specified path - "remove": Removes the field at the specified path - "replace": Replaces the value at the specifi
path string JSON Pointer path to the field to operate on (RFC 6901). All paths must start with "/" (e.g., "/schedule", "/selectedFields/phone").
value object The value to set for add/replace operations. Not used for remove operations.
View JSON Schema on GitHub