validate_schema
Verify CSV data compliance with a predefined schema using a session-specific validation process. Ensures data integrity and structural accuracy within CSV files.
Instructions
Validate data against a schema definition.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"schema": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"title": "Schema",
"type": "object"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"schema"
],
"type": "object"
}