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
CopyOp
¶
Bases: OperationSchema
RFC 6902 copy operation.
Source code in jsonpatchx/builtins.py
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
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
__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
__str__()
¶
Return the canonical RFC 6901 string form.
Returns:
| Type | Description |
|---|---|
str
|
The canonical RFC 6901 string representation. |
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
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
__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
__repr__()
¶
Return a debugging representation of this backend instance.
Returns:
| Type | Description |
|---|---|
str
|
A representation showing the backend name and source selector. |
__str__()
¶
Return the selector's original source string.
Returns:
| Type | Description |
|---|---|
str
|
The original selector source string. |
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
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
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
InvalidOperationDefinition
¶
Bases: PatchError
An OperationSchema definition is invalid (developer error).
Examples:
opis missing or not declared asLiteral[...].opis declared as a ClassVar, so it is not a model field.
Source code in jsonpatchx/exceptions.py
InvalidOperationRegistry
¶
Bases: PatchError
An OperationRegistry has incompatible OperationSchemas (developer error).
Examples:
- Duplicate
opidentifiers 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
Tused 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 againstT.add(doc, value)optionally validates the written value againstT(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 typeT.
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/removeare normalized intoPatchConflictError.
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 | |
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 |
required |
Returns:
| Type | Description |
|---|---|
JSONValue
|
The updated document. |
Raises:
| Type | Description |
|---|---|
PatchConflictError
|
If the target does not exist, if the target is not type |
Source code in jsonpatchx/pointer.py
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 |
Raises:
| Type | Description |
|---|---|
PatchConflictError
|
If the target does not exist, or it is not type |
Source code in jsonpatchx/pointer.py
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 |
_Nothing
|
Returns:
| Type | Description |
|---|---|
bool
|
|
Source code in jsonpatchx/pointer.py
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
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
|
|
bool
|
|
Source code in jsonpatchx/pointer.py
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
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
|
|
Source code in jsonpatchx/pointer.py
is_root(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
|
|
bool
|
otherwise |
Source code in jsonpatchx/pointer.py
parse(path, *, type_param=_Nothing, backend=None)
classmethod
¶
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 |
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
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 |
Source code in jsonpatchx/pointer.py
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 | |
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 |
InvalidJSONSelector
|
If the backend yields invalid matches or invalid pointer data. |
Source code in jsonpatchx/selector.py
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 |
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
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 |
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 |
InvalidJSONSelector
|
If the backend yields invalid matches or invalid pointer data. |
Source code in jsonpatchx/selector.py
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
|
|
bool
|
accepts the requested add semantics, otherwise |
Source code in jsonpatchx/selector.py
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
|
|
bool
|
otherwise |
Source code in jsonpatchx/selector.py
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
|
|
bool
|
gettable/removable targets, otherwise |
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
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
|
|
bool
|
otherwise |
Source code in jsonpatchx/selector.py
parse(selector, *, type_param=_Nothing, backend=None)
classmethod
¶
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 |
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
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
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
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
OperationSchemamodels, - stores the resulting typed
OperationSchemainstances, - applies them to JSON documents via the shared patch engine.
Notes
applydelegates to the core engine_apply_opsand follows the same copy and mutation semantics.inplace=False(default): the engine deep-copiesdocfirst; operations may mutate the copy.inplace=True: operations run against the provideddocobject (no rollback on failure). This is a copy policy, not an object-identity guarantee for the returned value.JsonPatchis immutable with respect to its operation list after construction, but the documents you apply it to may be mutated depending oninplace.
Source code in jsonpatchx/standard.py
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 | |
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 ( |
None
|
Source code in jsonpatchx/standard.py
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
|
Returns:
| Name | Type | Description |
|---|---|---|
patched |
JSONValue
|
The patched JSON document. |
Raises:
| Type | Description |
|---|---|
PatchValidationError
|
If |
PatchError
|
Any patch-domain error raised by operations, including conflicts.
|
Source code in jsonpatchx/standard.py
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 ( |
None
|
Returns:
| Type | Description |
|---|---|
Self
|
A parsed |
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
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
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 | |
apply(*args, **kwargs)
¶
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 |
PatchValidationError
|
Patched data fails validation for the target model. |
PatchError
|
Any patch-domain error raised by operations, including conflicts.
|
Source code in jsonpatchx/pydantic.py
MoveOp
¶
Bases: OperationSchema
RFC 6902 move operation.
Source code in jsonpatchx/builtins.py
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
opmust be a normal annotated attribute, not aClassVar.ClassVarvalues 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
opis not declared correctly, the class raisesInvalidOperationDefinitionduring import.
Source code in jsonpatchx/schema.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 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 | |
__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
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
docobject in-place and should return the updated document (often the same object). - Raise
PatchErrorsubclasses 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
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
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
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.
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
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
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
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
RemoveOp
¶
Bases: OperationSchema
RFC 6902 remove operation. Removal of the root returns MISSING.
Source code in jsonpatchx/builtins.py
ReplaceOp
¶
Bases: OperationSchema
RFC 6902 replace operation.
Source code in jsonpatchx/builtins.py
TestOp
¶
Bases: OperationSchema
RFC 6902 test operation.
Source code in jsonpatchx/builtins.py
TestOpFailed
¶
Bases: PatchConflictError
A test operation failed (RFC 6902).
Typical HTTP mapping
409 Conflict (state mismatch).
Source code in jsonpatchx/exceptions.py
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 ( |
None
|
inplace
|
bool
|
Copy policy. |
False
|
Returns:
| Type | Description |
|---|---|
JSONValue
|
The patched document. |
Raises:
| Type | Description |
|---|---|
PatchValidationError
|
If |
PatchError
|
Any patch-domain error raised by patch parsing or application. |
Notes
This is a small convenience wrapper around JsonPatch using the
standard registry.