pdf_set_metadata
Set custom metadata for PDF documents including title, author, subject, and keywords to organize and identify files efficiently.
Instructions
Set metadata for a PDF.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pdf_path | Yes | ||
| metadata | Yes |
Input Schema (JSON Schema)
{
"properties": {
"metadata": {
"additionalProperties": {
"type": "string"
},
"title": "Metadata",
"type": "object"
},
"pdf_path": {
"title": "Pdf Path",
"type": "string"
}
},
"required": [
"pdf_path",
"metadata"
],
"type": "object"
}