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

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

# DocumentTemplateRequestJsonPatchDocument

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Document Generator API
  version: "1.0"
components:
  schemas:
    DocumentTemplateRequestOperation:
      type: object
      properties:
        operationType:
          $ref: "#/components/schemas/OperationType"
        path:
          type: string
          nullable: true
        op:
          type: string
          nullable: true
        from:
          type: string
          nullable: true
        value:
          nullable: true
      additionalProperties: false
    IContractResolver:
      type: object
      additionalProperties: false
    OperationType:
      enum:
        - Add
        - Remove
        - Replace
        - Move
        - Copy
        - Test
        - Invalid
      type: string
    DocumentTemplateRequestJsonPatchDocument:
      type: object
      properties:
        operations:
          type: array
          items:
            $ref: "#/components/schemas/DocumentTemplateRequestOperation"
          nullable: true
          readOnly: true
        contractResolver:
          $ref: "#/components/schemas/IContractResolver"
      additionalProperties: false
```
