Skip to content

Public API

This is the top-level import surface used throughout the User Guide.

Use this page when you want the shortest path from an example import to the actual exported symbols.

Typed JSON Patch (RFC 6902) utilities powered by Pydantic.

STANDARD_OPS = _STANDARD_REGISTRY_SPEC.ordered_ops module-attribute

Standard RFC 6902 patch operations.

StandardRegistry = AddOp | CopyOp | MoveOp | RemoveOp | ReplaceOp | TestOp

Standard RFC 6902 registry declaration typeform.

AddOp

Bases: OperationSchema, Generic[T]

RFC 6902 add operation.

Source code in jsonpatchx/builtins.py
class AddOp(OperationSchema, Generic[T]):
    """RFC 6902 add operation."""

    model_config = ConfigDict(
        title="Add operation",
        json_schema_extra={"description": "RFC 6902 add operation."},
    )

    op: Literal["add"] = "add"
    path: JSONPointer[T]
    value: T

    @override
    def apply(self, doc: JSONValue) -> JSONValue:
        return self.path.add(doc, self.value)

CopyOp

Bases: OperationSchema, Generic[T]

RFC 6902 copy operation.

Source code in jsonpatchx/builtins.py
class CopyOp(OperationSchema, Generic[T]):
    """RFC 6902 copy operation."""

    model_config = ConfigDict(
        title="Copy operation",
        json_schema_extra={"description": "RFC 6902 copy operation."},
    )

    op: Literal["copy"] = "copy"
    from_: JSONPointer[T] = Field(alias="from")
    path: JSONPointer[T]

    @override
    def apply(self, doc: JSONValue) -> JSONValue:
        value = self.from_.get(doc)
        duplicate = copy.deepcopy(value)
        return AddOp[T](path=self.path, value=duplicate).apply(doc)

InvalidJSONPointer

Bases: PatchInputError

A JSON Pointer definition or instance is invalid.

Examples:

  • Pointer string is malformed or uses an incompatible backend.
  • Pointer backend class fails protocol checks.
Typical HTTP mapping

422 Unprocessable Entity for request input.

Source code in jsonpatchx/exceptions.py
class InvalidJSONPointer(PatchInputError):
    """
    A JSON Pointer definition or instance is invalid.

    Examples:
        - Pointer string is malformed or uses an incompatible backend.
        - Pointer backend class fails protocol checks.

    Typical HTTP mapping:
        422 Unprocessable Entity for request input.
    """

InvalidOperationDefinition

Bases: PatchError

An OperationSchema definition is invalid (developer error).

Examples:

  • op is missing or not declared as Literal[...].
  • op is declared as a ClassVar, so it is not a model field.
Source code in jsonpatchx/exceptions.py
class InvalidOperationDefinition(PatchError):
    """
    An OperationSchema definition is invalid (developer error).

    Examples:
        - ``op`` is missing or not declared as ``Literal[...]``.
        - ``op`` is declared as a ClassVar, so it is not a model field.
    """

InvalidOperationRegistry

Bases: PatchError

An OperationRegistry has incompatible OperationSchemas (developer error).

Examples:

  • Duplicate op identifiers across schemas.
  • Non-OperationSchema classes provided to the registry.
Source code in jsonpatchx/exceptions.py
class InvalidOperationRegistry(PatchError):
    """
    An OperationRegistry has incompatible OperationSchemas (developer error).

    Examples:
        - Duplicate ``op`` identifiers across schemas.
        - Non-OperationSchema classes provided to the registry.
    """

JSONPointer

Bases: str, Generic[T_co, P_co]

A typed RFC 6901 JSON Pointer with Pydantic integration.

JSONPointer[T] (or JSONPointer[T, Backend]) is a string-like value (subclasses str) that additionally:

  • stores a parsed pointer backend (see PointerBackend),
  • tracks a covariant type parameter T used to validate resolved targets,
  • provides convenience methods used by patch operations: get, add, remove.

Important design semantics (intentional)

Typed pointers are enforced at runtime. The type parameter T is not “just typing”; it is enforced whenever a value is read through the pointer.

  • get(doc) always validates the resolved value against T.
  • add(doc, value) optionally validates the written value against T (default: True).
  • remove(doc) is intentionally type-gated: it first “reads” the target through the pointer, so removal can fail if the current value is not of type T.

This makes patch semantics explicit: - JSONPointer[JSONValue] is permissive (“remove anything JSON”). - JSONPointer[JSONBoolean] is restrictive (“remove only if it is currently a boolean”). - If you want to remove regardless of the current type, use a wider pointer type (e.g. JSONValue) or define a dedicated permissive remove operation.

Pointer covariance is intentional. JSONPointer is covariant in T. In practice this means you can often reuse a pointer instance (including across composed operations) and preserve stricter guarantees. Example: if a custom op carries a JSONPointer[JSONBoolean], composing that op internally using AddOp should keep the boolean-specific enforcement at runtime.

Backend semantics (advanced)

  • Default backend: jsonpointer.JsonPointer.
  • Custom backend: bound directly via JSONPointer[T, Backend].
  • Invalid pointer strings raise InvalidJSONPointer.
  • Backend traversal failures in get/add/remove are normalized into PatchConflictError.

Mutation semantics: - add and remove may mutate the document object they are given (or containers reachable from it). The root pointer "" is the exception: setting the root returns a new document value rather than mutating an existing container. Removing the root sets it to JSONNull (None) so that all standard operations are closed over JSONValue. If you want to forbid root removal, it's easy to make a custom op! - Whether these mutations affect the original caller-owned document is determined by the patch engine (see _apply_ops(..., inplace=...)), which may deep-copy the input document.

JSONPointer values are intended to be created by Pydantic validation. Direct instantiation is not permitted (except when running as __main__ for debugging).

