---
title: "JsonPatchDocument"
url: "https://devportal.jilson.dev/apis/document-generator-pkce-flow-1/versions/c7bf5731-4982-4310-bcfe-512415c7d543/schemas/JsonPatchDocument"
---

> Full API specification: https://devportal.jilson.dev/apis/document-generator-pkce-flow-1/versions/c7bf5731-4982-4310-bcfe-512415c7d543.md

# JsonPatchDocument

Array of operations to perform

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Document Generator API
  version: "1.0"
components:
  schemas:
    Operation:
      type: object
      properties:
        op:
          type: string
        value:
          type: string
          nullable: true
        path:
          type: string
    JsonPatchDocument:
      type: array
      items:
        $ref: "#/components/schemas/Operation"
      description: Array of operations to perform
```
