get_document_updates
Track updates to IIA documents by category and date to stay informed on standards, guidance, topics, and glossary changes.
Instructions
Check for recent updates to IIA documents
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Filter by category | |
| since | No | ISO date string to check for updates since |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Filter by category",
"enum": [
"standards",
"guidance",
"topics",
"glossary"
],
"type": "string"
},
"since": {
"description": "ISO date string to check for updates since",
"type": "string"
}
},
"type": "object"
}