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

RFC 6902 add operation.

Source code in jsonpatchx/builtins.py
class AddOp(OperationSchema):
    """RFC 6902 add operation."""

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

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

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

CopyOp

Bases: OperationSchema

RFC 6902 copy operation.

Source code in jsonpatchx/builtins.py
class CopyOp(OperationSchema):
    """RFC 6902 copy operation."""

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

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

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

DEFAULT_POINTER_CLS

Default JSON Pointer backend powered by jsonpointer.JsonPointer.

This implementation parses RFC 6901 pointer strings, exposes unescaped parts, reconstructs canonical pointers from parts, and resolves pointers against JSON documents.

Source code in jsonpatchx/backend.py
class DEFAULT_POINTER_CLS:
    """
    Default JSON Pointer backend powered by `jsonpointer.JsonPointer`.

    This implementation parses RFC 6901 pointer strings, exposes unescaped
    parts, reconstructs canonical pointers from parts, and resolves pointers
    against JSON documents.
    """

    __slots__ = ("_parts", "_pointer")

    @override
    def __init__(self, pointer: str) -> None:
        """Parse an RFC 6901 pointer string and cache its unescaped parts.

        Arguments:
            pointer: RFC 6901 pointer string to parse.
        """
        self._pointer = _FixedJsonPointer(pointer)
        self._parts = cast(Sequence[str], self._pointer.parts)

    @property
    def parts(self) -> Sequence[str]:
        """Return the pointer's unescaped RFC 6901 reference tokens.

        Returns:
            The pointer's unescaped reference tokens.
        """
        return self._parts

    @classmethod
    def from_parts(cls, parts: Iterable[str]) -> Self:
        """Build a canonical RFC 6901 pointer from unescaped reference tokens.

        Arguments:
            parts: Unescaped RFC 6901 reference tokens.

        Returns:
            A canonical RFC 6901 pointer for those tokens.
        """
        canonical = _FixedJsonPointer.from_parts(parts)
        return cls(str(canonical))

    def resolve(self, doc: JSONValue) -> JSONValue:
        """Resolve this pointer against a JSON document.

        Arguments:
            doc: JSON document to resolve against.

        Returns:
            The value targeted by this pointer.
        """
        return cast(JSONValue, self._pointer.resolve(doc))

    @override
    def __str__(self) -> str:
        """Return the canonical RFC 6901 string form.

        Returns:
            The canonical RFC 6901 string representation.
        """
        return str(self._pointer)

    @override
    def __repr__(self) -> str:
        """Return a debugging representation of this backend instance.

        Returns:
            A representation showing the backend name and source pointer.
        """
        return "JsonPointerRFC6901(" + repr(self._pointer.path) + ")"

parts property

Return the pointer's unescaped RFC 6901 reference tokens.

Returns:

Type Description
Sequence[str]

The pointer's unescaped reference tokens.

__init__(pointer)

Parse an RFC 6901 pointer string and cache its unescaped parts.

Parameters:

Name Type Description Default
pointer str

RFC 6901 pointer string to parse.

required
Source code in jsonpatchx/backend.py
@override
def __init__(self, pointer: str) -> None:
    """Parse an RFC 6901 pointer string and cache its unescaped parts.

    Arguments:
        pointer: RFC 6901 pointer string to parse.
    """
    self._pointer = _FixedJsonPointer(pointer)
    self._parts = cast(Sequence[str], self._pointer.parts)

__repr__()

Return a debugging representation of this backend instance.

Returns:

Type Description
str

A representation showing the backend name and source pointer.

Source code in jsonpatchx/backend.py
@override
def __repr__(self) -> str:
    """Return a debugging representation of this backend instance.

    Returns:
        A representation showing the backend name and source pointer.
    """
    return "JsonPointerRFC6901(" + repr(self._pointer.path) + ")"

__str__()

Return the canonical RFC 6901 string form.

Returns:

Type Description
str

The canonical RFC 6901 string representation.

Source code in jsonpatchx/backend.py
@override
def __str__(self) -> str:
    """Return the canonical RFC 6901 string form.

    Returns:
        The canonical RFC 6901 string representation.
    """
    return str(self._pointer)

from_parts(parts) classmethod

Build a canonical RFC 6901 pointer from unescaped reference tokens.

Parameters:

Name Type Description Default
parts Iterable[str]

Unescaped RFC 6901 reference tokens.

required

Returns:

Type Description
Self

A canonical RFC 6901 pointer for those tokens.

Source code in jsonpatchx/backend.py
@classmethod
def from_parts(cls, parts: Iterable[str]) -> Self:
    """Build a canonical RFC 6901 pointer from unescaped reference tokens.

    Arguments:
        parts: Unescaped RFC 6901 reference tokens.

    Returns:
        A canonical RFC 6901 pointer for those tokens.
    """
    canonical = _FixedJsonPointer.from_parts(parts)
    return cls(str(canonical))

resolve(doc)

Resolve this pointer against a JSON document.

Parameters:

Name Type Description Default
doc JSONValue

JSON document to resolve against.

required

Returns:

Type Description
JSONValue

The value targeted by this pointer.

Source code in jsonpatchx/backend.py
def resolve(self, doc: JSONValue) -> JSONValue:
    """Resolve this pointer against a JSON document.

    Arguments:
        doc: JSON document to resolve against.

    Returns:
        The value targeted by this pointer.
    """
    return cast(JSONValue, self._pointer.resolve(doc))

DEFAULT_SELECTOR_CLS

Default JSONPath selector backend powered by python-jsonpath.

This implementation compiles JSONPath expressions with the shared strict environment and yields exact pointer locations for each match.

Disclaimer

This backend follows RFC 9535 path syntax and semantics, except on Python 3.14 and later where regex-related behavior falls back to Python's built-in re module because the upstream iregexp-check dependency is not yet compatible with free-threaded Python.

Source code in jsonpatchx/backend.py
class DEFAULT_SELECTOR_CLS:
    """
    Default JSONPath selector backend powered by `python-jsonpath`.

    This implementation compiles JSONPath expressions with the shared strict
    environment and yields exact pointer locations for each match.

    Disclaimer:
        This backend follows RFC 9535 path syntax and semantics, except on
        Python 3.14 and later where regex-related behavior falls back to
        Python's built-in `re` module because the upstream `iregexp-check`
        dependency is not yet compatible with free-threaded Python.
    """

    __slots__ = ("_path", "_selector")

    def __init__(self, selector: str) -> None:
        """Compile a JSONPath selector string with the built-in strict environment.

        Arguments:
            selector: JSONPath selector string to compile.
        """
        self._path = selector
        self._selector = _DEFAULT_SELECTOR_ENV.compile(selector)

    def pointers(self, doc: JSONValue) -> Iterable[DEFAULT_POINTER_CLS]:
        """Yield canonical RFC 6901 pointers for each matched location.

        Arguments:
            doc: JSON document to evaluate against.

        Returns:
            An iterable of canonical RFC 6901 pointers for each match.
        """
        for match in self._selector.finditer(doc):
            yield DEFAULT_POINTER_CLS.from_parts((str(part) for part in match.parts))

    @override
    def __str__(self) -> str:
        """Return the selector's original source string.

        Returns:
            The original selector source string.
        """
        return self._path

    @override
    def __repr__(self) -> str:
        """Return a debugging representation of this backend instance.

        Returns:
            A representation showing the backend name and source selector.
        """
        return "JsonPathRFC9535(" + repr(self._path) + ")"