Source code in jsonpatchx/pointer.py
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
@final
class JSONPointer(str, Generic[T_co, P_co]):
    """
    A typed RFC 6901 JSON Pointer with Pydantic integration.

    ``JSONPointer[T]`` (or ``JSONPointer[T, Backend]``) is a string-like value (subclasses ``str``)
    that additionally:

    - stores a parsed pointer backend (see ``PointerBackend``),
    - tracks a covariant type parameter ``T`` used to validate resolved targets,
    - provides convenience methods used by patch operations: ``get``, ``add``, ``remove``.

    ## Important design semantics (intentional)

    **Typed pointers are enforced at runtime.**
    The type parameter ``T`` is not “just typing”; it is enforced whenever a value is read
    through the pointer.

    - ``get(doc)`` always validates the resolved value against ``T``.
    - ``add(doc, value)`` optionally validates the written value against ``T`` (default: True).
    - ``remove(doc)`` is intentionally *type-gated*: it first “reads” the target through the pointer,
      so removal can fail if the current value is not of type ``T``.

    This makes patch semantics explicit:
    - ``JSONPointer[JSONValue]`` is permissive (“remove anything JSON”).
    - ``JSONPointer[JSONBoolean]`` is restrictive (“remove only if it is currently a boolean”).
    - If you want to remove regardless of the current type, use a wider pointer type (e.g. ``JSONValue``)
      or define a dedicated permissive remove operation.

    **Pointer covariance is intentional.**
    ``JSONPointer`` is covariant in ``T``. In practice this means you can often reuse a pointer instance
    (including across composed operations) and preserve stricter guarantees.
    Example: if a custom op carries a ``JSONPointer[JSONBoolean]``, composing that op internally
    using ``AddOp`` should keep the boolean-specific enforcement at runtime.

    ## Backend semantics (advanced)

    - Default backend: ``jsonpointer.JsonPointer``.
    - Custom backend: bound directly via ``JSONPointer[T, Backend]``.
    - Invalid pointer strings raise ``InvalidJSONPointer``.
    - Backend traversal failures in ``get``/``add``/``remove`` are normalized into
      ``PatchConflictError``.

    Mutation semantics:
    - ``add`` and ``remove`` may mutate the document object they are given (or containers reachable
      from it). The root pointer ``""`` is the exception: setting the root returns a new document
      value rather than mutating an existing container. Removing the root sets it to JSONNull (None)
      so that all standard operations are closed over JSONValue. If you want to forbid root removal,
      it's easy to make a custom op!
    - Whether these mutations affect the original caller-owned document is determined by the patch
      engine (see ``_apply_ops(..., inplace=...)``), which may deep-copy the input document.

    ``JSONPointer`` values are intended to be created by Pydantic validation. Direct instantiation
    is not permitted (except when running as ``__main__`` for debugging).
    """

    # Choice: JSONPointer is str subclass, as opposed to Annotated[str, StringConstraints(...)].
    # Why: Cache adapters and pointers where possible, and provide simple primitives like get/add
    #      out-of-the-box, owned by the field, so path.get(doc) just works. Most users don't need
    #      more advanced functionality, so don't require them to reason about the PointerBackend API.
    # Considered: From a mutation point of view, consider reversing ownership to something like doc.get(path).
    #             Downside would be maintaining a JSONDocument wrapper around JSONValues, and taking power
    #             away from the PointerBackend implementation, which should really own the mutation logic.
    # Also considered: Performance drawback (https://docs.pydantic.dev/latest/concepts/performance/?utm_source=chatgpt.com#avoid-extra-information-via-subclasses-of-primitives).
    #                  I may replace str inheritance with a str property that derives from str(self._ptr).
    #                  But I like the idea that users think of JSONPointer[T] as the path string with extra abilities.

    __slots__ = ("_ptr", "_type")

    _ptr: P_co
    _type: TypeForm[T_co]

    @property
    def ptr(self) -> P_co:
        """
        The underlying pointer backend instance.

        This is exposed for advanced users who provide a custom PointerBackend with additional APIs.
        The patch engine relies only on the ``PointerBackend`` protocol.
        """
        # TODO: Somehow 'Any' to the actual JSON Pointer class they pass in.
        # Choice: expose ptr as the user's custom PointerBackend for stronger type inferencing.
        # Why: This library only needs the PointerBackend Protocol, if some users want a custom
        #      PointerBackend, then expose that richer API to those users at type-checker time.
        return self._ptr

    @property
    def parts(self) -> Sequence[str]:
        """A sequence of RFC6901-unescaped pointer components."""
        return self._ptr.parts

    @property
    def type_param(self) -> TypeForm[T_co]:
        """The expected type parameter ``T`` used to validate resolved targets."""
        return self._type

    @property
    def _adapter(self) -> TypeAdapter[T_co]:
        return _type_adapter_for(self._type)

    @property
    def parent_ptr(self) -> P_co:  # NOTE: add parent property for JSONPointer of parent
        # NOTE: make this public
        return _parent_ptr_of(self._ptr)

    def is_root(self, doc: JSONValue) -> bool:
        """Check whether this JSONPointer's target is the root."""
        return _is_root_ptr(self._ptr, doc)

    @classmethod
    def _validator(
        cls,
        path: str | PointerBackend,
        *,
        type_param: TypeForm[Any],
        concrete_backend: type[PointerBackend] | TypeVar,
    ) -> Self:
        """
        Validator function for JSONPointer.

        Assumes ``type_param`` and ``bound_backend`` are already validated.
        """
        resolved_backend = cls._resolve_runtime_backend_param(concrete_backend)
        if isinstance(path, JSONPointer):
            path_str = str(path)
            if resolved_backend is _DEFAULT_POINTER_CLS:
                ptr = path._ptr
            elif isinstance(path._ptr, resolved_backend):
                ptr = path._ptr
            else:
                ptr = _pointer_backend_instance(path_str, pointer_cls=resolved_backend)
        elif isinstance(path, str):
            path_str = path
            ptr = _pointer_backend_instance(
                path_str,
                pointer_cls=resolved_backend,
            )
        elif isinstance(path, PointerBackend):
            if isinstance(path, resolved_backend):
                path_str = str(path)
                ptr = path
            else:
                raise InvalidJSONPointer(
                    "JSONPointer backend mismatch: "
                    f"required backend is {resolved_backend.__name__} but field uses "
                    f"{path.__class__.__name__}"
                )
        else:  # pragma: no cover
            assert_never(path)

        # Build it
        obj: Self = str.__new__(cls, path_str)

        # Try to reuse the type parameters (type checkers already enforce covariance)
        if isinstance(path, JSONPointer):
            obj._type = path._type
        else:
            obj._type = type_param

        # Reuse pointer backends when provided directly or via JSONPointer.
        obj._ptr = cast(P_co, ptr)

        return obj

    @classmethod
    def __get_pydantic_core_schema__(
        cls, source_type: type[Self], handler: GetCoreSchemaHandler
    ) -> cs.CoreSchema:
        type_param, concrete_backend = cls._parse_pointer_type_args(
            *get_args(source_type)
        )
        validator_function = partial(
            cls._validator,
            type_param=type_param,
            concrete_backend=concrete_backend,
        )
        return cs.no_info_after_validator_function(
            function=validator_function,
            schema=cs.union_schema(
                [
                    cs.is_instance_schema(JSONPointer),
                    cs.str_schema(strict=True),
                    cs.is_instance_schema(PointerBackend),
                ]
            ),
            metadata={  # wire to the json_schema
                "type_param": type_param,
                "pointer_backend_param": concrete_backend,  # NOTE: enable customization
            },
        )

    @classmethod
    def __get_pydantic_json_schema__(
        cls, schema: cs.CoreSchema, handler: GetJsonSchemaHandler
    ) -> JsonSchemaValue:
        pointer_backend_param = schema["metadata"]["pointer_backend_param"]
        if isinstance(pointer_backend_param, TypeVar):
            pointer_backend = cls._resolve_runtime_backend_param(pointer_backend_param)
        else:
            pointer_backend = pointer_backend_param
        if pointer_backend is _DEFAULT_POINTER_CLS:
            pointer_format = "json-pointer"
            pointer_description = "JSON Pointer (RFC 6901) string"
        else:
            pointer_format = "x-json-pointer"
            pointer_description = "JSON Pointer string (custom backend syntax)"

        json_schema = handler(schema)
        json_schema.update(
            {
                "type": "string",
                "format": pointer_format,
                "description": pointer_description,  # NOTE: let it be overridable
            }
        )

        # enrich with json schema of type param
        type_param = schema["metadata"]["type_param"]
        json_schema["x-pointer-type-schema"] = _type_adapter_for(
            type_param
        ).json_schema()
        return json_schema

    @classmethod
    def _parse_pointer_type_args(
        cls, *args: TypeForm[Any]
    ) -> tuple[TypeForm[Any], type[PointerBackend] | TypeVar]:
        """Validate the JSONPointer's parameter tuple, e.g. ``(JSONValue, DotPointer)`` for ``JSONPointer[JSONValue, DotPointer]``."""
        if not args:
            raise TypeError(f"{cls} requires at least one type parameter")
        unverified_typeform = args[0]
        unverified_bound_backend = args[1] if len(args) > 1 else _DEFAULT_POINTER_CLS

        backend_param = cls._resolve_backend_type_param(unverified_bound_backend)
        type_param = _validate_typeform(unverified_typeform)

        return type_param, backend_param

    @staticmethod
    def _resolve_backend_type_param(
        backend_param: object,
    ) -> type[PointerBackend] | TypeVar:
        if isinstance(backend_param, TypeVar):
            return backend_param
        if not isinstance(backend_param, type):
            raise InvalidJSONPointer(
                f"JSONPointer backend parameter {backend_param!r} must be a class or TypeVar"
            )
        return cast(type[PointerBackend], backend_param)

    @classmethod
    def _resolve_runtime_backend_param(
        cls,
        backend_param: type[PointerBackend] | TypeVar,
    ) -> type[PointerBackend]:
        if not isinstance(backend_param, TypeVar):
            return backend_param
        return cls._resolve_runtime_backend_typevar(backend_param)

    @classmethod
    def _resolve_runtime_backend_typevar(
        cls,
        backend_typevar: TypeVar,
    ) -> type[PointerBackend]:
        # Only TypeVar defaults are used for unspecialized backend TypeVars.
        try:
            has_default = backend_typevar.has_default()
        except AttributeError:  # Py3.12
            has_default = False
        if has_default:
            default_candidate = getattr(backend_typevar, "__default__")
            default_backend = cls._coerce_runtime_backend_candidate(default_candidate)
            if default_backend is not None:
                return default_backend

        raise InvalidJSONPointer(
            "JSONPointer backend TypeVar must define a default backend "
            "or be specialized with a concrete backend type"
        )

    @classmethod
    def _coerce_runtime_backend_candidate(
        cls,
        candidate: object,
    ) -> type[PointerBackend] | None:
        if isinstance(candidate, TypeVar):
            return cls._resolve_runtime_backend_typevar(candidate)
        if not isinstance(candidate, type):
            return None
        if candidate is PointerBackend or isabstract(candidate):
            return None
        return candidate

    def _validate_target(self, target: object) -> T_co:
        """Strictly validate the ``target`` with this JSONPointer's TypeAdapter."""
        try:
            return self._adapter.validate_python(target, strict=True)
        except Exception as e:
            raise PatchConflictError(
                f"expected target type {self.type_param} for pointer {str(self)!r}, got: {type(target)}"
            ) from e

    # Constructor - for convenience

    @classmethod
    def parse(
        cls,
        path: str | Self | PointerBackend,
        *,
        type_param: TypeForm[Any] = JSONValue,
        backend: type[PointerBackend] | None = None,
    ) -> Self:
        """
        Parse a pointer string or instance using Pydantic validation.

        This is a convenience wrapper around ``TypeAdapter(JSONPointer[...])``.
        """
        pointer_args: tuple[TypeForm[Any], ...]
        if backend is None:
            pointer_args = (type_param,)
        else:
            pointer_args = (type_param, backend)
        validated_type, validated_backend = cls._parse_pointer_type_args(*pointer_args)

        if backend is None:
            adapter = _type_adapter_for(
                JSONPointer[validated_type]  # type: ignore[valid-type]
            )
        else:
            adapter = _type_adapter_for(
                JSONPointer[validated_type, validated_backend]  # type: ignore[valid-type]
            )
        return adapter.validate_python(path)

    # Parse-time helpers

    def is_parent_of(self, other: str) -> bool:
        """
        Check whether this pointer is a strict parent of `other`.

        `other` may be a JSONPointer or a pointer string; strings are parsed using this pointer's syntax.

        Root is treated as a parent of all paths except itself.

        Raises InvalidJSONPointer if comparison is called with an `other` pointer with different or invalid syntax.
        """
        if isinstance(other, JSONPointer) and not isinstance(
            other._ptr, type(self._ptr)
        ):
            raise InvalidJSONPointer(
                f"Other pointer {other._ptr!r} has incompatible syntax with {self!r}"
            )
        other_ptr = _pointer_backend_instance(other, pointer_cls=self._ptr.__class__)

        # Strict parentage only
        if self == str(other_ptr):
            return False

        return other_ptr.parts[: len(self.parts)] == self.parts

    def is_child_of(self, other: str) -> bool:
        """
        Check whether this pointer is a strict child of `other`.

        `other` may be a JSONPointer or a pointer string; strings are parsed using this pointer's syntax.

        Root is treated as a parent of all paths except itself.

        Raises InvalidJSONPointer if comparison is called with an `other` pointer with different or invalid syntax.
        """
        # NOTE: Document which of these public helper methods work only with RFC6901
        if isinstance(other, JSONPointer) and not isinstance(
            other._ptr, type(self._ptr)
        ):
            raise InvalidJSONPointer(
                f"Other pointer {other._ptr!r} has incompatible syntax with {self!r}"
            )
        other_ptr = _pointer_backend_instance(other, pointer_cls=self._ptr.__class__)

        # Strict parentage only
        if self == str(other_ptr):
            return False

        return self.parts[: len(other_ptr.parts)] == other_ptr.parts

    # Runtime helpers

    def is_valid_type(self, target: object) -> bool:
        """Validate whether a target conforms to this pointer's type."""
        try:
            self._adapter.validate_python(target, strict=True)
            return True
        except Exception:
            return False

    def get(self, doc: JSONValue) -> T_co:
        """
        Resolve this pointer against ``doc`` and return the target value (type-gated).

        Args:
            doc: Target JSON document.

        Returns:
            The resolved value, validated against ``T``.

        Raises:
            PatchConflictError: If the target does not exist, or it is not type ``T``.
        """
        # Choice: always defer to the PointerBackend implementation for pointer resolution.
        # Why: Don't reinvent the wheel (and maintain it). Plus, give more power to custom PointerBackends.
        try:
            target = self._ptr.resolve(doc)
        except Exception as e:
            raise PatchConflictError(f"path {str(self)!r} not found: {e}") from e
        return self._validate_target(target)

    def is_gettable(self, doc: JSONValue) -> bool:
        """Return True if ``get`` would succeed for this document, else False."""
        try:
            self.get(doc)
        except Exception:
            return False
        else:
            return True

    def add(self, doc: JSONValue, value: object) -> JSONValue:
        """
        RFC 6902 add (type-gated).

        Args:
            doc: Target JSON document.
            value: Value to add at this path, validated against ``T``.

        Returns:
            The updated document.

        Raises:
            PatchConflictError: If the target does not exist, if the target is not type ``T``,
                or if the value being added is not type ``T``.
        """
        # Type errors first
        value_T: T_co = self._validate_target(target=value)
        try:
            target = _validate_JSONValue(value_T)
        except Exception as e:
            raise PatchConflictError(f"value {value!r} is not a valid JSONValue") from e

        match classify_state(self._ptr, doc):
            case TargetState.ROOT:
                self._validate_target(doc)
                return target
            case TargetState.PARENT_NOT_FOUND:
                raise PatchConflictError(
                    f"cannot add value at {str(self)!r} because parent does not exist"
                )
            case TargetState.PARENT_NOT_CONTAINER:
                raise PatchConflictError(
                    f"cannot add value at {str(self)!r} because parent is not a container"
                )
            case TargetState.ARRAY_INDEX_APPEND | TargetState.ARRAY_INDEX_AT_END:
                array = cast(JSONArray[JSONValue], self.parent_ptr.resolve(doc))
                array.append(target)
                return doc
            case TargetState.ARRAY_INDEX_OUT_OF_RANGE:
                raise PatchConflictError(
                    f"cannot add value at {str(self)!r} because array index {self.parts[-1]!r} is out of range"
                )
            case TargetState.OBJECT_KEY_MISSING:
                object = cast(JSONObject[JSONValue], self.parent_ptr.resolve(doc))
                key = self.parts[-1]
                object[key] = target
                return doc
            case (
                TargetState.ARRAY_KEY_INVALID
                | TargetState.VALUE_PRESENT_AT_NEGATIVE_ARRAY_INDEX
            ):
                raise PatchConflictError(
                    f"cannot add value at {str(self)!r} because key {self.parts[-1]!r} is an invalid array index"
                )
            case TargetState.VALUE_PRESENT:
                container = cast(JSONContainer[JSONValue], self.parent_ptr.resolve(doc))
                token = self.parts[-1]
                if _is_object(container):
                    self._validate_target(container[token])
                    container[token] = target
                    return doc
                else:
                    container.insert(int(token), target)
                    return doc
            case _ as unreachable:
                assert_never(unreachable)

    def is_addable(
        self,
        doc: JSONValue,
        value: object = _Nothing,
    ) -> bool:
        """
        Return True if RFC 6902 ``add`` would succeed for this document, else False.
        If ``value`` is provided, it must conform to the pointer's type parameter ``T``.
        """
        if value is not _Nothing:
            try:
                self._validate_target(target=value)
                _validate_JSONValue(value)
            except Exception:
                return False

        match classify_state(self._ptr, doc):
            case TargetState.ROOT:
                return self.is_valid_type(doc)
            case TargetState.VALUE_PRESENT:
                container = self.parent_ptr.resolve(doc)
                token = self.parts[-1]
                if _is_object(container):
                    return self.is_valid_type(container[token])
                return True  # list insert always valid
            case (
                TargetState.ARRAY_INDEX_APPEND
                | TargetState.ARRAY_INDEX_AT_END
                | TargetState.OBJECT_KEY_MISSING
            ):
                return True
            case _:
                return False

    def remove(self, doc: JSONValue) -> JSONValue:
        """
        RFC 6902 remove (type-gated). Removal of the root sets it to null.

        Args:
            doc: Target JSON document.

        Returns:
            The updated document.

        Raises:
            PatchConflictError: If the target does not exist, or it is not type ``T``.
        """
        match classify_state(self._ptr, doc):
            case TargetState.ROOT:
                # Choice: Removal of root sets root to null.
                # Why: Keeps all operations closed over JSONValue. Remove is also more composable this way.
                #      It affects few users, who themselves can circumvent with custom ops.
                self._validate_target(doc)
                return None
            case TargetState.PARENT_NOT_FOUND:
                raise PatchConflictError(
                    f"cannot remove value at {str(self)!r} because parent does not exist"
                )
            case TargetState.PARENT_NOT_CONTAINER:
                raise PatchConflictError(
                    f"cannot remove value at {str(self)!r} because parent is not a container"
                )
            case TargetState.ARRAY_INDEX_APPEND:
                raise PatchConflictError(
                    f"cannot remove value at {str(self)!r} because '-' indicates append position"
                )
            case TargetState.ARRAY_INDEX_OUT_OF_RANGE | TargetState.ARRAY_INDEX_AT_END:
                raise PatchConflictError(
                    f"cannot remove value at {str(self)!r} because array index {self.parts[-1]!r} is out of range"
                )
            case TargetState.OBJECT_KEY_MISSING:
                raise PatchConflictError(
                    f"cannot remove value at {str(self)!r} because key {self.parts[-1]!r} is missing from object"
                )
            case (
                TargetState.ARRAY_KEY_INVALID
                | TargetState.VALUE_PRESENT_AT_NEGATIVE_ARRAY_INDEX
            ):
                raise PatchConflictError(
                    f"cannot remove value at {str(self)!r} because key {self.parts[-1]!r} is an invalid array index"
                )
            case TargetState.VALUE_PRESENT:
                container = self.parent_ptr.resolve(doc)
                assert _is_container(container), (
                    "classify_state regression: VALUE_PRESENT"
                )
                token = self.parts[-1]
                key = int(token) if _is_array(container) else token
                self._validate_target(container[key])  # type: ignore[index]
                del container[key]  # type: ignore[arg-type]
                return doc
            case _ as unreachable:
                assert_never(unreachable)

    def is_removable(self, doc: JSONValue) -> bool:
        """Return True if RFC 6902 ``remove`` would succeed for this document, else False."""
        return self.is_gettable(doc)

    @override
    def __repr__(self) -> str:
        type_repr = (
            self._type.__name__ if isinstance(self._type, type) else repr(self._type)
        )
        return f"{self.__class__.__name__}[{type_repr}]({str(self)!r})"

