Public API¶
This is the top-level import surface used throughout the User Guide.
Use this page when you want the shortest path from an example import to the actual exported symbols.
Typed JSON Patch (RFC 6902) utilities powered by Pydantic.
STANDARD_OPS = _STANDARD_REGISTRY_SPEC.ordered_ops
module-attribute
¶
Standard RFC 6902 patch operations.
StandardRegistry = AddOp | CopyOp | MoveOp | RemoveOp | ReplaceOp | TestOp
¶
Standard RFC 6902 registry declaration typeform.
AddOp
¶
Bases: OperationSchema, Generic[T]
RFC 6902 add operation.
Source code in jsonpatchx/builtins.py
CopyOp
¶
Bases: OperationSchema, Generic[T]
RFC 6902 copy operation.
Source code in jsonpatchx/builtins.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
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.
Source code in jsonpatchx/exceptions.py
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.
Example: if a custom op carries a JSONPointer[JSONBoolean], composing that op internally
using AddOp should keep the boolean-specific enforcement at runtime.
Backend semantics (advanced)¶
- Default backend:
jsonpointer.JsonPointer. - Custom backend: bound directly via
JSONPointer[T, Backend]. - Invalid pointer strings raise
InvalidJSONPointer. - Backend traversal failures in
get/add/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 sets it to JSONNull (None)
so that all standard operations are closed over JSONValue. If you want to forbid root removal,
it's easy to make a custom op!
- Whether these mutations affect the original caller-owned document is determined by the patch
engine (see _apply_ops(..., inplace=...)), which may deep-copy the input document.
JSONPointer values are intended to be created by Pydantic validation. Direct instantiation
is not permitted (except when running as __main__ for debugging).
Source code in jsonpatchx/pointer.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 | |
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, else False.
If value is provided, it must conform to the pointer's type parameter T.
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 would succeed for this document, else False.
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)
¶
is_root(doc)
¶
is_valid_type(target)
¶
Validate whether a target conforms to this pointer's type.
parse(path, *, type_param=JSONValue, backend=None)
classmethod
¶
Parse a pointer string or instance using Pydantic validation.
This is a convenience wrapper around TypeAdapter(JSONPointer[...]).
Source code in jsonpatchx/pointer.py
remove(doc)
¶
RFC 6902 remove (type-gated). Removal of the root sets it to null.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
doc
|
JSONValue
|
Target JSON document. |
required |
Returns:
| Type | Description |
|---|---|
JSONValue
|
The updated document. |
Raises:
| Type | Description |
|---|---|
PatchConflictError
|
If the target does not exist, or it is not type |
Source code in jsonpatchx/pointer.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 | |
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
|
Return
patched: The patched JSON document.
Raises:
| Type | Description |
|---|---|
ValidationError
|
If the input is not a mutable |
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.
JSON decoding follows last-write-wins just like json.loads()
If you want strict duplicate-key rejection, parse JSON yourself and pass the result to JsonPatch().
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str | bytes | bytearray
|
JSON-formatted string/bytes/bytearray for a JSON Patch document. |
required |
registry
|
TypeForm[OperationSchema] | None
|
A union of concrete OperationSchemas used for parsing and
validation ( |
None
|
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, Registry] produces a patch model.
Target is either a Pydantic model or Literal["SchemaName"] for JSON documents.
Registry is a union of concrete OperationSchemas (OpA | OpB | ...).
Source code in jsonpatchx/pydantic.py
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 | |
apply(*args, **kwargs)
¶
Apply a JSON Patch document.
Raises:
| Type | Description |
|---|---|
TypeError
|
Model variant expects a Pydantic BaseModel instance. |
ValidationError
|
If the input is not a mutable |
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, Generic[T]
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.
Example
Required op field:
class ReplaceOp(OperationSchema):
op: Literal["replace"] = "replace"
path: JSONPointer[JSONValue]
value: JSONValue
Multiple identifiers (aliases):
class CreateOp(OperationSchema):
op: Literal["create", "add"] = "create"
Notes
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
27 28 29 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 | |
__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.
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)
Example
A ZeroDivisionError raised inside a custom op implementation that fails to catch it.
Typical HTTP mapping
500 Internal Server Error (unexpected failure).
Source code in jsonpatchx/exceptions.py
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, Generic[T]
RFC 6902 remove operation. Removal of the root sets it to null.
Source code in jsonpatchx/builtins.py
ReplaceOp
¶
Bases: OperationSchema, Generic[T]
RFC 6902 replace operation.
Source code in jsonpatchx/builtins.py
TestOp
¶
Bases: OperationSchema, Generic[T]
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.
This is a small convenience wrapper around JsonPatch using the standard registry.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
doc
|
JSONValue
|
Target JSON document. |
required |
patch
|
Sequence[Mapping[str, JSONValue]]
|
Patch document as a sequence of operation mappings. |
required |
registry
|
TypeForm[OperationSchema] | None
|
A union of concrete OperationSchemas used for parsing and
validation ( |
None
|
inplace
|
bool
|
Copy policy. |
False
|
Returns:
| Type | Description |
|---|---|
JSONValue
|
The patched document. |