validate_data
Check CSV file data integrity and format compliance to identify validation issues and warnings for data quality assurance.
Instructions
Validate CSV data integrity and format.
Args:
filename: Name of the CSV file
Returns:
Dictionary with validation results, issues, and warnings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}