JSON Schema Validator
POST keyronne.com/api/validate-json
Why an agent can trust this route.
Sonar evidence is advisory. Paid delivery is shown as verified only when paid probes are available; otherwise route estimates use the unpaid handshake as a clearly labeled proxy.
Observed outcomes
Validate a JSON value against a JSON Schema and coerce common LLM-output mistakes (numbers as strings, stringified booleans, scalars where arrays are expected, missing defaults, extra properties). Returns the coerced value plus a structured error report. Built for cleaning up LLM tool-call arguments and structured outputs. POST a JSON body like: {"schema":{"type":"object","required":["name","age"],"properties":{"name":{"type":"string"},"age":{"type":"integer"}}},"data":{"name":"Ada","age":"36"}}
Resource: keyronne.com/api/validate-json
Network: eip155:8453 · Asset: 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 · Pay to: 0xB86F95EF5FA904318Ea9Df3b59AdCe099b478fC4
Payment methods: — · Last validation: —
{
"input": {
"body": {
"data": {
"age": "36",
"name": "Ada"
},
"schema": {
"type": "object",
"required": [
"name",
"age"
],
"properties": {
"age": {
"type": "integer"
},
"name": {
"type": "string"
}
}
}
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"valid": true,
"value": {
"age": 36,
"name": "Ada"
},
"errors": [],
"warnings": [
{
"path": "$.age",
"message": "coerced string \"36\" to integer"
}
]
}
},
"paymentRequirements": [
{
"raw": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xB86F95EF5FA904318Ea9Df3b59AdCe099b478fC4",
"amount": "1000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 60
},
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"payTo": "0xB86F95EF5FA904318Ea9Df3b59AdCe099b478fC4",
"scheme": "exact",
"network": "eip155:8453",
"amountAtomic": "1000"
}
]
}Source catalog records are retained separately from live endpoint observations. Sonar score, uptime, and latency are advisory metrics. CDP indexing is not inferred from validation.