pdf_fill_form
Fill PDF form fields with specified values to complete digital forms. This tool populates text fields, checkboxes, and other form elements in PDF documents using provided data.
Instructions
Fill form fields in a PDF with values.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pdf_path | Yes | ||
| field_values | Yes |
Input Schema (JSON Schema)
{
"properties": {
"field_values": {
"additionalProperties": true,
"title": "Field Values",
"type": "object"
},
"pdf_path": {
"title": "Pdf Path",
"type": "string"
}
},
"required": [
"pdf_path",
"field_values"
],
"type": "object"
}