CSV Pipeline Integrity
CSV Pipeline Integrity: deterministic ETL/feed regression decision combining profiles, schema drift, data-quality deltas, severity, evidence, and one PASS/WARN/FAIL action.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
332 msmedian answer time
$0.05listed price per call
$0.05price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://foundry-csv-pipeline-integrity-mainnet.inference-chip-index.workers.dev/v1/csv/integrity
| Category | Everything else |
|---|---|
| Provider host | foundry-csv-pipeline-integrity-mainnet.inference-chip-index.workers.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.05 | 332 ms |
Example input (from the provider)
{
"body": {
"baselineCsv": "id,name,amount\n1,Ada,10\n2,Lin,20\n",
"currentCsv": "id,name,amount\n1,Ada,10\n2,Lin,unknown\n",
"schema": {
"allowAdditionalColumns": false,
"columns": [
{
"name": "id",
"nullable": false,
"required": true,
"type": "integer"
},
{
"name": "name",
"nullable": false,
"required": true,
"type": "string"
},
{
"name": "amount",
"nullable": false,
"required": true,
"type": "number"
}
],
"requireOrder": true
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"baselineCsv": {
"description": "Prior known-good CSV including its header row.",
"maxLength": 100000,
"minLength": 1,
"type": "string"
},
"currentCsv": {
"description": "Current CSV to evaluate against the baseline.",
"maxLength": 100000,
"minLength": 1,
"type": "string"
},
"schema": {
"additionalProperties": false,
"properties": {
"allowAdditionalColumns": {
"default": true,
"type": "boolean"
},
"columns": {
"items": {
"additionalProperties": false,
"properties": {
"name": {
"maxLength": 128,
"minLength": 1,
"type": "string"
},
"nullable": {
"default": true,
"type": "boolean"
},
"required": {
"default": true,
"type": "boolean"
},
"type": {
"enum": [
"boolean",
"integer",
"number",
"date",
"datetime",
"string"
]
}
},
"required": [
"name",
"type"
],
"type": "object"
},
"maxItems": 100,
"minItems": 1,
"type": "array"
},
"requireOrder": {
"default": false,
"type": "boolean"
}
},
"required": [
"columns"
],
"type": "object"
}
},
"required": [
"baselineCsv",
"currentCsv"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"analysisCompleteness": {
"enum": [
"FULL",
"PARTIAL"
]
},
"baselineProfile": {
"type": "object"
},
"breakingChanges": {
"items": {
"type": "object"
},
"type": "array"
},
"comparison": {
"type": "object"
},
"currentProfile": {
"type": "object"
},
"findings": {
"items": {
"type": "object"
},
"type": "array"
},
"overallResult": {
"enum": [
"PASS",
"WARN",
"FAIL"
]
},
"processingLatencyMs": {
"minimum": 0,
"type": "number"
},
"reasons": {
"items": {
"type": "string"
},
"type": "array"
},
"recommendation": {
"enum": [
"CONTINUE",
"REVIEW_BEFORE_CONTINUE",
"BLOCK_PIPELINE"
]
},
"schemaConformance": {
"type": "object"
},
"service": {
"const": "csv_pipeline_integrity"
},
"version": {
"type": "string"
}
},
"required": [
"service",
"version",
"overallResult",
"recommendation",
"reasons",
"analysisCompleteness",
"baselineProfile",
"currentProfile",
"comparison",
"schemaConformance",
"breakingChanges",
"findings",
"processingLatencyMs"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}