docx-editMeta
Modify DOCX metadata such as title, subject, creator, and keywords programmatically by ID. Streamline document updates and management using structured JSON input for precise changes.
Instructions
Patch metadata of a docx by id.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
patch | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"type": "string"
},
"patch": {
"additionalProperties": false,
"properties": {
"category": {
"type": "string"
},
"company": {
"type": "string"
},
"createdAt": {
"format": "date-time",
"type": "string"
},
"creator": {
"type": "string"
},
"description": {
"type": "string"
},
"keywords": {
"type": "string"
},
"lastModifiedBy": {
"type": "string"
},
"manager": {
"type": "string"
},
"modifiedAt": {
"format": "date-time",
"type": "string"
},
"revision": {
"type": "string"
},
"subject": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"id",
"patch"
],
"type": "object"
}