parts property

A sequence of RFC6901-unescaped pointer components.

ptr property

The underlying pointer backend instance.

This is exposed for advanced users who provide a custom PointerBackend with additional APIs. The patch engine relies only on the PointerBackend protocol.

type_param property

The expected type parameter T used to validate resolved targets.

add(doc, value)

RFC 6902 add (type-gated).

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required
value object

Value to add at this path, validated against T.

required

Returns:

Type Description
JSONValue

The updated document.

Raises:

Type Description
PatchConflictError

If the target does not exist, if the target is not type T, or if the value being added is not type T.

Source code in jsonpatchx/pointer.py
def add(self, doc: JSONValue, value: object) -> JSONValue:
    """
    RFC 6902 add (type-gated).

    Args:
        doc: Target JSON document.
        value: Value to add at this path, validated against ``T``.

    Returns:
        The updated document.

    Raises:
        PatchConflictError: If the target does not exist, if the target is not type ``T``,
            or if the value being added is not type ``T``.
    """
    # Type errors first
    value_T: T_co = self._validate_target(target=value)
    try:
        target = _validate_JSONValue(value_T)
    except Exception as e:
        raise PatchConflictError(f"value {value!r} is not a valid JSONValue") from e

    match classify_state(self._ptr, doc):
        case TargetState.ROOT:
            self._validate_target(doc)
            return target
        case TargetState.PARENT_NOT_FOUND:
            raise PatchConflictError(
                f"cannot add value at {str(self)!r} because parent does not exist"
            )
        case TargetState.PARENT_NOT_CONTAINER:
            raise PatchConflictError(
                f"cannot add value at {str(self)!r} because parent is not a container"
            )
        case TargetState.ARRAY_INDEX_APPEND | TargetState.ARRAY_INDEX_AT_END:
            array = cast(JSONArray[JSONValue], self.parent_ptr.resolve(doc))
            array.append(target)
            return doc
        case TargetState.ARRAY_INDEX_OUT_OF_RANGE:
            raise PatchConflictError(
                f"cannot add value at {str(self)!r} because array index {self.parts[-1]!r} is out of range"
            )
        case TargetState.OBJECT_KEY_MISSING:
            object = cast(JSONObject[JSONValue], self.parent_ptr.resolve(doc))
            key = self.parts[-1]
            object[key] = target
            return doc
        case (
            TargetState.ARRAY_KEY_INVALID
            | TargetState.VALUE_PRESENT_AT_NEGATIVE_ARRAY_INDEX
        ):
            raise PatchConflictError(
                f"cannot add value at {str(self)!r} because key {self.parts[-1]!r} is an invalid array index"
            )
        case TargetState.VALUE_PRESENT:
            container = cast(JSONContainer[JSONValue], self.parent_ptr.resolve(doc))
            token = self.parts[-1]
            if _is_object(container):
                self._validate_target(container[token])
                container[token] = target
                return doc
            else:
                container.insert(int(token), target)
                return doc
        case _ as unreachable:
            assert_never(unreachable)

