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

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

# DocumentTemplateRequestOperation

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Document Generator API
  version: "1.0"
components:
  schemas:
    OperationType:
      enum:
        - Add
        - Remove
        - Replace
        - Move
        - Copy
        - Test
        - Invalid
      type: string
    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
```