__init__(selector)

Compile a JSONPath selector string with the built-in strict environment.

Parameters:

Name Type Description Default
selector str

JSONPath selector string to compile.

required
Source code in jsonpatchx/backend.py
def __init__(self, selector: str) -> None:
    """Compile a JSONPath selector string with the built-in strict environment.

    Arguments:
        selector: JSONPath selector string to compile.
    """
    self._path = selector
    self._selector = _DEFAULT_SELECTOR_ENV.compile(selector)

__repr__()

Return a debugging representation of this backend instance.

Returns:

Type Description
str

A representation showing the backend name and source selector.

Source code in jsonpatchx/backend.py
@override
def __repr__(self) -> str:
    """Return a debugging representation of this backend instance.

    Returns:
        A representation showing the backend name and source selector.
    """
    return "JsonPathRFC9535(" + repr(self._path) + ")"

__str__()

Return the selector's original source string.

Returns:

Type Description
str

The original selector source string.

Source code in jsonpatchx/backend.py
@override
def __str__(self) -> str:
    """Return the selector's original source string.

    Returns:
        The original selector source string.
    """
    return self._path

pointers(doc)

Yield canonical RFC 6901 pointers for each matched location.

Parameters:

Name Type Description Default
doc JSONValue

JSON document to evaluate against.

required

Returns:

Type Description
Iterable[DEFAULT_POINTER_CLS]

An iterable of canonical RFC 6901 pointers for each match.