get(doc)

Resolve this pointer against doc and return the target value (type-gated).

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required

Returns:

Type Description
T_co

The resolved value, validated against T.

Raises:

Type Description
PatchConflictError

If the target does not exist, or it is not type T.

Source code in jsonpatchx/pointer.py
def get(self, doc: JSONValue) -> T_co:
    """
    Resolve this pointer against ``doc`` and return the target value (type-gated).

    Args:
        doc: Target JSON document.

    Returns:
        The resolved value, validated against ``T``.

    Raises:
        PatchConflictError: If the target does not exist, or it is not type ``T``.
    """
    # Choice: always defer to the PointerBackend implementation for pointer resolution.
    # Why: Don't reinvent the wheel (and maintain it). Plus, give more power to custom PointerBackends.
    try:
        target = self._ptr.resolve(doc)
    except Exception as e:
        raise PatchConflictError(f"path {str(self)!r} not found: {e}") from e
    return self._validate_target(target)

is_addable(doc, value=_Nothing)

Return True if RFC 6902 add would succeed for this document, else False. If value is provided, it must conform to the pointer's type parameter T.

Source code in jsonpatchx/pointer.py
def is_addable(
    self,
    doc: JSONValue,
    value: object = _Nothing,
) -> bool:
    """
    Return True if RFC 6902 ``add`` would succeed for this document, else False.
    If ``value`` is provided, it must conform to the pointer's type parameter ``T``.
    """
    if value is not _Nothing:
        try:
            self._validate_target(target=value)
            _validate_JSONValue(value)
        except Exception:
            return False

    match classify_state(self._ptr, doc):
        case TargetState.ROOT:
            return self.is_valid_type(doc)
        case TargetState.VALUE_PRESENT:
            container = self.parent_ptr.resolve(doc)
            token = self.parts[-1]
            if _is_object(container):
                return self.is_valid_type(container[token])
            return True  # list insert always valid
        case (
            TargetState.ARRAY_INDEX_APPEND
            | TargetState.ARRAY_INDEX_AT_END
            | TargetState.OBJECT_KEY_MISSING
        ):
            return True
        case _:
            return False

is_child_of(other)

Check whether this pointer is a strict child of other.

other may be a JSONPointer or a pointer string; strings are parsed using this pointer's syntax.

Root is treated as a parent of all paths except itself.

Raises InvalidJSONPointer if comparison is called with an other pointer with different or invalid syntax.

Source code in jsonpatchx/pointer.py
def is_child_of(self, other: str) -> bool:
    """
    Check whether this pointer is a strict child of `other`.

    `other` may be a JSONPointer or a pointer string; strings are parsed using this pointer's syntax.

    Root is treated as a parent of all paths except itself.

    Raises InvalidJSONPointer if comparison is called with an `other` pointer with different or invalid syntax.
    """
    # NOTE: Document which of these public helper methods work only with RFC6901
    if isinstance(other, JSONPointer) and not isinstance(
        other._ptr, type(self._ptr)
    ):
        raise InvalidJSONPointer(
            f"Other pointer {other._ptr!r} has incompatible syntax with {self!r}"
        )
    other_ptr = _pointer_backend_instance(other, pointer_cls=self._ptr.__class__)

    # Strict parentage only
    if self == str(other_ptr):
        return False

    return self.parts[: len(other_ptr.parts)] == other_ptr.parts

is_gettable(doc)

Return True if get would succeed for this document, else False.

Source code in jsonpatchx/pointer.py
def is_gettable(self, doc: JSONValue) -> bool:
    """Return True if ``get`` would succeed for this document, else False."""
    try:
        self.get(doc)
    except Exception:
        return False
    else:
        return True

is_parent_of(other)

Check whether this pointer is a strict parent of other.

other may be a JSONPointer or a pointer string; strings are parsed using this pointer's syntax.

Root is treated as a parent of all paths except itself.

Raises InvalidJSONPointer if comparison is called with an other pointer with different or invalid syntax.

Source code in jsonpatchx/pointer.py
def is_parent_of(self, other: str) -> bool:
    """
    Check whether this pointer is a strict parent of `other`.

    `other` may be a JSONPointer or a pointer string; strings are parsed using this pointer's syntax.

    Root is treated as a parent of all paths except itself.

    Raises InvalidJSONPointer if comparison is called with an `other` pointer with different or invalid syntax.
    """
    if isinstance(other, JSONPointer) and not isinstance(
        other._ptr, type(self._ptr)
    ):
        raise InvalidJSONPointer(
            f"Other pointer {other._ptr!r} has incompatible syntax with {self!r}"
        )
    other_ptr = _pointer_backend_instance(other, pointer_cls=self._ptr.__class__)

    # Strict parentage only
    if self == str(other_ptr):
        return False

    return other_ptr.parts[: len(self.parts)] == self.parts

is_removable(doc)

Return True if RFC 6902 remove would succeed for this document, else False.

Source code in jsonpatchx/pointer.py
def is_removable(self, doc: JSONValue) -> bool:
    """Return True if RFC 6902 ``remove`` would succeed for this document, else False."""
    return self.is_gettable(doc)

is_root(doc)

Check whether this JSONPointer's target is the root.

Source code in jsonpatchx/pointer.py
def is_root(self, doc: JSONValue) -> bool:
    """Check whether this JSONPointer's target is the root."""
    return _is_root_ptr(self._ptr, doc)

is_valid_type(target)

Validate whether a target conforms to this pointer's type.

Source code in jsonpatchx/pointer.py
def is_valid_type(self, target: object) -> bool:
    """Validate whether a target conforms to this pointer's type."""
    try:
        self._adapter.validate_python(target, strict=True)
        return True
    except Exception:
        return False

parse(path, *, type_param=JSONValue, backend=None) classmethod

Parse a pointer string or instance using Pydantic validation.

This is a convenience wrapper around TypeAdapter(JSONPointer[...]).

Source code in jsonpatchx/pointer.py
@classmethod
def parse(
    cls,
    path: str | Self | PointerBackend,
    *,
    type_param: TypeForm[Any] = JSONValue,
    backend: type[PointerBackend] | None = None,
) -> Self:
    """
    Parse a pointer string or instance using Pydantic validation.

    This is a convenience wrapper around ``TypeAdapter(JSONPointer[...])``.
    """
    pointer_args: tuple[TypeForm[Any], ...]
    if backend is None:
        pointer_args = (type_param,)
    else:
        pointer_args = (type_param, backend)
    validated_type, validated_backend = cls._parse_pointer_type_args(*pointer_args)

    if backend is None:
        adapter = _type_adapter_for(
            JSONPointer[validated_type]  # type: ignore[valid-type]
        )
    else:
        adapter = _type_adapter_for(
            JSONPointer[validated_type, validated_backend]  # type: ignore[valid-type]
        )
    return adapter.validate_python(path)

remove(doc)

RFC 6902 remove (type-gated). Removal of the root sets it to null.

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required

Returns:

Type Description
JSONValue

The updated document.

Raises:

Type Description
PatchConflictError

If the target does not exist, or it is not type T.

