| { | |
| "name": "get_document", | |
| "description": "Retrieve a Linear document by ID or slug", | |
| "inputSchema": { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "type": "object", | |
| "properties": { | |
| "id": { | |
| "type": "string", | |
| "description": "Document ID or slug" | |
| } | |
| }, | |
| "required": [ | |
| "id" | |
| ], | |
| "additionalProperties": false | |
| } | |
| } |