Source code in jsonpatchx/backend.py
def pointers(self, doc: JSONValue) -> Iterable[DEFAULT_POINTER_CLS]:
    """Yield canonical RFC 6901 pointers for each matched location.

    Arguments:
        doc: JSON document to evaluate against.

    Returns:
        An iterable of canonical RFC 6901 pointers for each match.
    """
    for match in self._selector.finditer(doc):
        yield DEFAULT_POINTER_CLS.from_parts((str(part) for part in match.parts))

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.
    """

InvalidJSONSelector

Bases: PatchInputError

A JSON selector definition or instance is invalid.

Examples:

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

422 Unprocessable Entity for request input.

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

    Examples:
        - Selector string is malformed or uses an incompatible backend.
        - Selector 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. Examples: 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 returns MISSING to represent document deletion rather than a JSON null value. A missing root document is handled as its own state: root get and root remove fail, while root add recreates the document. 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
 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
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
@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.
    Examples: 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 returns
      `MISSING` to represent document deletion rather than a JSON `null` value.
      A missing root document is handled as its own state: root `get` and root `remove`
      fail, while root `add` recreates the document.
      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 the cached Pydantic adapter used for strict `T` validation."""
        return _cached_adapter(self._type)

    @property
    def parent_ptr(self) -> P_co:  # NOTE: add parent property for JSONPointer of parent
        """Return the backend pointer for this pointer's parent path."""
        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:
        """
        Normalize a raw pointer input into a validated `JSONPointer`.

        Arguments:
            path: Pointer string, parsed `JSONPointer`, or backend pointer
                instance supplied by Pydantic validation.
            type_param: Already-validated runtime type parameter `T`.
            concrete_backend: Already-validated backend parameter.

        Returns:
            A `JSONPointer` bound to the resolved backend and type parameter.

        Raises:
            InvalidJSONPointer: If an existing pointer/backend instance cannot
                be rebound to the required backend.
        """
        resolved_backend = cls._resolve_runtime_backend_param(concrete_backend)
        ptr: PointerBackend
        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: type[PointerBackend]
        pointer_backend_param = schema.get("metadata", {}).get("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.get("metadata", {}).get("type_param")
        json_schema["x-pointer-type-schema"] = _cached_adapter(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, InvalidJSONPointer)

        return type_param, backend_param

    @staticmethod
    def _resolve_backend_type_param(
        backend_param: object,
    ) -> type[PointerBackend] | TypeVar:
        """
        Validate the backend generic argument before runtime resolution.

        Arguments:
            backend_param: Raw second generic argument from
                `JSONPointer[T, Backend]`.

        Returns:
            A backend class or unresolved `TypeVar`.

        Raises:
            InvalidJSONPointer: If the backend argument is neither a class nor
                a `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]:
        """
        Resolve a backend parameter to a concrete runtime backend class.

        Arguments:
            backend_param: Backend class or backend `TypeVar`.

        Returns:
            A concrete `PointerBackend` class.

        Raises:
            InvalidJSONPointer: If an unspecialized backend `TypeVar` cannot be
                resolved to a concrete default backend.
        """
        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]:
        """
        Resolve an unspecialized backend `TypeVar` using its default.

        Arguments:
            backend_typevar: Backend `TypeVar` from the generic parameter list.

        Returns:
            A concrete `PointerBackend` class.

        Raises:
            InvalidJSONPointer: If the `TypeVar` has no usable default backend.
        """
        # 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:
        """
        Coerce a potential default backend candidate into a usable class.

        Arguments:
            candidate: Runtime object drawn from a backend `TypeVar` default.

        Returns:
            A concrete `PointerBackend` class, or `None` if the candidate is
            not usable as a runtime backend.
        """
        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:
        """
        Validate a resolved or replacement value against this pointer's type.

        Arguments:
            target: Candidate value to validate strictly against `T`.

        Returns:
            The validated value, typed as `T`.

        Raises:
            PatchConflictError: If `target` does not conform to `T`.
        """
        try:
            return self._adapter.validate_python(target, strict=True)
        except ValidationError as e:
            raise PatchConflictError(
                f"expected target type {self.type_param} for pointer {str(self)!r}, got: {type(target)}"
            ) from e

    def _validate_replacement(self, value: object) -> JSONValue:
        """
        Validate a replacement value for pointer-backed mutation.

        Arguments:
            value: Candidate value to write at this pointer.

        Returns:
            A strictly validated JSON value.

        Raises:
            PatchConflictError: If `value` does not conform to this pointer's
                type parameter or is not a valid `JSONValue`.
        """
        value_T = self._validate_target(target=value)
        try:
            return _validate_JSONValue(value_T)
        except ValidationError as e:
            raise PatchConflictError(f"value {value!r} is not a valid JSONValue") from e

    # Constructor - for convenience

    @overload
    @classmethod
    def parse(
        cls,
        path: str | Self | PointerBackend,
        *,
        backend: type[P_parse] | None = None,
    ) -> "JSONPointer[JSONValue, P_parse]": ...

    @overload
    @classmethod
    def parse(
        cls,
        path: str | Self | PointerBackend,
        *,
        type_param: TypeForm[T_parse],
        backend: type[P_parse] | None = None,
    ) -> "JSONPointer[T_parse, P_parse]": ...

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

        Arguments:
            path: Pointer string, parsed pointer, or pointer backend instance.
            type_param: Type enforced when the pointer is exercised.
            backend: Optional concrete backend class. When omitted, the built-in
                RFC 6901 backend is used.

        Returns:
            A validated `JSONPointer` instance.

        Raises:
            InvalidJSONPointer: If the pointer string, backend, or generic
                parameters are invalid.

        Notes:
            `type_param` technically places the covariant `T` parameter in an
            input position, which would normally be an unsound public API
            shape. That tradeoff is intentional here because `parse()` is only
            a convenience constructor around Pydantic validation. Normal
            construction happens through Pydantic on an already-specialized
            `JSONPointer[...]` type, so callers are not meant to treat
            `parse()` as the primary semantic surface for consuming `T`.
        """
        resolved_type_param = (
            JSONValue if type_param is _Nothing else cast(TypeForm[Any], type_param)
        )

        pointer_args: tuple[TypeForm[Any], ...]
        if backend is None:
            pointer_args = (resolved_type_param,)
        else:
            pointer_args = (resolved_type_param, backend)
        validated_type, validated_backend = cls._parse_pointer_type_args(*pointer_args)

        if backend is None:
            adapter = _cached_adapter(
                JSONPointer[validated_type]  # type: ignore[valid-type]
            )
        else:
            adapter = _cached_adapter(
                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:
        """
        Return `True` if `target` conforms to this pointer's type.

        Arguments:
            target: Candidate value to validate.

        Returns:
            `True` when `target` validates strictly against `T`,
            otherwise `False`.
        """
        try:
            self._adapter.validate_python(target, strict=True)
            return True
        except ValidationError:
            return False

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

        Arguments:
            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`.
        """
        if classify_state(self._ptr, doc) is TargetState.MISSING:
            raise PatchConflictError(f"target {str(self)!r} does not exist")

        # 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
        val = self._validate_target(target)
        return val

    def is_gettable(self, doc: JSONValue) -> bool:
        """
        Return `True` if `get(doc)` would succeed.

        Arguments:
            doc: Target JSON document.

        Returns:
            `True` if the pointer resolves to an existing value of type
            `T`, otherwise `False`.
        """
        try:
            self.get(doc)
        except PatchConflictError:
            return False
        else:
            return True

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

        Arguments:
            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`.
        """
        target = self._validate_replacement(value)

        match classify_state(self._ptr, doc):
            case TargetState.MISSING:
                return target
            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.

        Arguments:
            doc: Target JSON document.
            value: Optional value that would be written at this pointer. When
                provided, it must conform to `T` and to `JSONValue`.

        Returns:
            `True` if add semantics would succeed, otherwise `False`.
        """
        if value is not _Nothing:
            try:
                self._validate_replacement(value)
            except PatchConflictError:
                return False

        match classify_state(self._ptr, doc):
            case TargetState.MISSING:
                return True
            case TargetState.ROOT:
                return self.is_valid_type(doc)
            case TargetState.VALUE_PRESENT:
                container = cast(JSONContainer[JSONValue], 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 returns `MISSING`.

        Arguments:
            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.MISSING:
                raise PatchConflictError(f"target {str(self)!r} does not exist")
            case TargetState.ROOT:
                # Choice: Removal of root returns MISSING.
                # Why: Root removal is document deletion, not replacement with JSON null.
                self._validate_target(doc)
                return cast(JSONValue, MISSING)
            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 = cast(JSONContainer[JSONValue], self.parent_ptr.resolve(doc))
                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.

        Arguments:
            doc: Target JSON document.

        Returns:
            `True` if remove semantics would succeed, otherwise `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})"

parent_ptr property

Return the backend pointer for this pointer's parent path.

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).

    Arguments:
        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`.
    """
    target = self._validate_replacement(value)

    match classify_state(self._ptr, doc):
        case TargetState.MISSING:
            return target
        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).

    Arguments:
        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`.
    """
    if classify_state(self._ptr, doc) is TargetState.MISSING:
        raise PatchConflictError(f"target {str(self)!r} does not exist")

    # 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
    val = self._validate_target(target)
    return val

is_addable(doc, value=_Nothing)

Return True if RFC 6902 add would succeed for this document.

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required
value object

Optional value that would be written at this pointer. When provided, it must conform to T and to JSONValue.

_Nothing

Returns:

Type Description
bool

True if add semantics would succeed, otherwise False.

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.

    Arguments:
        doc: Target JSON document.
        value: Optional value that would be written at this pointer. When
            provided, it must conform to `T` and to `JSONValue`.

    Returns:
        `True` if add semantics would succeed, otherwise `False`.
    """
    if value is not _Nothing:
        try:
            self._validate_replacement(value)
        except PatchConflictError:
            return False

    match classify_state(self._ptr, doc):
        case TargetState.MISSING:
            return True
        case TargetState.ROOT:
            return self.is_valid_type(doc)
        case TargetState.VALUE_PRESENT:
            container = cast(JSONContainer[JSONValue], 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(doc) would succeed.

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required

Returns:

Type Description
bool

True if the pointer resolves to an existing value of type

bool

T, otherwise False.

Source code in jsonpatchx/pointer.py
def is_gettable(self, doc: JSONValue) -> bool:
    """
    Return `True` if `get(doc)` would succeed.

    Arguments:
        doc: Target JSON document.

    Returns:
        `True` if the pointer resolves to an existing value of type
        `T`, otherwise `False`.
    """
    try:
        self.get(doc)
    except PatchConflictError:
        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.

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required

Returns:

Type Description
bool

True if remove semantics would succeed, otherwise 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.

    Arguments:
        doc: Target JSON document.

    Returns:
        `True` if remove semantics would succeed, otherwise `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)

Return True if target conforms to this pointer's type.

Parameters:

Name Type Description Default
target object

Candidate value to validate.

required

Returns:

Type Description
bool

True when target validates strictly against T,

bool

otherwise False.

Source code in jsonpatchx/pointer.py
def is_valid_type(self, target: object) -> bool:
    """
    Return `True` if `target` conforms to this pointer's type.

    Arguments:
        target: Candidate value to validate.

    Returns:
        `True` when `target` validates strictly against `T`,
        otherwise `False`.
    """
    try:
        self._adapter.validate_python(target, strict=True)
        return True
    except ValidationError:
        return False

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

parse(
    path: str | Self | PointerBackend,
    *,
    backend: type[P_parse] | None = None,
) -> JSONPointer[JSONValue, P_parse]
parse(
    path: str | Self | PointerBackend,
    *,
    type_param: TypeForm[T_parse],
    backend: type[P_parse] | None = None,
) -> JSONPointer[T_parse, P_parse]

Parse a pointer string or instance using Pydantic validation.

Parameters:

Name Type Description Default
path str | Self | PointerBackend

Pointer string, parsed pointer, or pointer backend instance.

required
type_param TypeForm[Any] | object

Type enforced when the pointer is exercised.

_Nothing
backend type[PointerBackend] | None

Optional concrete backend class. When omitted, the built-in RFC 6901 backend is used.

None

Returns:

Type Description
JSONPointer[Any, PointerBackend]

A validated JSONPointer instance.

Raises:

Type Description
InvalidJSONPointer

If the pointer string, backend, or generic parameters are invalid.

Notes

type_param technically places the covariant T parameter in an input position, which would normally be an unsound public API shape. That tradeoff is intentional here because parse() is only a convenience constructor around Pydantic validation. Normal construction happens through Pydantic on an already-specialized JSONPointer[...] type, so callers are not meant to treat parse() as the primary semantic surface for consuming T.

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

    Arguments:
        path: Pointer string, parsed pointer, or pointer backend instance.
        type_param: Type enforced when the pointer is exercised.
        backend: Optional concrete backend class. When omitted, the built-in
            RFC 6901 backend is used.

    Returns:
        A validated `JSONPointer` instance.

    Raises:
        InvalidJSONPointer: If the pointer string, backend, or generic
            parameters are invalid.

    Notes:
        `type_param` technically places the covariant `T` parameter in an
        input position, which would normally be an unsound public API
        shape. That tradeoff is intentional here because `parse()` is only
        a convenience constructor around Pydantic validation. Normal
        construction happens through Pydantic on an already-specialized
        `JSONPointer[...]` type, so callers are not meant to treat
        `parse()` as the primary semantic surface for consuming `T`.
    """
    resolved_type_param = (
        JSONValue if type_param is _Nothing else cast(TypeForm[Any], type_param)
    )

    pointer_args: tuple[TypeForm[Any], ...]
    if backend is None:
        pointer_args = (resolved_type_param,)
    else:
        pointer_args = (resolved_type_param, backend)
    validated_type, validated_backend = cls._parse_pointer_type_args(*pointer_args)

    if backend is None:
        adapter = _cached_adapter(
            JSONPointer[validated_type]  # type: ignore[valid-type]
        )
    else:
        adapter = _cached_adapter(
            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 returns MISSING.

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 returns `MISSING`.

    Arguments:
        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.MISSING:
            raise PatchConflictError(f"target {str(self)!r} does not exist")
        case TargetState.ROOT:
            # Choice: Removal of root returns MISSING.
            # Why: Root removal is document deletion, not replacement with JSON null.
            self._validate_target(doc)
            return cast(JSONValue, MISSING)
        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 = cast(JSONContainer[JSONValue], self.parent_ptr.resolve(doc))
            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)

JSONSelector

Bases: str, Generic[T_co, S_co]

A typed query selector with Pydantic integration.

JSONSelector[T] is the query analogue of JSONPointer[T]: it parses a selector string up front, keeps the parsed backend around, and enforces the type parameter T when matches are exercised.

Query selectors differ from pointers in one important way: they can resolve to many locations. So the convenience surface is plural:

  • getall(doc) validates and returns every matched value.
  • addall(doc, value) validates the current matches and writes to every matched location.
  • removeall(doc) validates the current matches and removes every matched location.

Mutation is implemented by resolving the selector into exact JSONPointer locations and delegating to pointer mutation rules. The selector backend's pointers() output is the source of truth for which pointer backend is being used.

At the root selector $, a missing document is handled as its own runtime state: getall() and removeall() fail, while addall() recreates the document.

Source code in jsonpatchx/selector.py
 56
 57
 58
 59
 60
 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
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
@final
class JSONSelector(str, Generic[T_co, S_co]):
    """
    A typed query selector with Pydantic integration.

    `JSONSelector[T]` is the query analogue of `JSONPointer[T]`:
    it parses a selector string up front, keeps the parsed backend around, and
    enforces the type parameter `T` when matches are exercised.

    Query selectors differ from pointers in one important way: they can resolve
    to many locations. So the convenience surface is plural:

    - `getall(doc)` validates and returns every matched value.
    - `addall(doc, value)` validates the current matches and writes to every
      matched location.
    - `removeall(doc)` validates the current matches and removes every matched
      location.

    Mutation is implemented by resolving the selector into exact
    `JSONPointer` locations and delegating to pointer mutation rules. The
    selector backend's `pointers()` output is the source of truth for which
    pointer backend is being used.

    At the root selector `$`, a missing document is handled as its own runtime
    state: `getall()` and `removeall()` fail, while `addall()` recreates the
    document.
    """

    __slots__ = ("_selector", "_type")

    _selector: S_co
    _type: TypeForm[T_co]

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

        This is exposed for advanced users who provide a custom
        `SelectorBackend` with additional APIs.
        """
        return self._selector

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

    @property
    def _adapter(self) -> TypeAdapter[T_co]:
        """Return the cached Pydantic adapter used for strict `T` validation."""
        return _cached_adapter(cast(Any, self._type))

    @classmethod
    def _validator(
        cls,
        selector: str | Self | SelectorBackend,
        *,
        type_param: TypeForm[Any],
        concrete_backend: type[SelectorBackend] | TypeVar,
    ) -> Self:
        """
        Normalize a raw selector input into a validated `JSONSelector`.

        Arguments:
            selector: Selector string, parsed `JSONSelector`, or backend
                selector instance supplied by Pydantic validation.
            type_param: Already-validated runtime type parameter `T`.
            concrete_backend: Already-validated backend parameter.

        Returns:
            A `JSONSelector` bound to the resolved backend and type parameter.

        Raises:
            InvalidJSONSelector: If an existing selector/backend instance
                cannot be rebound to the required backend.
        """
        resolved_backend = cls._resolve_runtime_backend_param(concrete_backend)
        compiled: SelectorBackend
        if isinstance(selector, JSONSelector):
            selector_str = str(selector)
            if resolved_backend is DEFAULT_SELECTOR_CLS:
                compiled = selector._selector
            elif isinstance(selector._selector, resolved_backend):
                compiled = selector._selector
            else:
                compiled = _selector_backend_instance(
                    selector_str,
                    selector_cls=resolved_backend,
                )
        elif isinstance(selector, str):
            selector_str = selector
            compiled = _selector_backend_instance(
                selector_str,
                selector_cls=resolved_backend,
            )
        elif isinstance(selector, SelectorBackend):
            if isinstance(selector, resolved_backend):
                selector_str = str(selector)
                compiled = selector
            else:
                raise InvalidJSONSelector(
                    "JSONSelector backend mismatch: "
                    f"required backend is {resolved_backend.__name__} but field uses "
                    f"{selector.__class__.__name__}"
                )
        else:  # pragma: no cover
            assert_never(selector)

        obj: Self = str.__new__(cls, selector_str)
        obj._type = selector._type if isinstance(selector, JSONSelector) else type_param
        obj._selector = cast(S_co, compiled)
        return obj

    @classmethod
    def __get_pydantic_core_schema__(
        cls, source_type: type[Self], handler: GetCoreSchemaHandler
    ) -> cs.CoreSchema:
        type_param, concrete_backend = cls._parse_selector_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(JSONSelector),
                    cs.str_schema(strict=True),
                    cs.is_instance_schema(SelectorBackend),
                ]
            ),
            metadata={  # wire to the json_schema
                "type_param": type_param,
                "selector_backend_param": concrete_backend,  # NOTE: enable customization
            },
        )

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

        selector_backend: type[SelectorBackend]
        selector_backend_param = schema.get("metadata", {}).get(
            "selector_backend_param"
        )
        if isinstance(selector_backend_param, TypeVar):
            selector_backend = cls._resolve_runtime_backend_param(
                selector_backend_param
            )
        else:
            selector_backend = selector_backend_param

        if selector_backend is DEFAULT_SELECTOR_CLS:
            selector_format = "json-path"
            selector_description = "JSONPath (RFC 9535) string"
        else:
            selector_format = "x-json-selector"
            selector_description = "JSON selector string (custom backend syntax)"

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

        # enrich with json schema of type param
        type_param = schema.get("metadata", {}).get("type_param")
        json_schema["x-selector-type-schema"] = _cached_adapter(
            type_param
        ).json_schema()
        return json_schema

    @classmethod
    def _parse_selector_type_args(
        cls, *args: TypeForm[Any]
    ) -> tuple[TypeForm[Any], type[SelectorBackend] | TypeVar]:
        """
        Validate the selector generic arguments.

        Arguments:
            *args: Generic arguments from `JSONSelector[T, Backend]`.

        Returns:
            The validated type parameter and backend parameter.

        Raises:
            TypeError: If the selector is missing its required type argument.
            InvalidJSONSelector: If the type parameter or backend parameter is
                invalid.
        """
        if not args:
            raise TypeError(f"{cls} requires at least one type parameter")
        unverified_typeform = args[0]
        unverified_backend = args[1] if len(args) > 1 else DEFAULT_SELECTOR_CLS

        backend_param = cls._resolve_backend_type_param(unverified_backend)
        type_param = _validate_typeform(unverified_typeform, InvalidJSONSelector)

        return type_param, backend_param

    @staticmethod
    def _resolve_backend_type_param(
        backend_param: object,
    ) -> type[SelectorBackend] | TypeVar:
        """
        Validate the backend generic argument before runtime resolution.

        Arguments:
            backend_param: Raw second generic argument from
                `JSONSelector[T, Backend]`.

        Returns:
            A backend class or unresolved `TypeVar`.

        Raises:
            InvalidJSONSelector: If the backend argument is neither a class nor
                a `TypeVar`.
        """
        if isinstance(backend_param, TypeVar):
            return backend_param
        if not isinstance(backend_param, type):
            raise InvalidJSONSelector(
                f"JSONSelector backend parameter {backend_param!r} must be a class or TypeVar"
            )
        return cast(type[SelectorBackend], backend_param)

    @classmethod
    def _resolve_runtime_backend_param(
        cls,
        backend_param: type[SelectorBackend] | TypeVar,
    ) -> type[SelectorBackend]:
        """
        Resolve a backend parameter to a concrete runtime backend class.

        Arguments:
            backend_param: Backend class or backend `TypeVar`.

        Returns:
            A concrete `SelectorBackend` class.

        Raises:
            InvalidJSONSelector: If an unspecialized backend `TypeVar` cannot
                be resolved to a concrete default backend.
        """
        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[SelectorBackend]:
        """
        Resolve an unspecialized backend `TypeVar` using its default.

        Arguments:
            backend_typevar: Backend `TypeVar` from the generic parameter list.

        Returns:
            A concrete `SelectorBackend` class.

        Raises:
            InvalidJSONSelector: If the `TypeVar` has no usable default
                backend.
        """
        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 InvalidJSONSelector(
            "JSONSelector 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[SelectorBackend] | None:
        """
        Coerce a potential default backend candidate into a usable class.

        Arguments:
            candidate: Runtime object drawn from a backend `TypeVar` default.

        Returns:
            A concrete `SelectorBackend` class, or `None` if the candidate is
            not usable as a runtime backend.
        """
        if isinstance(candidate, TypeVar):
            return cls._resolve_runtime_backend_typevar(candidate)
        if not isinstance(candidate, type):
            return None
        if candidate is SelectorBackend or isabstract(candidate):
            return None
        return candidate

    def _validate_target(self, target: object) -> T_co:
        """
        Validate a matched or replacement value against this selector's type.

        Arguments:
            target: Candidate value to validate strictly against `T`.

        Returns:
            The validated value, typed as `T`.

        Raises:
            PatchConflictError: If `target` does not conform to `T`.
        """
        try:
            return self._adapter.validate_python(target, strict=True)
        except ValidationError as e:
            raise PatchConflictError(
                f"expected target type {self.type_param} for selector {str(self)!r}, got: {type(target)}"
            ) from e

    def _validate_replacement(self, value: object) -> JSONValue:
        """
        Validate a replacement value for selector-backed mutation.

        Arguments:
            value: Candidate value that will be written to each matched target.

        Returns:
            A strictly validated JSON value.

        Raises:
            PatchConflictError: If `value` does not conform to the selector's
                type parameter or is not a valid `JSONValue`.
        """
        value_T = self._validate_target(value)
        try:
            return _validate_JSONValue(value_T)
        except ValidationError as e:
            raise PatchConflictError(f"value {value!r} is not a valid JSONValue") from e

    @overload
    @classmethod
    def parse(
        cls,
        selector: str | Self | SelectorBackend,
        *,
        backend: type[S_parse] | None = None,
    ) -> "JSONSelector[JSONValue, S_parse]": ...

    @overload
    @classmethod
    def parse(
        cls,
        selector: str | Self | SelectorBackend,
        *,
        type_param: TypeForm[T_parse],
        backend: type[S_parse] | None = None,
    ) -> "JSONSelector[T_parse, S_parse]": ...

    @classmethod
    def parse(
        cls,
        selector: str | Self | SelectorBackend,
        *,
        type_param: TypeForm[Any] | object = _Nothing,
        backend: type[SelectorBackend] | None = None,
    ) -> "JSONSelector[Any, SelectorBackend]":
        """
        Parse a selector string or instance using Pydantic validation.

        Arguments:
            selector: Selector string, parsed selector, or selector backend
                instance.
            type_param: Type enforced when matched values are exercised.
            backend: Optional concrete backend class. When omitted, the built-in
                JSONPath backend is used.

        Returns:
            A validated `JSONSelector` instance.

        Raises:
            InvalidJSONSelector: If the selector string, backend, or generic
                parameters are invalid.

        Notes:
            `type_param` technically places the covariant `T` parameter in an
            input position, which would normally be an unsound public API
            shape. That tradeoff is intentional here because `parse()` is only
            a convenience constructor around Pydantic validation. Normal
            construction happens through Pydantic on an already-specialized
            `JSONSelector[...]` type, so callers are not meant to treat
            `parse()` as the primary semantic surface for consuming `T`.
        """
        resolved_type_param = (
            JSONValue if type_param is _Nothing else cast(TypeForm[Any], type_param)
        )

        selector_args: tuple[TypeForm[Any], ...]
        if backend is None:
            selector_args = (resolved_type_param,)
        else:
            selector_args = (resolved_type_param, backend)
        validated_type, validated_backend = cls._parse_selector_type_args(
            *selector_args
        )

        if backend is None:
            adapter = _cached_adapter(
                JSONSelector[validated_type]  # type: ignore[valid-type]
            )
        else:
            adapter = _cached_adapter(
                JSONSelector[validated_type, validated_backend]  # type: ignore[valid-type]
            )
        return adapter.validate_python(selector)

    def is_valid_type(self, target: object) -> bool:
        """
        Return `True` if `target` conforms to this selector's type.

        Arguments:
            target: Candidate value to validate.

        Returns:
            `True` when `target` validates strictly against `T`,
            otherwise `False`.
        """
        try:
            self._adapter.validate_python(target, strict=True)
            return True
        except ValidationError:
            return False

    def _pointer_instances(self, doc: JSONValue) -> list[PointerBackend]:
        """
        Resolve this selector and return backend pointer instances.

        Arguments:
            doc: Target JSON document.

        Returns:
            Backend pointers for each resolved match.

        Raises:
            PatchConflictError: If the selector backend cannot resolve the
                selector against `doc`.
            InvalidJSONSelector: If the backend yields invalid pointer objects.
        """
        try:
            raw_pointers = list(self._selector.pointers(doc))
        except Exception as e:
            raise PatchConflictError(
                f"selector {str(self)!r} could not be resolved: {e}"
            ) from e

        pointers: list[PointerBackend] = []
        for pointer in raw_pointers:
            if not isinstance(pointer, PointerBackend):
                raise InvalidJSONSelector(
                    f"selector backend returned invalid pointer {pointer!r}"
                )
            pointers.append(pointer)
        return pointers

    def get_pointers(self, doc: JSONValue) -> list[JSONPointer[T_co, PointerBackend]]:
        """
        Resolve this selector against `doc` and return exact matched pointers.

        Arguments:
            doc: Target JSON document.

        Returns:
            Typed `JSONPointer` values for each matched location.

        Raises:
            PatchConflictError: If selector resolution fails.
            InvalidJSONSelector: If the backend yields invalid matches or
                invalid pointer objects.
        """
        return [
            JSONPointer.parse(
                pointer,
                type_param=self._type,
                backend=type(pointer),
            )
            for pointer in self._pointer_instances(doc)
        ]

    def getall(self, doc: JSONValue) -> list[T_co]:
        """
        Resolve this selector against `doc` and return all matched values.

        Arguments:
            doc: Target JSON document.

        Returns:
            A list of matched values validated against `T`. If the selector
            matches nothing, the list will be empty.

        Raises:
            PatchConflictError: If selector resolution fails or a matched
                pointer cannot be read as type `T`.
            InvalidJSONSelector: If the backend yields invalid matches or
                invalid pointer data.
        """
        return [pointer.get(doc) for pointer in self.get_pointers(doc)]

    def is_gettable(self, doc: JSONValue) -> bool:
        """
        Return `True` if `getall(doc)` would succeed.

        Arguments:
            doc: Target JSON document.

        Returns:
            `True` if selector resolution and per-match reads succeed,
            otherwise `False`.
        """
        try:
            self.getall(doc)
        except (InvalidJSONSelector, PatchConflictError):
            return False
        else:
            return True

    def addall(self, doc: JSONValue, value: object) -> JSONValue:
        """
        Apply RFC 6902-style add semantics at every matched location.

        Arguments:
            doc: Target JSON document.
            value: Replacement value written to every matched location.

        Returns:
            The updated document.

        Raises:
            PatchConflictError: If `value` is not valid for this selector, if
                selector resolution fails, or if any matched pointer cannot be
                updated.
            InvalidJSONSelector: If the backend yields invalid matches or
                invalid pointer data.
        """
        target = self._validate_replacement(value)
        for pointer in self.get_pointers(doc):
            doc = pointer.add(doc, copy.deepcopy(target))
        return doc

    def is_addable(
        self,
        doc: JSONValue,
        value: object = _Nothing,
    ) -> bool:
        """
        Return `True` if `addall()` would succeed.

        Arguments:
            doc: Target JSON document.
            value: Optional value that would be written to every matched
                location. When omitted, only the current matched targets are
                checked.

        Returns:
            `True` if the selector can be resolved and every matched pointer
            accepts the requested add semantics, otherwise `False`.
        """
        if value is _Nothing:
            try:
                return all(
                    pointer.is_addable(doc) for pointer in self.get_pointers(doc)
                )
            except (InvalidJSONSelector, PatchConflictError):
                return False

        try:
            target = self._validate_replacement(value)
            return all(
                pointer.is_addable(doc, target) for pointer in self.get_pointers(doc)
            )
        except (InvalidJSONSelector, PatchConflictError):
            return False

    def removeall(self, doc: JSONValue) -> JSONValue:
        """
        Apply RFC 6902-style remove semantics at every matched location.

        Arguments:
            doc: Target JSON document.

        Returns:
            The updated document.

        Raises:
            PatchConflictError: If selector resolution fails or any matched
                pointer cannot be removed.
            InvalidJSONSelector: If the backend yields invalid matches or
                invalid pointer data.
        """
        for pointer in self.get_pointers(doc):
            doc = pointer.remove(doc)
        return doc

    def is_removable(self, doc: JSONValue) -> bool:
        """
        Return `True` if all matched targets are removable in principle.

        Arguments:
            doc: Target JSON document.

        Returns:
            `True` if the selector resolves and the current matches are
            gettable/removable targets, otherwise `False`.

        Notes:
            This is intentionally looser than `removeall()`. Selector
            removal does not promise a stable or safety-maximizing order, so
            this predicate only checks the current matches, not whether any
            particular backend iteration order will succeed.
        """
        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})"

ptr property

The underlying selector backend instance.

This is exposed for advanced users who provide a custom SelectorBackend with additional APIs.

type_param property

The expected type parameter T used to validate matched targets.

addall(doc, value)

Apply RFC 6902-style add semantics at every matched location.

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required
value object

Replacement value written to every matched location.

required

Returns:

Type Description
JSONValue

The updated document.

Raises:

Type Description
PatchConflictError

If value is not valid for this selector, if selector resolution fails, or if any matched pointer cannot be updated.

InvalidJSONSelector

If the backend yields invalid matches or invalid pointer data.

Source code in jsonpatchx/selector.py
def addall(self, doc: JSONValue, value: object) -> JSONValue:
    """
    Apply RFC 6902-style add semantics at every matched location.

    Arguments:
        doc: Target JSON document.
        value: Replacement value written to every matched location.

    Returns:
        The updated document.

    Raises:
        PatchConflictError: If `value` is not valid for this selector, if
            selector resolution fails, or if any matched pointer cannot be
            updated.
        InvalidJSONSelector: If the backend yields invalid matches or
            invalid pointer data.
    """
    target = self._validate_replacement(value)
    for pointer in self.get_pointers(doc):
        doc = pointer.add(doc, copy.deepcopy(target))
    return doc

get_pointers(doc)

Resolve this selector against doc and return exact matched pointers.

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required

Returns:

Type Description
list[JSONPointer[T_co, PointerBackend]]

Typed JSONPointer values for each matched location.

Raises:

Type Description
PatchConflictError

If selector resolution fails.

InvalidJSONSelector

If the backend yields invalid matches or invalid pointer objects.

Source code in jsonpatchx/selector.py
def get_pointers(self, doc: JSONValue) -> list[JSONPointer[T_co, PointerBackend]]:
    """
    Resolve this selector against `doc` and return exact matched pointers.

    Arguments:
        doc: Target JSON document.

    Returns:
        Typed `JSONPointer` values for each matched location.

    Raises:
        PatchConflictError: If selector resolution fails.
        InvalidJSONSelector: If the backend yields invalid matches or
            invalid pointer objects.
    """
    return [
        JSONPointer.parse(
            pointer,
            type_param=self._type,
            backend=type(pointer),
        )
        for pointer in self._pointer_instances(doc)
    ]

getall(doc)

Resolve this selector against doc and return all matched values.

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required

Returns:

Type Description
list[T_co]

A list of matched values validated against T. If the selector

list[T_co]

matches nothing, the list will be empty.

Raises:

Type Description
PatchConflictError

If selector resolution fails or a matched pointer cannot be read as type T.

InvalidJSONSelector

If the backend yields invalid matches or invalid pointer data.

Source code in jsonpatchx/selector.py
def getall(self, doc: JSONValue) -> list[T_co]:
    """
    Resolve this selector against `doc` and return all matched values.

    Arguments:
        doc: Target JSON document.

    Returns:
        A list of matched values validated against `T`. If the selector
        matches nothing, the list will be empty.

    Raises:
        PatchConflictError: If selector resolution fails or a matched
            pointer cannot be read as type `T`.
        InvalidJSONSelector: If the backend yields invalid matches or
            invalid pointer data.
    """
    return [pointer.get(doc) for pointer in self.get_pointers(doc)]

is_addable(doc, value=_Nothing)

Return True if addall() would succeed.

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required
value object

Optional value that would be written to every matched location. When omitted, only the current matched targets are checked.

_Nothing

Returns:

Type Description
bool

True if the selector can be resolved and every matched pointer

bool

accepts the requested add semantics, otherwise False.

Source code in jsonpatchx/selector.py
def is_addable(
    self,
    doc: JSONValue,
    value: object = _Nothing,
) -> bool:
    """
    Return `True` if `addall()` would succeed.

    Arguments:
        doc: Target JSON document.
        value: Optional value that would be written to every matched
            location. When omitted, only the current matched targets are
            checked.

    Returns:
        `True` if the selector can be resolved and every matched pointer
        accepts the requested add semantics, otherwise `False`.
    """
    if value is _Nothing:
        try:
            return all(
                pointer.is_addable(doc) for pointer in self.get_pointers(doc)
            )
        except (InvalidJSONSelector, PatchConflictError):
            return False

    try:
        target = self._validate_replacement(value)
        return all(
            pointer.is_addable(doc, target) for pointer in self.get_pointers(doc)
        )
    except (InvalidJSONSelector, PatchConflictError):
        return False

is_gettable(doc)

Return True if getall(doc) would succeed.

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required

Returns:

Type Description
bool

True if selector resolution and per-match reads succeed,

bool

otherwise False.

Source code in jsonpatchx/selector.py
def is_gettable(self, doc: JSONValue) -> bool:
    """
    Return `True` if `getall(doc)` would succeed.

    Arguments:
        doc: Target JSON document.

    Returns:
        `True` if selector resolution and per-match reads succeed,
        otherwise `False`.
    """
    try:
        self.getall(doc)
    except (InvalidJSONSelector, PatchConflictError):
        return False
    else:
        return True

is_removable(doc)

Return True if all matched targets are removable in principle.

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required

Returns:

Type Description
bool

True if the selector resolves and the current matches are

bool

gettable/removable targets, otherwise False.

Notes

This is intentionally looser than removeall(). Selector removal does not promise a stable or safety-maximizing order, so this predicate only checks the current matches, not whether any particular backend iteration order will succeed.

Source code in jsonpatchx/selector.py
def is_removable(self, doc: JSONValue) -> bool:
    """
    Return `True` if all matched targets are removable in principle.

    Arguments:
        doc: Target JSON document.

    Returns:
        `True` if the selector resolves and the current matches are
        gettable/removable targets, otherwise `False`.

    Notes:
        This is intentionally looser than `removeall()`. Selector
        removal does not promise a stable or safety-maximizing order, so
        this predicate only checks the current matches, not whether any
        particular backend iteration order will succeed.
    """
    return self.is_gettable(doc)

is_valid_type(target)

Return True if target conforms to this selector's type.

Parameters:

Name Type Description Default
target object

Candidate value to validate.

required

Returns:

Type Description
bool

True when target validates strictly against T,

bool

otherwise False.

Source code in jsonpatchx/selector.py
def is_valid_type(self, target: object) -> bool:
    """
    Return `True` if `target` conforms to this selector's type.

    Arguments:
        target: Candidate value to validate.

    Returns:
        `True` when `target` validates strictly against `T`,
        otherwise `False`.
    """
    try:
        self._adapter.validate_python(target, strict=True)
        return True
    except ValidationError:
        return False

parse(selector, *, type_param=_Nothing, backend=None) classmethod

parse(
    selector: str | Self | SelectorBackend,
    *,
    backend: type[S_parse] | None = None,
) -> "JSONSelector[JSONValue, S_parse]"
parse(
    selector: str | Self | SelectorBackend,
    *,
    type_param: TypeForm[T_parse],
    backend: type[S_parse] | None = None,
) -> "JSONSelector[T_parse, S_parse]"

Parse a selector string or instance using Pydantic validation.

Parameters:

Name Type Description Default
selector str | Self | SelectorBackend

Selector string, parsed selector, or selector backend instance.

required
type_param TypeForm[Any] | object

Type enforced when matched values are exercised.

_Nothing
backend type[SelectorBackend] | None

Optional concrete backend class. When omitted, the built-in JSONPath backend is used.

None

Returns:

Type Description
'JSONSelector[Any, SelectorBackend]'

A validated JSONSelector instance.

Raises:

Type Description
InvalidJSONSelector

If the selector string, backend, or generic parameters are invalid.

Notes

type_param technically places the covariant T parameter in an input position, which would normally be an unsound public API shape. That tradeoff is intentional here because parse() is only a convenience constructor around Pydantic validation. Normal construction happens through Pydantic on an already-specialized JSONSelector[...] type, so callers are not meant to treat parse() as the primary semantic surface for consuming T.

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

    Arguments:
        selector: Selector string, parsed selector, or selector backend
            instance.
        type_param: Type enforced when matched values are exercised.
        backend: Optional concrete backend class. When omitted, the built-in
            JSONPath backend is used.

    Returns:
        A validated `JSONSelector` instance.

    Raises:
        InvalidJSONSelector: If the selector string, backend, or generic
            parameters are invalid.

    Notes:
        `type_param` technically places the covariant `T` parameter in an
        input position, which would normally be an unsound public API
        shape. That tradeoff is intentional here because `parse()` is only
        a convenience constructor around Pydantic validation. Normal
        construction happens through Pydantic on an already-specialized
        `JSONSelector[...]` type, so callers are not meant to treat
        `parse()` as the primary semantic surface for consuming `T`.
    """
    resolved_type_param = (
        JSONValue if type_param is _Nothing else cast(TypeForm[Any], type_param)
    )

    selector_args: tuple[TypeForm[Any], ...]
    if backend is None:
        selector_args = (resolved_type_param,)
    else:
        selector_args = (resolved_type_param, backend)
    validated_type, validated_backend = cls._parse_selector_type_args(
        *selector_args
    )

    if backend is None:
        adapter = _cached_adapter(
            JSONSelector[validated_type]  # type: ignore[valid-type]
        )
    else:
        adapter = _cached_adapter(
            JSONSelector[validated_type, validated_backend]  # type: ignore[valid-type]
        )
    return adapter.validate_python(selector)

removeall(doc)

Apply RFC 6902-style remove semantics at every matched location.

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required

Returns:

Type Description
JSONValue

The updated document.

Raises:

Type Description
PatchConflictError

If selector resolution fails or any matched pointer cannot be removed.

InvalidJSONSelector

If the backend yields invalid matches or invalid pointer data.

Source code in jsonpatchx/selector.py
def removeall(self, doc: JSONValue) -> JSONValue:
    """
    Apply RFC 6902-style remove semantics at every matched location.

    Arguments:
        doc: Target JSON document.

    Returns:
        The updated document.

    Raises:
        PatchConflictError: If selector resolution fails or any matched
            pointer cannot be removed.
        InvalidJSONSelector: If the backend yields invalid matches or
            invalid pointer data.
    """
    for pointer in self.get_pointers(doc):
        doc = pointer.remove(doc)
    return doc

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.

        Arguments:
            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.

        Arguments:
            text: JSON-formatted string, bytes, or bytearray containing 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.

        Returns:
            A parsed `JsonPatch` instance.

        Notes:
            JSON decoding follows last-write-wins, just like `json.loads()`.
            If you need strict duplicate-key rejection, decode JSON yourself
            and pass the resulting Python value to `JsonPatch(...)`.
        """
        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.

        Arguments:
            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.

        Returns:
            patched: The patched JSON document.

        Raises:
            PatchValidationError: If `doc` is not a valid JSON document.
            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.

    Arguments:
        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

Returns:

Name Type Description
patched JSONValue

The patched JSON document.

Raises:

Type Description
PatchValidationError

If doc is not a valid JSON document.

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.

    Arguments:
        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.

    Returns:
        patched: The patched JSON document.

    Raises:
        PatchValidationError: If `doc` is not a valid JSON document.
        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.

Parameters:

Name Type Description Default
text str | bytes | bytearray

JSON-formatted string, bytes, or bytearray containing 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

Returns:

Type Description
Self

A parsed JsonPatch instance.

Notes

JSON decoding follows last-write-wins, just like json.loads(). If you need strict duplicate-key rejection, decode JSON yourself and pass the resulting Python value to JsonPatch(...).

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.

    Arguments:
        text: JSON-formatted string, bytes, or bytearray containing 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.

    Returns:
        A parsed `JsonPatch` instance.

    Notes:
        JSON decoding follows last-write-wins, just like `json.loads()`.
        If you need strict duplicate-key rejection, decode JSON yourself
        and pass the resulting Python value to `JsonPatch(...)`.
    """
    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] produces a patch model using StandardRegistry. JsonPatchFor[Target, Registry] produces a patch model using an explicit registry. 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]` produces a patch model using `StandardRegistry`.
    `JsonPatchFor[Target, Registry]` produces a patch model using an explicit
    registry. `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.

            Arguments:
                target: The target BaseModel instance.

            Returns:
                The patched BaseModel instance.

            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.

            Arguments:
                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.

            Returns:
                The patched JSON document.

            Raises:
                PatchValidationError: If the input is not a valid `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.

            Returns:
                The patched model or JSON document, depending on specialization.

            Raises:
                TypeError: Model variant expects a Pydantic BaseModel instance.
                PatchValidationError: If the input is not a valid `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):
            params = (params, StandardRegistry)

        if len(params) != 2:
            raise TypeError(
                "JsonPatchFor expects JsonPatchFor[Target] or 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.

Returns:

Type Description
Any

The patched model or JSON document, depending on specialization.

Raises:

Type Description
TypeError

Model variant expects a Pydantic BaseModel instance.

PatchValidationError

If the input is not a valid 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.

    Returns:
        The patched model or JSON document, depending on specialization.

    Raises:
        TypeError: Model variant expects a Pydantic BaseModel instance.
        PatchValidationError: If the input is not a valid `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

RFC 6902 move operation.

Source code in jsonpatchx/builtins.py
class MoveOp(OperationSchema):
    """RFC 6902 move operation."""

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

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

    @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(path=self.from_).apply(doc)
        return AddOp(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.

Examples:

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`.

    Examples:
        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.

        Arguments:
            doc: Target JSON document.

        Returns:
            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)

        # 'op' is always required, even if it has a runtime default.
        required = set(json_schema.get("required", []))
        json_schema["required"] = sorted(required | {"op"})

        # 'op' is never pre-filled, even if it has a runtime default.
        properties = json_schema.get("properties", {})
        op_schema = cast(dict[str, object], properties.get("op"))
        op_schema.pop("default", None)

        # 'op' gets a consistent description unless specified.
        op_schema.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.