Source code in jsonpatchx/pointer.py
def remove(self, doc: JSONValue) -> JSONValue:
    """
    RFC 6902 remove (type-gated). Removal of the root sets it to null.

    Args:
        doc: Target JSON document.

    Returns:
        The updated document.

    Raises:
        PatchConflictError: If the target does not exist, or it is not type ``T``.
    """
    match classify_state(self._ptr, doc):
        case TargetState.ROOT:
            # Choice: Removal of root sets root to null.
            # Why: Keeps all operations closed over JSONValue. Remove is also more composable this way.
            #      It affects few users, who themselves can circumvent with custom ops.
            self._validate_target(doc)
            return None
        case TargetState.PARENT_NOT_FOUND:
            raise PatchConflictError(
                f"cannot remove value at {str(self)!r} because parent does not exist"
            )
        case TargetState.PARENT_NOT_CONTAINER:
            raise PatchConflictError(
                f"cannot remove value at {str(self)!r} because parent is not a container"
            )
        case TargetState.ARRAY_INDEX_APPEND:
            raise PatchConflictError(
                f"cannot remove value at {str(self)!r} because '-' indicates append position"
            )
        case TargetState.ARRAY_INDEX_OUT_OF_RANGE | TargetState.ARRAY_INDEX_AT_END:
            raise PatchConflictError(
                f"cannot remove value at {str(self)!r} because array index {self.parts[-1]!r} is out of range"
            )
        case TargetState.OBJECT_KEY_MISSING:
            raise PatchConflictError(
                f"cannot remove value at {str(self)!r} because key {self.parts[-1]!r} is missing from object"
            )
        case (
            TargetState.ARRAY_KEY_INVALID
            | TargetState.VALUE_PRESENT_AT_NEGATIVE_ARRAY_INDEX
        ):
            raise PatchConflictError(
                f"cannot remove value at {str(self)!r} because key {self.parts[-1]!r} is an invalid array index"
            )
        case TargetState.VALUE_PRESENT:
            container = self.parent_ptr.resolve(doc)
            assert _is_container(container), (
                "classify_state regression: VALUE_PRESENT"
            )
            token = self.parts[-1]
            key = int(token) if _is_array(container) else token
            self._validate_target(container[key])  # type: ignore[index]
            del container[key]  # type: ignore[arg-type]
            return doc
        case _ as unreachable:
            assert_never(unreachable)

JSONValue

Runtime JSON value type with strict validation and minimal OpenAPI schema.

Validation delegates to the strict JSON union, while JSON schema is deliberately inlined as {} to avoid a named component.

Source code in jsonpatchx/types.py
class JSONValue:
    """
    Runtime JSON value type with strict validation and minimal OpenAPI schema.

    Validation delegates to the strict JSON union, while
    JSON schema is deliberately inlined as ``{}`` to avoid a named component.
    """

    @classmethod
    def __get_pydantic_core_schema__(
        cls, _source_type: object, _handler: core_schema.GetCoreSchemaHandler
    ) -> core_schema.CoreSchema:
        type _JSONValueInternal = Annotated[
            JSONBoolean
            | JSONNumber
            | JSONString
            | JSONNull
            | JSONArray[_JSONValueInternal]
            | JSONObject[_JSONValueInternal],
            Field(),
        ]
        return _strict_validator(_JSONValueInternal)

    @classmethod
    def __get_pydantic_json_schema__(
        cls,
        _core_schema: core_schema.CoreSchema,
        _handler: core_schema.GetJsonSchemaHandler,
    ) -> dict[str, object]:
        return {}

JsonPatch

Bases: Sequence[OperationSchema]

A parsed JSON Patch document (RFC 6902-style) bound to a registry declaration.

JsonPatch is a convenience wrapper that:

  • parses and validates an input patch document using a registry of OperationSchema models,
  • stores the resulting typed OperationSchema instances,
  • applies them to JSON documents via the shared patch engine.
Notes
  • apply delegates to the core engine _apply_ops and follows the same copy and mutation semantics.
  • inplace=False (default): the engine deep-copies doc first; operations may mutate the copy.
  • inplace=True: operations run against the provided doc object (no rollback on failure). This is a copy policy, not an object-identity guarantee for the returned value.
  • JsonPatch is immutable with respect to its operation list after construction, but the documents you apply it to may be mutated depending on inplace.
Source code in jsonpatchx/standard.py
class JsonPatch(Sequence[OperationSchema]):
    """
    A parsed JSON Patch document (RFC 6902-style) bound to a registry declaration.

    ``JsonPatch`` is a convenience wrapper that:

    - parses and validates an input patch document using a registry of ``OperationSchema`` models,
    - stores the resulting typed ``OperationSchema`` instances,
    - applies them to JSON documents via the shared patch engine.

    Notes:
        - ``apply`` delegates to the core engine ``_apply_ops`` and follows the same copy and mutation
          semantics.
        - ``inplace=False`` (default): the engine deep-copies ``doc`` first; operations may mutate the copy.
        - ``inplace=True``: operations run against the provided ``doc`` object (no rollback on failure).
          This is a copy policy, not an object-identity guarantee for the returned value.
        - ``JsonPatch`` is immutable with respect to its operation list after construction, but the
          documents you apply it to may be mutated depending on ``inplace``.
    """

    __slots__ = ("_ops", "_registry")

    def __init__(
        self,
        patch: Sequence[Mapping[str, JSONValue]] | Sequence[OperationSchema],
        *,
        registry: TypeForm[OperationSchema] | None = None,
    ):
        """
        Construct a JsonPatch from a sequence of operation dicts.

        Args:
            patch: A sequence of JSON Patch operations as dicts.
            registry: A union of concrete OperationSchemas used for parsing and
                validation (``OpA | OpB | ...``). If omitted, the standard RFC
                6902 operations are used.
        """
        if registry is None:
            self._registry = _STANDARD_REGISTRY_SPEC
        else:
            self._registry = _RegistrySpec.from_typeform(registry)
        self._ops = self._registry.parse_python_patch(patch)

    @classmethod
    def from_string(
        cls,
        text: str | bytes | bytearray,
        *,
        registry: TypeForm[OperationSchema] | None = None,
    ) -> Self:
        """
        Construct a JsonPatch from a JSON-formatted string.

        JSON decoding follows last-write-wins just like ``json.loads()``
        If you want strict duplicate-key rejection, parse JSON yourself and pass the result to ``JsonPatch()``.

        Args:
            text: JSON-formatted string/bytes/bytearray for a JSON Patch document.
            registry: A union of concrete OperationSchemas used for parsing and
                validation (``OpA | OpB | ...``). If omitted, the standard RFC
                6902 operations are used.
        """
        instance = cls.__new__(cls)
        if registry is None:
            resolved = _STANDARD_REGISTRY_SPEC
        else:
            resolved = _RegistrySpec.from_typeform(registry)
        instance._registry = resolved
        instance._ops = resolved.parse_json_patch(text)
        return instance

    @property
    def ops(self) -> Sequence[OperationSchema]:
        """The sequence of operations."""
        return self._ops

    def to_string(self) -> str:
        """Serialize this patch to a JSON string."""
        payload = [op.model_dump(mode="json", by_alias=True) for op in self._ops]
        return json.dumps(payload)

    def apply(
        self,
        doc: JSONValue,
        *,
        inplace: bool = False,
    ) -> JSONValue:
        """
        Apply this patch to ``doc`` and return the patched document.

        Args:
            doc: The target JSON document.
            inplace: Copy policy. ``False`` deep-copies ``doc`` before applying operations.
                ``True`` skips that copy and applies operations against ``doc``, but does not
                guarantee returned object identity for root-targeting operations.

        Return:
            patched: The patched JSON document.

        Raises:
            ValidationError: If the input is not a mutable ``JSONValue``.
            PatchError: Any patch-domain error raised by operations, including conflicts.
                ``PatchInternalError`` is a ``PatchError`` raised for unexpected failures.
        """
        try:
            _validate_JSONValue(doc)
        except Exception as e:
            raise PatchValidationError(f"Invalid JSON document: {e}") from e
        return _apply_ops(self._ops, doc, inplace=inplace)

    @override
    def __len__(self) -> int:
        return len(self._ops)

    @overload
    def __getitem__(self, index: int) -> OperationSchema:
        pass

    @overload
    def __getitem__(self, index: slice) -> Sequence[OperationSchema]:
        pass

    @override
    def __getitem__(
        self, index: int | slice
    ) -> OperationSchema | Sequence[OperationSchema]:
        return self._ops[index]

    @override
    def __hash__(self) -> int:
        # Hashing is best-effort, user-defined ops may be unhashable.
        return hash((self.__class__, self._registry, tuple(self)))

    @override
    def __eq__(self, other: object) -> bool:
        if not isinstance(other, self.__class__):
            return NotImplemented
        return tuple(self) == tuple(other) and self._registry == other._registry

    @override
    def __str__(self) -> str:
        return self.to_string()

    @override
    def __repr__(self) -> str:
        return f"{self.__class__.__name__}({self})"

    def __add__(self, other: object) -> Self:
        if not isinstance(other, self.__class__):
            return NotImplemented
        if self._registry != other._registry:
            raise TypeError("Cannot add JsonPatch instances with different registries")
        instance = self.__class__.__new__(self.__class__)
        instance._registry = self._registry
        instance._ops = self._ops + other._ops
        return instance

ops property

The sequence of operations.

__init__(patch, *, registry=None)

Construct a JsonPatch from a sequence of operation dicts.

Parameters:

Name Type Description Default
patch Sequence[Mapping[str, JSONValue]] | Sequence[OperationSchema]

A sequence of JSON Patch operations as dicts.

required
registry TypeForm[OperationSchema] | None

A union of concrete OperationSchemas used for parsing and validation (OpA | OpB | ...). If omitted, the standard RFC 6902 operations are used.

None
Source code in jsonpatchx/standard.py
def __init__(
    self,
    patch: Sequence[Mapping[str, JSONValue]] | Sequence[OperationSchema],
    *,
    registry: TypeForm[OperationSchema] | None = None,
):
    """
    Construct a JsonPatch from a sequence of operation dicts.

    Args:
        patch: A sequence of JSON Patch operations as dicts.
        registry: A union of concrete OperationSchemas used for parsing and
            validation (``OpA | OpB | ...``). If omitted, the standard RFC
            6902 operations are used.
    """
    if registry is None:
        self._registry = _STANDARD_REGISTRY_SPEC
    else:
        self._registry = _RegistrySpec.from_typeform(registry)
    self._ops = self._registry.parse_python_patch(patch)

apply(doc, *, inplace=False)

Apply this patch to doc and return the patched document.

