validate_document_schema
Validate document structure against a predefined knowledge base schema, ensuring compliance and providing actionable formatting guidance for accurate data integration.
Instructions
Validate document structure against knowledge base schema and provide formatting guidance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
document | Yes | Document object to validate against knowledge base schema format |
Input Schema (JSON Schema)
{
"properties": {
"document": {
"additionalProperties": true,
"description": "Document object to validate against knowledge base schema format",
"title": "Document",
"type": "object"
}
},
"required": [
"document"
],
"type": "object"
}