get_document
Retrieve and validate the full content and structure of a Markdown file to ensure compliance with specified validation levels: STRICT, NORMAL, or PERMISSIVE.
Instructions
Get the complete document content and structure.
Args:
document_path: Path to the Markdown file
validation_level: Validation strictness - "STRICT", "NORMAL", or "PERMISSIVE"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
document_path | Yes | ||
validation_level | No | NORMAL |
Input Schema (JSON Schema)
{
"properties": {
"document_path": {
"title": "Document Path",
"type": "string"
},
"validation_level": {
"default": "NORMAL",
"title": "Validation Level",
"type": "string"
}
},
"required": [
"document_path"
],
"title": "get_documentArguments",
"type": "object"
}