Parameters:

Name Type Description Default
doc JSONValue

The target JSON document.

required
inplace bool

Copy policy. False deep-copies doc before applying operations. True skips that copy and applies operations against doc, but does not guarantee returned object identity for root-targeting operations.

False
Return

patched: The patched JSON document.

Raises:

Type Description
ValidationError

If the input is not a mutable JSONValue.

PatchError

Any patch-domain error raised by operations, including conflicts. PatchInternalError is a PatchError raised for unexpected failures.

Source code in jsonpatchx/standard.py
def apply(
    self,
    doc: JSONValue,
    *,
    inplace: bool = False,
) -> JSONValue:
    """
    Apply this patch to ``doc`` and return the patched document.

    Args:
        doc: The target JSON document.
        inplace: Copy policy. ``False`` deep-copies ``doc`` before applying operations.
            ``True`` skips that copy and applies operations against ``doc``, but does not
            guarantee returned object identity for root-targeting operations.

    Return:
        patched: The patched JSON document.

    Raises:
        ValidationError: If the input is not a mutable ``JSONValue``.
        PatchError: Any patch-domain error raised by operations, including conflicts.
            ``PatchInternalError`` is a ``PatchError`` raised for unexpected failures.
    """
    try:
        _validate_JSONValue(doc)
    except Exception as e:
        raise PatchValidationError(f"Invalid JSON document: {e}") from e
    return _apply_ops(self._ops, doc, inplace=inplace)

from_string(text, *, registry=None) classmethod

Construct a JsonPatch from a JSON-formatted string.

JSON decoding follows last-write-wins just like json.loads() If you want strict duplicate-key rejection, parse JSON yourself and pass the result to JsonPatch().

Parameters:

Name Type Description Default
text str | bytes | bytearray

JSON-formatted string/bytes/bytearray for a JSON Patch document.

required
registry TypeForm[OperationSchema] | None

A union of concrete OperationSchemas used for parsing and validation (OpA | OpB | ...). If omitted, the standard RFC 6902 operations are used.

None
Source code in jsonpatchx/standard.py
@classmethod
def from_string(
    cls,
    text: str | bytes | bytearray,
    *,
    registry: TypeForm[OperationSchema] | None = None,
) -> Self:
    """
    Construct a JsonPatch from a JSON-formatted string.

    JSON decoding follows last-write-wins just like ``json.loads()``
    If you want strict duplicate-key rejection, parse JSON yourself and pass the result to ``JsonPatch()``.

    Args:
        text: JSON-formatted string/bytes/bytearray for a JSON Patch document.
        registry: A union of concrete OperationSchemas used for parsing and
            validation (``OpA | OpB | ...``). If omitted, the standard RFC
            6902 operations are used.
    """
    instance = cls.__new__(cls)
    if registry is None:
        resolved = _STANDARD_REGISTRY_SPEC
    else:
        resolved = _RegistrySpec.from_typeform(registry)
    instance._registry = resolved
    instance._ops = resolved.parse_json_patch(text)
    return instance

to_string()

Serialize this patch to a JSON string.

Source code in jsonpatchx/standard.py
def to_string(self) -> str:
    """Serialize this patch to a JSON string."""
    payload = [op.model_dump(mode="json", by_alias=True) for op in self._ops]
    return json.dumps(payload)

JsonPatchFor

Bases: _RegistryBoundPatchRoot, Generic[TargetT, RegistryT]

Factory for creating typed JSON Patch models bound to a registry declaration.

JsonPatchFor[Target, Registry] produces a patch model. Target is either a Pydantic model or Literal["SchemaName"] for JSON documents. Registry is a union of concrete OperationSchemas (OpA | OpB | ...).

Source code in jsonpatchx/pydantic.py
class JsonPatchFor(_RegistryBoundPatchRoot, Generic[TargetT, RegistryT]):
    """
    Factory for creating typed JSON Patch models bound to a registry declaration.

    ``JsonPatchFor[Target, Registry]`` produces a patch model.
    ``Target`` is either a Pydantic model or ``Literal["SchemaName"]`` for JSON documents.
    ``Registry`` is a union of concrete OperationSchemas (``OpA | OpB | ...``).
    """

    if TYPE_CHECKING:
        # At runtime, JsonPatchFor[X] returns either a _BasePatchBody or a BasePatchModel, each with their own apply().
        # Tell type checkers that JsonPatchFor[X] has an apply() to expose this.

        @overload
        def apply[TargetModelM: BaseModel](
            self: JsonPatchFor[TargetModelM, RegistryT], target: TargetModelM
        ) -> TargetModelM:
            """
            Apply this patch to ``target`` and return the patched Model.

            Args:
                target: The target BaseModel.

            Returns:
                patched: The patched BaseModel.

            Raises:
                PatchValidationError: Patched data fails validation for the target model.
                PatchError: Any patch-domain error raised by operations, including conflicts.
                    ``PatchInternalError`` is a ``PatchError`` raised for unexpected failures.
            """
            pass

        @overload
        def apply[TargetNameN: str](
            self: JsonPatchFor[TargetNameN, RegistryT],
            doc: JSONValue,
            *,
            inplace: bool = False,
        ) -> JSONValue:
            """
            Apply this patch to ``doc`` and return the patched document.

            Args:
                doc: The target JSON document.
                inplace: Copy policy. ``False`` deep-copies ``doc`` first; ``True``
                    applies operations against ``doc`` without that copy. This does
                    not guarantee returned root object identity.

            Return:
                patched: The patched JSON document.

            Raises:
                ValidationError: If the input is not a mutable ``JSONValue``.
                PatchError: Any patch-domain error raised by operations, including conflicts.
                    ``PatchInternalError`` is a ``PatchError`` raised for unexpected failures.
            """
            pass

        def apply(self, *args: Any, **kwargs: Any) -> Any:
            """
            Apply a JSON Patch document.

            Raises:
                TypeError: Model variant expects a Pydantic BaseModel instance.
                ValidationError: If the input is not a mutable ``JSONValue``.
                PatchValidationError: Patched data fails validation for the target model.
                PatchError: Any patch-domain error raised by operations, including conflicts.
                    ``PatchInternalError`` is a ``PatchError`` raised for unexpected failures.
            """
            pass

    @override
    def __class_getitem__(cls, params: object) -> type[_RegistryBoundPatchRoot]:
        if not isinstance(params, tuple) or len(params) != 2:
            raise TypeError(
                "JsonPatchFor expects JsonPatchFor[Target, Registry] where "
                'Target is a BaseModel subclass or Literal["SchemaName"] and '
                "Registry is a union of concrete OperationSchemas. "
                f"Got: {params!r}."
            )

        target, registry = params
        registry = _RegistrySpec.from_typeform(registry)

        schema_name = _coerce_schema_name(target)
        if schema_name is not None:
            return cls._create_json_patch_body(schema_name, registry)

        if not isclass(target) or not issubclass(target, BaseModel):
            raise TypeError(
                'JsonPatchFor[...] expects a Pydantic BaseModel subclass or Literal["SchemaName"], '
                f"got {target!r}"
            )

        return cls._create_model_patch_body(target, registry)

    @staticmethod
    def _create_json_patch_body(
        schema_name: str,
        registry: _RegistrySpec,
    ) -> type[_BasePatchBody]:
        BodyPatchOperation = TypeAliasType(  # type: ignore[misc]
            f"{schema_name}PatchOperation",
            Annotated[
                registry.union_type,
                Field(
                    title=f"{schema_name} Patch Operation",
                    description=(
                        f"Discriminated union of patch operations for {schema_name}."
                    ),
                ),
            ],
        )  # NOTE: can't use type keyword because otherwise OpenAPI title binds to "BodyPatchOperation" instead

        PatchBody = create_model(
            f"{schema_name}PatchRequest",
            __base__=_BasePatchBody,
            __config__=ConfigDict(
                title=f"{schema_name} Patch Request",
                json_schema_extra={
                    "description": f"Array of patch operations for {schema_name}.",
                },
            ),
            root=(list[BodyPatchOperation], ...),  # type: ignore[valid-type]
        )

        PatchBody.__registry__ = registry
        PatchBody.__doc__ = (
            f"Discriminated union of patch operations for {schema_name}."
        )
        return PatchBody

    @staticmethod
    def _create_model_patch_body(
        model: type[ModelT],
        registry: _RegistrySpec,
    ) -> type[_BasePatchModel[ModelT]]:
        ModelPatchOperation = TypeAliasType(  # type: ignore[misc]
            f"{model.__name__}PatchOperation",
            Annotated[
                registry.union_type,
                Field(
                    title=f"{model.__name__} Patch Operation",
                    description=f"Discriminated union of patch operations for {model.__name__}.",
                ),
            ],
        )  # NOTE: can't use type keyword because otherwise OpenAPI title binds to "ModelPatchOperation" instead

        PatchModel = create_model(
            f"{model.__name__}PatchRequest",
            __base__=_BasePatchModel,
            __config__=ConfigDict(
                title=f"{model.__name__} Patch Request",
                json_schema_extra={
                    "description": (
                        f"Array of patch operations for {model.__name__}. "
                        "Applied to model_dump() and re-validated against the model schema."
                    ),
                    "x-target-model": model.__name__,
                },
            ),
            root=(list[ModelPatchOperation], ...),  # type: ignore[valid-type]
        )

        PatchModel.__target_model__ = model
        PatchModel.__registry__ = registry
        PatchModel.__doc__ = f"Array of patch operations for {model.__name__}."
        return PatchModel

apply(*args, **kwargs)