Parameters:

Name Type Description Default
doc JSONValue

Target JSON document.

required

Returns:

Type Description
JSONValue

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.

    Arguments:
        doc: Target JSON document.

    Returns:
        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)

Examples:

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)

    Examples:
        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

RFC 6902 remove operation. Removal of the root returns MISSING.

Source code in jsonpatchx/builtins.py
class RemoveOp(OperationSchema):
    """RFC 6902 remove operation. Removal of the root returns MISSING."""

    model_config = ConfigDict(
        title="Remove operation",
        json_schema_extra={
            "description": "RFC 6902 remove operation. Removal of the root returns MISSING."
        },
    )

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

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

ReplaceOp

Bases: OperationSchema

RFC 6902 replace operation.

Source code in jsonpatchx/builtins.py
class ReplaceOp(OperationSchema):
    """RFC 6902 replace operation."""

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

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

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

TestOp

Bases: OperationSchema

RFC 6902 test operation.

Source code in jsonpatchx/builtins.py
class TestOp(OperationSchema):
    """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[JSONValue]
    value: JSONValue

    @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.

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.

Raises:

Type Description
PatchValidationError

If doc is not a valid JSON document.

PatchError

Any patch-domain error raised by patch parsing or application.

Notes

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

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`.

    Arguments:
        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.

    Raises:
        PatchValidationError: If `doc` is not a valid JSON document.
        PatchError: Any patch-domain error raised by patch parsing or
            application.

    Notes:
        This is a small convenience wrapper around `JsonPatch` using the
        standard registry.
    """
    return JsonPatch(patch, registry=registry).apply(doc, inplace=inplace)