pdf_add_annotation
Add annotations to PDF documents by specifying page location, type, and content for marking up files with notes, highlights, or comments.
Instructions
Add an annotation to a PDF.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| pdf_path | Yes | ||
| page_number | Yes | ||
| annotation_type | Yes | ||
| x | Yes | ||
| y | Yes | ||
| width | Yes | ||
| height | Yes | ||
| content | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "annotation_type": {
      "title": "Annotation Type",
      "type": "string"
    },
    "content": {
      "title": "Content",
      "type": "string"
    },
    "height": {
      "title": "Height",
      "type": "number"
    },
    "page_number": {
      "title": "Page Number",
      "type": "integer"
    },
    "pdf_path": {
      "title": "Pdf Path",
      "type": "string"
    },
    "width": {
      "title": "Width",
      "type": "number"
    },
    "x": {
      "title": "X",
      "type": "number"
    },
    "y": {
      "title": "Y",
      "type": "number"
    }
  },
  "required": [
    "pdf_path",
    "page_number",
    "annotation_type",
    "x",
    "y",
    "width",
    "height",
    "content"
  ],
  "type": "object"
}