apply(target: TargetModelM) -> TargetModelM
apply(
    doc: JSONValue, *, inplace: bool = False
) -> JSONValue

Apply a JSON Patch document.

Raises:

Type Description
TypeError

Model variant expects a Pydantic BaseModel instance.

ValidationError

If the input is not a mutable JSONValue.

PatchValidationError

Patched data fails validation for the target model.

PatchError

Any patch-domain error raised by operations, including conflicts. PatchInternalError is a PatchError raised for unexpected failures.

Source code in jsonpatchx/pydantic.py
def apply(self, *args: Any, **kwargs: Any) -> Any:
    """
    Apply a JSON Patch document.

    Raises:
        TypeError: Model variant expects a Pydantic BaseModel instance.
        ValidationError: If the input is not a mutable ``JSONValue``.
        PatchValidationError: Patched data fails validation for the target model.
        PatchError: Any patch-domain error raised by operations, including conflicts.
            ``PatchInternalError`` is a ``PatchError`` raised for unexpected failures.
    """
    pass

MoveOp

Bases: OperationSchema, Generic[T]

RFC 6902 move operation.

Source code in jsonpatchx/builtins.py
class MoveOp(OperationSchema, Generic[T]):
    """RFC 6902 move operation."""

    model_config = ConfigDict(
        title="Move operation",
        json_schema_extra={"description": "RFC 6902 move operation."},
    )

    op: Literal["move"] = "move"
    from_: JSONPointer[T] = Field(alias="from")
    path: JSONPointer[T]

    @model_validator(mode="after")
    def _reject_proper_prefixes(self) -> Self:
        if self.from_.is_parent_of(self.path):
            raise OperationValidationError(
                "pointer 'path' cannot be a child of pointer 'from'"
            )
        return self

    @override
    def apply(self, doc: JSONValue) -> JSONValue:
        value = self.from_.get(doc)
        doc = RemoveOp[T](path=self.from_).apply(doc)
        return AddOp[T](path=self.path, value=value).apply(doc)

OperationSchema

Bases: BaseModel, ABC

Base class for typed JSON Patch operations.

An OperationSchema is a Pydantic model representing one JSON Patch operation: standard RFC 6902 operations (add/remove/replace/...) and custom domain operations.

The library's workflow is:

  • Define operations as Pydantic models.
  • Register them in an OperationRegistry.
  • Parse incoming patch documents into concrete operation instances via a discriminated union keyed by op.
  • Apply operations sequentially by calling apply.
Example

Required op field:

class ReplaceOp(OperationSchema): op: Literal["replace"] = "replace" path: JSONPointer[JSONValue] value: JSONValue

Multiple identifiers (aliases):

class CreateOp(OperationSchema): op: Literal["create", "add"] = "create"

Notes
  • op must be a normal annotated attribute, not a ClassVar. ClassVar values are not Pydantic fields and cannot participate in discriminated-union dispatch.
  • Instances are frozen and strict by default.
  • Instances are revalidated when parsed, which matters for fields that depend on validation context (for example, registry-scoped pointer backends).
  • Subclasses are validated at class-definition time. If op is not declared correctly, the class raises InvalidOperationDefinition during import.
Source code in jsonpatchx/schema.py
class OperationSchema(BaseModel, ABC):
    """
    Base class for typed JSON Patch operations.

    An ``OperationSchema`` is a Pydantic model representing one JSON Patch operation:
    standard RFC 6902 operations (``add``/``remove``/``replace``/...) and custom domain operations.

    The library's workflow is:

    - Define operations as Pydantic models.
    - Register them in an ``OperationRegistry``.
    - Parse incoming patch documents into concrete operation instances via a discriminated union
      keyed by ``op``.
    - Apply operations sequentially by calling ``apply``.

    Example:
        Required ``op`` field:

        ``class ReplaceOp(OperationSchema):``
        ``    op: Literal["replace"] = "replace"``
        ``    path: JSONPointer[JSONValue]``
        ``    value: JSONValue``

        Multiple identifiers (aliases):

        ``class CreateOp(OperationSchema):``
        ``    op: Literal["create", "add"] = "create"``

    Notes:
        - ``op`` must be a normal annotated attribute, not a ``ClassVar``. ``ClassVar`` values are not
          Pydantic fields and cannot participate in discriminated-union dispatch.
        - Instances are frozen and strict by default.
        - Instances are revalidated when parsed, which matters for fields that depend on validation
          context (for example, registry-scoped pointer backends).
        - Subclasses are validated at class-definition time. If ``op`` is not declared correctly, the
          class raises ``InvalidOperationDefinition`` during import.
    """

    model_config = ConfigDict(
        frozen=True,  # Patch operations are not stateful
        strict=True,  # Flexible validation can still be provided per field as desired
        extra="allow",  # Standard JSON Patch allows extras
        validate_by_alias=True,  # Some JSON Patch keys are protected keywords in Python, such as 'from', and require aliases to bypass.
        serialize_by_alias=True,  # Consistent with validation
        loc_by_alias=True,  #  So error messages also use alias. For example, when 'from' is an alias of 'from_', errors should say, "error at: from".
        validate_default=True,  # Validate default values against their intended type annotations
        validate_return=True,  # For extra correctness. Also ensures that 'apply()' always results in valid JSON.
        use_enum_values=True,  # For consistent serialization when values are Enums
        allow_inf_nan=False,  # infinite values are not valid JSON
        validation_error_cause=False,  # Consider enabling when Pydantic guarantees a stable error structure. Useful to flip when debugging locally.
    )

    _op_literals: ClassVar[tuple[str, ...]]
    """
    Internal: cached tuple of string op identifiers declared by the subclass' ``op: Literal[...]``.

    This is populated during subclass creation and is used by OperationRegistry to build the mapping
    from operation name to schema type.
    """

    @override
    def __init_subclass__(cls, **kwargs: Unpack[ConfigDict]) -> None:
        """
        Hook that validates subclasses at definition time.

        Public subclasses normally do not need to call this directly. The base class ensures that
        every OperationSchema has a properly declared ``op`` field, and caches the allowed op
        identifiers for registry dispatch.
        """
        super().__init_subclass__(**kwargs)
        cls._op_literals = cls._get_op_literals()

    @classmethod
    def _get_op_literals(cls) -> tuple[str, ...]:
        """
        Internal: extract the string literal values from the subclass' ``op`` annotation.

        Supported forms:

        - ``op: Literal["add"]``
        - ``op: Literal["add", "create"]``

        Raises ``InvalidOperationDefinition`` if the subclass does not declare a valid ``Literal[str, ...]``
        annotation for ``op``.
        """
        if (
            (annotations := get_type_hints(cls, include_extras=True))
            and (op_annotation := annotations.get("op"))
            and (get_origin(op_annotation) is Literal)
            and (op_literals := get_args(op_annotation))
            and all(isinstance(v, str) for v in op_literals)
        ):
            return op_literals
        else:
            raise InvalidOperationDefinition(
                f"OperationSchema '{cls.__name__}' is missing valid type hints for required 'op' field. "
                "'op' must be an instance field annotated as a Literal[...] of strings."
            )

    @abstractmethod
    def apply(self, doc: JSONValue) -> JSONValue:
        """
        Apply this operation to ``doc`` and return the updated document.

        Notes:
            - Implementations may mutate the provided ``doc`` object in-place and should return the
              updated document (often the same object).
            - Raise ``PatchError`` subclasses for expected patch failures. Unexpected exceptions will
              be wrapped by the patch engine.
            - Whether the caller-owned document is mutated is controlled by the patch engine
              (see ``_apply_ops(..., inplace=...)``), not by this method.
        """

    @classmethod
    @override
    def __get_pydantic_json_schema__(
        cls, schema: cs.CoreSchema, handler: GetJsonSchemaHandler
    ) -> JsonSchemaValue:
        json_schema = handler(schema)

        # Allow users to set "op" defaults, but tell OpenAPI it's required
        required = set(json_schema.get("required", []))
        required.add("op")
        json_schema["required"] = sorted(required)

        # Add description to 'op' for consistency across models
        json_schema["properties"]["op"].setdefault(
            "description", "The operation to perform."
        )
        return json_schema

__init_subclass__(**kwargs)

Hook that validates subclasses at definition time.

Public subclasses normally do not need to call this directly. The base class ensures that every OperationSchema has a properly declared op field, and caches the allowed op identifiers for registry dispatch.

Source code in jsonpatchx/schema.py
@override
def __init_subclass__(cls, **kwargs: Unpack[ConfigDict]) -> None:
    """
    Hook that validates subclasses at definition time.

    Public subclasses normally do not need to call this directly. The base class ensures that
    every OperationSchema has a properly declared ``op`` field, and caches the allowed op
    identifiers for registry dispatch.
    """
    super().__init_subclass__(**kwargs)
    cls._op_literals = cls._get_op_literals()

apply(doc) abstractmethod

Apply this operation to doc and return the updated document.

Notes
  • Implementations may mutate the provided doc object in-place and should return the updated document (often the same object).
  • Raise PatchError subclasses for expected patch failures. Unexpected exceptions will be wrapped by the patch engine.
  • Whether the caller-owned document is mutated is controlled by the patch engine (see _apply_ops(..., inplace=...)), not by this method.
Source code in jsonpatchx/schema.py
@abstractmethod
def apply(self, doc: JSONValue) -> JSONValue:
    """
    Apply this operation to ``doc`` and return the updated document.

    Notes:
        - Implementations may mutate the provided ``doc`` object in-place and should return the
          updated document (often the same object).
        - Raise ``PatchError`` subclasses for expected patch failures. Unexpected exceptions will
          be wrapped by the patch engine.
        - Whether the caller-owned document is mutated is controlled by the patch engine
          (see ``_apply_ops(..., inplace=...)``), not by this method.
    """

OperationValidationError

Bases: PatchInputError

An OperationSchema instance failed validation (client error).

Examples:

  • Swap operation rejects parent/child pointers via a model validator.
  • Operation fields violate custom constraints in validators.
Typical HTTP mapping

422 Unprocessable Entity.

Source code in jsonpatchx/exceptions.py
class OperationValidationError(PatchInputError):
    """
    An OperationSchema instance failed validation (client error).

    Examples:
        - Swap operation rejects parent/child pointers via a model validator.
        - Operation fields violate custom constraints in validators.

    Typical HTTP mapping:
        422 Unprocessable Entity.
    """

PatchConflictError

Bases: PatchError

A JSON Patch failed due to a conflict with the current document state.

Examples:

  • Path does not exist or array index is out of range.
  • Removing a value at a missing or invalid path.
Typical HTTP mapping

409 Conflict (some APIs may prefer 422).

Source code in jsonpatchx/exceptions.py
class PatchConflictError(PatchError):
    """
    A JSON Patch failed due to a conflict with the current document state.

    Examples:
        - Path does not exist or array index is out of range.
        - Removing a value at a missing or invalid path.

    Typical HTTP mapping:
        409 Conflict (some APIs may prefer 422).
    """

PatchError

Bases: Exception

Base class for JSON Patch errors.

This type is not raised directly; it anchors the error hierarchy for tooling and API error mapping.

Source code in jsonpatchx/exceptions.py
class PatchError(Exception):
    """
    Base class for JSON Patch errors.

    This type is not raised directly; it anchors the error hierarchy for tooling
    and API error mapping.
    """

PatchFailureDetail dataclass

Structured failure details for patch application.

Attributes:

Name Type Description
index int

0-based index of the operation within the patch document.

op OperationSchema

Best-effort JSON-serializable representation of the failing operation. For OperationSchema instances, this is model_dump(mode="json", by_alias=True). For mapping-like inputs, this is dict(op). As a last resort, {"repr": repr(op)}.

message str

Human-readable error message.

cause_type str | None

The exception class name of the underlying cause (useful for logging / API error mapping).

Source code in jsonpatchx/exceptions.py
@dataclass(frozen=True, slots=True)
class PatchFailureDetail:
    """
    Structured failure details for patch application.

    Attributes:
        index: 0-based index of the operation within the patch document.
        op: Best-effort JSON-serializable representation of the failing operation.
            For OperationSchema instances, this is model_dump(mode="json", by_alias=True).
            For mapping-like inputs, this is dict(op).
            As a last resort, {"repr": repr(op)}.
        message: Human-readable error message.
        cause_type: The exception class name of the underlying cause (useful for logging / API error mapping).
    """

    index: int
    op: OperationSchema
    message: str
    cause_type: str | None = None

PatchInputError

Bases: PatchError

Patch input is invalid or fails validation.

Examples:

  • Invalid JSON Pointer syntax in an incoming operation.
  • Operation-specific validation failure (e.g., swap parent/child paths).
  • Model revalidation fails after applying a patch.
Typical HTTP mapping

422 Unprocessable Entity.

Source code in jsonpatchx/exceptions.py
class PatchInputError(PatchError):
    """
    Patch input is invalid or fails validation.

    Examples:
        - Invalid JSON Pointer syntax in an incoming operation.
        - Operation-specific validation failure (e.g., swap parent/child paths).
        - Model revalidation fails after applying a patch.

    Typical HTTP mapping:
        422 Unprocessable Entity.
    """

PatchInternalError

Bases: PatchError

Unexpected exception during patch execution wrapped with structured context.

This is meant for API layers and debuggability
  • points at the exact op index
  • includes the full op payload (best-effort JSON shape)
Example

A ZeroDivisionError raised inside a custom op implementation that fails to catch it.

Typical HTTP mapping

500 Internal Server Error (unexpected failure).

Source code in jsonpatchx/exceptions.py
class PatchInternalError(PatchError):
    """
    Unexpected exception during patch execution wrapped with structured context.

    This is meant for API layers and debuggability:
        - points at the exact op index
        - includes the full op payload (best-effort JSON shape)

    Example:
        A ZeroDivisionError raised inside a custom op implementation that fails
        to catch it.

    Typical HTTP mapping:
        500 Internal Server Error (unexpected failure).
    """

    def __init__(
        self, detail: PatchFailureDetail, *, cause: BaseException | None = None
    ):
        self.detail = detail
        super().__init__(self._format(detail))
        if cause is not None:
            self.__cause__ = cause

    @staticmethod
    def _format(d: PatchFailureDetail) -> str:
        op_name = getattr(d.op, "op")
        return f"Error applying op[{d.index}] ({op_name}): {d.message}"

PatchValidationError

Bases: PatchInputError

Patched data failed validation against a target schema.

Examples:

  • Model-aware patching produces a document that violates the target model.
Typical HTTP mapping

422 Unprocessable Entity.

Source code in jsonpatchx/exceptions.py
class PatchValidationError(PatchInputError):
    """
    Patched data failed validation against a target schema.

    Examples:
        - Model-aware patching produces a document that violates the target model.

    Typical HTTP mapping:
        422 Unprocessable Entity.
    """

RemoveOp

Bases: OperationSchema, Generic[T]

RFC 6902 remove operation. Removal of the root sets it to null.

Source code in jsonpatchx/builtins.py
class RemoveOp(OperationSchema, Generic[T]):
    """RFC 6902 remove operation. Removal of the root sets it to null."""

    model_config = ConfigDict(
        title="Remove operation",
        json_schema_extra={
            "description": "RFC 6902 remove operation. Removal of the root sets it to null."
        },
    )

    op: Literal["remove"] = "remove"
    path: JSONPointer[T]

    @override
    def apply(self, doc: JSONValue) -> JSONValue:
        return self.path.remove(doc)

ReplaceOp

Bases: OperationSchema, Generic[T]

RFC 6902 replace operation.

Source code in jsonpatchx/builtins.py
class ReplaceOp(OperationSchema, Generic[T]):
    """RFC 6902 replace operation."""

    model_config = ConfigDict(
        title="Replace operation",
        json_schema_extra={"description": "RFC 6902 replace operation."},
    )

    op: Literal["replace"] = "replace"
    path: JSONPointer[T]
    value: T

    @override
    def apply(self, doc: JSONValue) -> JSONValue:
        doc = RemoveOp[T](path=self.path).apply(doc)
        return AddOp[T](path=self.path, value=self.value).apply(doc)

TestOp

Bases: OperationSchema, Generic[T]

RFC 6902 test operation.

Source code in jsonpatchx/builtins.py
class TestOp(OperationSchema, Generic[T]):
    """RFC 6902 test operation."""

    __test__ = False  # Suppress pytest warning

    model_config = ConfigDict(
        title="Test operation",
        json_schema_extra={"description": "RFC 6902 test operation."},
    )

    op: Literal["test"] = "test"
    path: JSONPointer[T]
    value: T

    @override
    def apply(self, doc: JSONValue) -> JSONValue:
        actual = self.path.get(doc)
        if actual != self.value:
            raise TestOpFailed(
                f"test at path {self.path!r} failed, got {actual!r} but expected {self.value!r}"
            )
        return doc

TestOpFailed

Bases: PatchConflictError

A test operation failed (RFC 6902).

Typical HTTP mapping

409 Conflict (state mismatch).

Source code in jsonpatchx/exceptions.py
class TestOpFailed(PatchConflictError):
    """
    A test operation failed (RFC 6902).

    Typical HTTP mapping:
        409 Conflict (state mismatch).
    """

    __test__ = False

apply_patch(doc, patch, *, registry=None, inplace=False)

Apply a standard RFC 6902 JSON Patch document to doc.

This is a small convenience wrapper around JsonPatch using the standard registry.

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required
patch Sequence[Mapping[str, JSONValue]]

Patch document as a sequence of operation mappings.

required
registry TypeForm[OperationSchema] | None

A union of concrete OperationSchemas used for parsing and validation (OpA | OpB | ...). If omitted, the standard RFC 6902 operations are used.

None
inplace bool

Copy policy. False deep-copies doc first; True skips that copy. This is not a guarantee that the returned object is the exact same root object. See _apply_ops(..., inplace=...) for full semantics.

False

Returns:

Type Description
JSONValue

The patched document.

Source code in jsonpatchx/standard.py
def apply_patch(
    doc: JSONValue,
    patch: Sequence[Mapping[str, JSONValue]],
    *,
    registry: TypeForm[OperationSchema] | None = None,
    inplace: bool = False,
) -> JSONValue:
    """
    Apply a standard RFC 6902 JSON Patch document to ``doc``.

    This is a small convenience wrapper around ``JsonPatch`` using the standard registry.

    Args:
        doc: Target JSON document.
        patch: Patch document as a sequence of operation mappings.
        registry: A union of concrete OperationSchemas used for parsing and
            validation (``OpA | OpB | ...``). If omitted, the standard RFC
            6902 operations are used.
        inplace: Copy policy. ``False`` deep-copies ``doc`` first; ``True`` skips that copy.
            This is not a guarantee that the returned object is the exact same root object.
            See ``_apply_ops(..., inplace=...)`` for full semantics.

    Returns:
        The patched document.
    """
    return JsonPatch(patch, registry=registry).apply(doc, inplace=inplace)