{"partialResults":false,"resources":[{"accepts":[{"amount":"1000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"name":"USD Coin","version":"2"},"maxTimeoutSeconds":300,"network":"eip155:8453","payTo":"0x0550779CFBc832657A8BB46BAC9f359A5ad038B8","scheme":"exact"}],"description":"JSON Schema Validator API. Validate JSON data against a JSON Schema and receive structured valid/invalid results with detailed validation errors. Supports common JSON Schema features including type, required, properties, additionalProperties, enum, const, items, string lengths, patterns, and numeric bounds. Useful for agents, developers, API testing, structured output validation, schema checks, and automation workflows. Paid per call via x402.","extensions":{"bazaar":{"info":{"input":{"body":{"data":{"name":"Niki"},"schema":{"properties":{"name":{"type":"string"}},"required":["name"],"type":"object"}},"bodyType":"json","method":"POST","type":"http"},"output":{"example":{"errors":[],"ok":true,"service":"json_schema_validator","timestamp":"2026-06-23T00:00:00+00:00","valid":true},"type":"json"}},"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","properties":{"input":{"additionalProperties":false,"properties":{"body":{"additionalProperties":false,"properties":{"data":{"description":"JSON value to validate against the schema"},"schema":{"description":"JSON Schema object","type":"object"}},"required":["schema","data"],"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":true,"properties":{"errors":{"items":{},"type":"array"},"ok":{"type":"boolean"},"service":{"type":"string"},"timestamp":{"type":"string"},"valid":{"type":"boolean"}},"type":"object"},"type":{"type":"string"}},"required":["type"],"type":"object"}},"required":["input"],"type":"object"}}},"iconUrl":"https://res.cloudinary.com/bdb-prod/image/upload/c_fill,ar_1:1,w_256,h_256,f_auto,q_auto/v1782160736/bazaar-icons/bba42e908ad65da0.png","lastUpdated":"2026-08-13T00:10:43.344Z","quality":{"l30DaysTotalCalls":2,"l30DaysUniquePayers":2,"lastCalledAt":"2026-08-13T00:10:42.636Z"},"resource":"https://tools.ipintel.ai/json-schema-validator","serviceName":"JSON Schema Validator API","tags":["json-schema","json-validator","schema-validation","structured-output","developer-tools"],"type":"http","x402Version":2},{"accepts":[{"amount":"3000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"name":"USD Coin","version":"2"},"maxTimeoutSeconds":60,"network":"eip155:8453","payTo":"0x737426d3eD53930B889b3f61774669a0FDf3BE54","scheme":"exact"}],"description":"Repair malformed JSON (trailing commas, single quotes, unquoted keys, code fences, truncated output) and optionally validate the result against a supplied JSON Schema. Returns the parsed value, the canonical text, a change log and validation errors.","extensions":{"bazaar":{"info":{"input":{"body":{"input":"```json\n{name: \"ada\", tags: [\"math\", \"code\",]}\n```","schema":{"properties":{"name":{"type":"string"},"tags":{"type":"array"}},"required":["name"],"type":"object"}},"bodyType":"json","method":"POST","type":"http"},"output":{"example":{"changed":true,"changes":["stripped markdown code fence","repaired JSON syntax"],"errors":[],"repaired":{"name":"ada","tags":["math","code"]},"repairedText":"{\"name\":\"ada\",\"tags\":[\"math\",\"code\"]}","valid":true},"type":"json"}},"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","properties":{"input":{"additionalProperties":false,"properties":{"body":{"additionalProperties":false,"properties":{"input":{"description":"Malformed JSON text — trailing commas, single quotes, unquoted keys, markdown code fences, truncated output, etc.","type":"string"},"schema":{"description":"Optional JSON Schema (draft 2020-12) to validate the repaired value against.","type":"object"}},"required":["input"],"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":{"properties":{"changed":{"type":"boolean"},"changes":{"items":{"type":"string"},"type":"array"},"errors":{"items":{"type":"object"},"type":"array"},"repaired":{},"repairedText":{"type":"string"},"valid":{"type":"boolean"}},"required":["repaired","repairedText","changes"],"type":"object"},"type":{"type":"string"}},"required":["type"],"type":"object"}},"required":["input"],"type":"object"}}},"lastUpdated":"2026-08-10T03:11:31.589Z","quality":{"l30DaysTotalCalls":4,"l30DaysUniquePayers":2,"lastCalledAt":"2026-08-10T03:11:31.13Z"},"resource":"https://x402.fenixfoundry.com/repair-json","serviceName":"agent-reader","tags":["json","repair","validation","schema","parsing"],"type":"http","x402Version":2},{"accepts":[{"amount":"1000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"name":"USD Coin","version":"2"},"maxTimeoutSeconds":60,"network":"eip155:8453","payTo":"0xB86F95EF5FA904318Ea9Df3b59AdCe099b478fC4","scheme":"exact"}],"description":"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\"}}","extensions":{"bazaar":{"info":{"input":{"body":{"data":{"age":"36","name":"Ada"},"schema":{"properties":{"age":{"type":"integer"},"name":{"type":"string"}},"required":["name","age"],"type":"object"}},"bodyType":"json","method":"POST","type":"http"},"output":{"example":{"errors":[],"valid":true,"value":{"age":36,"name":"Ada"},"warnings":[{"message":"coerced string \"36\" to integer","path":"$.age"}]},"type":"json"}},"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","properties":{"input":{"properties":{"body":{"properties":{"coerce":{"default":true,"description":"Attempt type coercion and default-filling before validating.","type":"boolean"},"data":{"description":"The candidate JSON value to validate and coerce."},"schema":{"description":"JSON Schema (draft-07 style subset: type, properties, required, items, enum, const, additionalProperties, min/max constraints, pattern, default).","type":"object"}},"required":["schema","data"],"type":"object"},"bodyType":{"enum":["json"],"type":"string"},"method":{"enum":["POST"],"type":"string"},"type":{"const":"http","type":"string"}},"type":"object"},"output":{"properties":{"errors":{"items":{"properties":{"message":{"type":"string"},"path":{"type":"string"}},"type":"object"},"type":"array"},"valid":{"type":"boolean"},"value":{"description":"The (possibly coerced) value."},"warnings":{"items":{"properties":{"message":{"type":"string"},"path":{"type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"required":["input"],"type":"object"}}},"lastUpdated":"2026-08-13T20:46:47.504Z","quality":{"l30DaysTotalCalls":1,"l30DaysUniquePayers":1,"lastCalledAt":"2026-08-13T20:46:47.217Z"},"resource":"https://keyronne.com/api/validate-json","serviceName":"JSON Schema Validator","tags":["json","validation","llm-outputs","coercion","schema"],"type":"http","x402Version":2},{"accepts":[{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","description":"Lightweight type/required/property check for agent-held JSON (not full draft validation) — first-party local utility for agent preflight and proven micro-utils expansion. Returns deterministic machine-readable JSON for $0.002 USDC via x402 on Base. Execution is first-party, local-only, stateless, and memory-only with no paid upstream, no input retention, no web search, no live RPC, and no mediagen. Results are advisory; the caller owns authorization, budgets, and production controls. Sibling of…","extra":{"accept_label":"Coinbase CDP","app":"Delx Commerce","facilitator_url":"https://api.cdp.coinbase.com/platform/v2/x402","name":"USD Coin","provider":"coinbase","provider_label":"Coinbase CDP","version":"2"},"maxTimeoutSeconds":300,"mimeType":"application/json","network":"eip155:8453","payTo":"0x9f8bd9875b3E0b632a24A3A7C73f7787175e73A2","resource":"https://api.delx.ai/api/v1/x402/json-schema-quickcheck","scheme":"exact"},{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","description":"Lightweight type/required/property check for agent-held JSON (not full draft validation) — first-party local utility for agent preflight and proven micro-utils expansion. Returns deterministic machine-readable JSON for $0.002 USDC via x402 on Base. Execution is first-party, local-only, stateless, and memory-only with no paid upstream, no input retention, no web search, no live RPC, and no mediagen. Results are advisory; the caller owns authorization, budgets, and production controls. Sibling of…","extra":{"accept_label":"PayAI Base","app":"Delx Commerce","facilitator_url":"https://facilitator.payai.network","name":"USD Coin","provider":"payai","provider_label":"PayAI Base","version":"2"},"maxTimeoutSeconds":300,"mimeType":"application/json","network":"eip155:8453","payTo":"0x9f8bd9875b3E0b632a24A3A7C73f7787175e73A2","resource":"https://api.delx.ai/api/v1/x402/json-schema-quickcheck","scheme":"exact"},{"amount":"2000","asset":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","description":"Lightweight type/required/property check for agent-held JSON (not full draft validation) — first-party local utility for agent preflight and proven micro-utils expansion. Returns deterministic machine-readable JSON for $0.002 USDC via x402 on Base. Execution is first-party, local-only, stateless, and memory-only with no paid upstream, no input retention, no web search, no live RPC, and no mediagen. Results are advisory; the caller owns authorization, budgets, and production controls. Sibling of…","extra":{"accept_label":"PayAI Solana","app":"Delx Commerce","facilitator_url":"https://facilitator.payai.network","feePayer":"2wKupLR9q6wXYppw8Gr2NvWxKBUqm4PPJKkQfoxHDBg4","name":"USD Coin","provider":"payai","provider_label":"PayAI Solana","version":"2"},"maxTimeoutSeconds":300,"mimeType":"application/json","network":"solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp","payTo":"28heAMpFkeUJsL7o7apiK4oJwZWq2fUHinRwbgYYsemG","resource":"https://api.delx.ai/api/v1/x402/json-schema-quickcheck","scheme":"exact"}],"description":"Lightweight type/required/property check for agent-held JSON (not full draft validation) — first-party local utility for agent preflight and proven micro-utils expansion. Returns deterministic machine-readable JSON for $0.002 USDC via x402 on Base. Execution is first-party, local-only, stateless, and memory-only with no paid upstream, no input retention, no web search, no live RPC, and no mediagen. Results are advisory; the caller owns authorization, budgets, and production controls. Sibling of…","extensions":{"bazaar":{"category":"data-quality","coverImage":"https://delx.ai/opengraph-image?v=20260305-fox","info":{"input":{"body":{"instance":{"n":1,"name":"delx"},"schema":{"properties":{"n":{"type":"integer"},"name":{"type":"string"}},"required":["name"],"type":"object"}},"bodyType":"json","method":"POST","type":"http"},"output":{"example":{"error_count":0,"errors":[],"note":"quickcheck only — not full draft-2020-12 validation","ok":true,"schema":"delx/util-json-schema-quickcheck/v1"},"type":"json"}},"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","properties":{"input":{"additionalProperties":false,"properties":{"body":{"additionalProperties":true,"properties":{"instance":{"description":"Input field: instance.","type":"object"},"schema":{"description":"Input field: schema.","type":"object"}},"required":["instance","schema"],"type":"object"},"bodyType":{"const":"json","type":"string"},"method":{"const":"POST","type":"string"},"type":{"const":"http","type":"string"}},"required":["type","bodyType","body"],"type":"object"},"output":{"properties":{"example":{"additionalProperties":true,"description":"Bounded first-party JSON result; input is processed in memory and not retained.","properties":{"error_count":{"type":"integer"},"errors":{"items":{},"type":"array"},"note":{"type":"string"},"ok":{"type":"boolean"},"schema":{"type":"string"}},"type":"object"},"type":{"const":"json","type":"string"}},"required":["type","example"],"type":"object"}},"required":["input","output"],"type":"object"},"serviceName":"Delx JSON Schema Quickcheck","summary":"Lightweight type/required/property check for agent-held JSON (not full draft validation) — first-party local utility for agent preflight and proven micro-utils expansion. Returns deterministic machine-readable JSON for $0.002 USDC via x402 on Base. Execution is first-party, local-only, stateless, and memory-only with no paid upstream, no input retention, no web search, no live RPC, and no mediagen. Results are advisory; the caller owns authorization, budgets, and production controls. Sibling of Delx routes that already converted externally (random, hash, URL, FX families).","tags":["x402","json","schema","preflight","agents","local-first"]}},"iconUrl":"https://res.cloudinary.com/bdb-prod/image/upload/c_fill,ar_1:1,w_256,h_256,f_auto,q_auto/v1786031869/bazaar-icons/f116ee851813c2b6.png","lastUpdated":"2026-08-06T23:34:07.767Z","quality":{"l30DaysTotalCalls":2,"l30DaysUniquePayers":1,"lastCalledAt":"2026-08-06T23:34:07.428Z"},"resource":"https://api.delx.ai/api/v1/x402/json-schema-quickcheck","serviceName":"Delx JSON Schema Quickcheck","tags":["x402","json","schema","preflight","agents"],"type":"http","x402Version":2},{"accepts":[{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","description":"Check a JSON payload against a bounded structural contract and return path-level errors. Use it before an autonomous workflow acts on untrusted input, changes an API, retries a request, or evaluates production reliability. Returns bounded machine-readable JSON for $0.002 USDC via x402 on Base. Execution is deterministic, first-party, local-only, stateless, and does not call an upstream provider; structured validation failures are not billed.","extra":{"accept_label":"Coinbase CDP","app":"Delx Agent Operations Protocol","facilitator_url":"https://api.cdp.coinbase.com/platform/v2/x402","name":"USD Coin","provider":"coinbase","provider_label":"Coinbase CDP","version":"2"},"maxTimeoutSeconds":300,"mimeType":"application/json","network":"eip155:8453","payTo":"0x9f8bd9875b3E0b632a24A3A7C73f7787175e73A2","resource":"https://api.delx.ai/api/v1/x402/json-contract-check","scheme":"exact"},{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","description":"Check a JSON payload against a bounded structural contract and return path-level errors. Use it before an autonomous workflow acts on untrusted input, changes an API, retries a request, or evaluates production reliability. Returns bounded machine-readable JSON for $0.002 USDC via x402 on Base. Execution is deterministic, first-party, local-only, stateless, and does not call an upstream provider; structured validation failures are not billed.","extra":{"accept_label":"PayAI Base","app":"Delx Agent Operations Protocol","facilitator_url":"https://facilitator.payai.network","name":"USD Coin","provider":"payai","provider_label":"PayAI Base","version":"2"},"maxTimeoutSeconds":300,"mimeType":"application/json","network":"eip155:8453","payTo":"0x9f8bd9875b3E0b632a24A3A7C73f7787175e73A2","resource":"https://api.delx.ai/api/v1/x402/json-contract-check","scheme":"exact"},{"amount":"2000","asset":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","description":"Check a JSON payload against a bounded structural contract and return path-level errors. Use it before an autonomous workflow acts on untrusted input, changes an API, retries a request, or evaluates production reliability. Returns bounded machine-readable JSON for $0.002 USDC via x402 on Base. Execution is deterministic, first-party, local-only, stateless, and does not call an upstream provider; structured validation failures are not billed.","extra":{"accept_label":"PayAI Solana","app":"Delx Agent Operations Protocol","facilitator_url":"https://facilitator.payai.network","feePayer":"2wKupLR9q6wXYppw8Gr2NvWxKBUqm4PPJKkQfoxHDBg4","name":"USD Coin","provider":"payai","provider_label":"PayAI Solana","version":"2"},"maxTimeoutSeconds":300,"mimeType":"application/json","network":"solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp","payTo":"28heAMpFkeUJsL7o7apiK4oJwZWq2fUHinRwbgYYsemG","resource":"https://api.delx.ai/api/v1/x402/json-contract-check","scheme":"exact"}],"description":"Check a JSON payload against a bounded structural contract and return path-level errors. Use it before an autonomous workflow acts on untrusted input, changes an API, retries a request, or evaluates production reliability. Returns bounded machine-readable JSON for $0.002 USDC via x402 on Base. Execution is deterministic, first-party, local-only, stateless, and does not call an upstream provider; structured validation failures are not billed.","extensions":{"bazaar":{"category":"agent-reliability-security","coverImage":"https://delx.ai/opengraph-image?v=20260305-fox","info":{"input":{"body":{"contract":{"properties":{"status":{"type":"string"}},"required":["status"],"type":"object"},"instance":{"status":"ready"}},"bodyType":"json","method":"POST","type":"http"},"output":{"example":{"error_count":0,"errors":[],"schema":"delx/json-contract-check/v1","scope":"bounded structural subset: type, required, properties, enum","valid":true},"type":"json"}},"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","properties":{"input":{"additionalProperties":false,"properties":{"body":{"additionalProperties":true,"properties":{"contract":{"description":"Bounded JSON Schema-like contract using type, required, properties, and enum.","type":"object"},"instance":{"description":"JSON value to check."}},"required":["instance","contract"],"type":"object"},"bodyType":{"const":"json","type":"string"},"method":{"const":"POST","type":"string"},"type":{"const":"http","type":"string"}},"required":["type","bodyType","body"],"type":"object"},"output":{"properties":{"example":{"additionalProperties":true,"description":"Bounded first-party JSON result; input is processed in memory and not retained.","properties":{"error_count":{"type":"integer"},"errors":{"items":{},"type":"array"},"schema":{"type":"string"},"scope":{"type":"string"},"valid":{"type":"boolean"}},"type":"object"},"type":{"const":"json","type":"string"}},"required":["type","example"],"type":"object"}},"required":["input","output"],"type":"object"},"serviceName":"Delx JSON Contract Check","summary":"Check a JSON payload against a bounded structural contract and return path-level errors. Use it before an autonomous workflow acts on untrusted input, changes an API, retries a request, or evaluates production reliability. Returns bounded machine-readable JSON for $0.002 USDC via x402 on Base. Execution is deterministic, first-party, local-only, stateless, and does not call an upstream provider; structured validation failures are not billed.","tags":["x402","agents","reliability","security","local-first","json"]}},"iconUrl":"https://res.cloudinary.com/bdb-prod/image/upload/c_fill,ar_1:1,w_256,h_256,f_auto,q_auto/v1786031869/bazaar-icons/f116ee851813c2b6.png","lastUpdated":"2026-08-06T15:58:14.924Z","quality":{"l30DaysTotalCalls":1,"l30DaysUniquePayers":1,"lastCalledAt":"2026-08-06T15:58:14.39Z"},"resource":"https://api.delx.ai/api/v1/x402/json-contract-check","serviceName":"Delx JSON Contract Check","tags":["x402","agents","reliability","security","local-first"],"type":"http","x402Version":2},{"accepts":[{"amount":"10000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"jobId":"job_d830570e858d4ef589ec07e19f980e48","name":"USD Coin","priceUsdc":"0.01","serviceId":"json-schema-repair","version":"2"},"maxTimeoutSeconds":3600,"network":"eip155:8453","payTo":"0x1c8b3C34Dca2Ba2A71598f1F9E0BC2a04A0Bea36","scheme":"exact"}],"description":"Deterministic JSON repair for agent tool outputs, with optional JSON Schema validation. Built for tight agent loops at micropayment prices.","extensions":{"bazaar":{"discoverable":true,"info":{"category":"commerce","description":"Cheapest Hermes settle demo: deterministic JSON repair + schema validate via x402 ($0.01)","input":{"body":{"json_text":"{\"ok\": true,}","schema":{"properties":{"ok":{"type":"boolean"}},"required":["ok"],"type":"object"}},"bodyType":"json","method":"POST","type":"http"},"output":{"example":{"generated_at":"2026-01-01T00:00:00+00:00","issue_codes":[],"job_id":"job_example","limitations":["Heuristic repair only."],"next_jobs":[],"parse_ok":true,"repair_notes":["repair_attempted"],"repaired":true,"repaired_json":{"ok":true},"schema_errors":[],"schema_ok":true,"service":"json-schema-repair","sources":[{"note":"client payload","url":"inline://json_text"}],"status":"completed","summary":"JSON repair succeeded; repaired=True; schema_check=True. Deterministic repair for agent loops."},"type":"json"},"serviceName":"Hermes Commerce","tags":["hermes","micro","json-repair","schema","demo","agent-loop"],"toolName":"json-schema-repair"},"resource":{"description":"Cheapest Hermes settle demo: deterministic JSON repair + schema validate via x402 ($0.01)","mimeType":"application/json","serviceName":"Hermes Commerce","tags":["hermes","micro","json-repair","schema","demo","agent-loop"],"url":"https://agent.kihustle.tech/services/json-schema-repair/jobs"},"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","properties":{"category":{"type":"string"},"description":{"type":"string"},"input":{"additionalProperties":false,"properties":{"body":{"properties":{"json_text":{"description":"Raw JSON text to repair","type":"string"},"schema":{"description":"Optional JSON Schema","type":"object"}},"required":["json_text"],"type":"object"},"bodyType":{"enum":["json","form-data","text"],"type":"string"},"headers":{"additionalProperties":{"type":"string"},"type":"object"},"method":{"enum":["POST","PUT","PATCH"],"type":"string"},"queryParams":{"additionalProperties":{"type":"string"},"type":"object"},"type":{"const":"http","type":"string"}},"required":["type","method","bodyType","body"],"type":"object"},"output":{"properties":{"example":{"type":"object"},"type":{"type":"string"}},"required":["type"],"type":"object"},"serviceName":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array"},"toolName":{"type":"string"}},"required":["input"],"type":"object"}}},"lastUpdated":"2026-08-17T07:51:38.546Z","quality":{"l30DaysTotalCalls":7,"l30DaysUniquePayers":2,"lastCalledAt":"2026-08-17T07:51:38.055Z"},"resource":"https://agent.kihustle.tech/services/json-schema-repair/jobs","serviceName":"Hermes Commerce","tags":["hermes","micro","json-repair","schema","demo"],"type":"http","x402Version":2},{"accepts":[{"amount":"10000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"name":"USD Coin","version":"2"},"maxTimeoutSeconds":300,"network":"eip155:8453","payTo":"0xa0BFa4f07281c9b248DC3AED2217836BcA24869B","scheme":"exact"}],"description":"Validate JSON data against a bounded JSON Schema Draft 2020-12 contract for nested objects, arrays, required properties, types, enums, formats, lengths, patterns, and numeric bounds; return deterministic instance and schema JSON Pointers, explicit error truncation, input hashes, and no remote reference resolution.","extensions":{"bazaar":{"info":{"input":{"body":{"check_formats":true,"instance":{"name":"Ada","score":"98"},"max_errors":25,"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","additionalProperties":false,"properties":{"name":{"minLength":1,"type":"string"},"score":{"minimum":0,"type":"integer"}},"required":["name","score"],"type":"object"}},"bodyType":"json","method":"POST","type":"http"},"output":{"example":{"data":{"errorCount":1,"errorCountExact":true,"errors":[{"instancePath":"/score","keyword":"type","kind":"instance","message":"'98' is not of type 'integer'","schemaPath":"/properties/score/type"}],"errorsReturned":1,"errorsTruncated":false,"instance":{"sha256":"43d117eb76b608a0d05820c70320889a6577ff85446e00412b6e6487c1559149","utf8Bytes":27},"instanceValid":false,"schema":{"declaredDialect":"https://json-schema.org/draft/2020-12/schema","dialect":"https://json-schema.org/draft/2020-12/schema","remoteReferencesAllowed":false,"sha256":"9565a3dfc9aaadfaf2b3163f433b954d7d91246b6c225c11a8c16fe42ae841e4","utf8Bytes":224},"schemaValid":true,"valid":false,"validation":{"draft":"2020-12","engine":"python-jsonschema","engineVersion":"4.26.0","formatChecking":true,"maxErrors":25}},"meta":{"cached":false,"duration_ms":42,"next_actions":[{"method":"POST","path":"/v1/data/schema","reason":"Infer the rejected instance's observed Draft 2020-12 shape for comparison wit...","service":"data.schema","title":"JSON Schema generator"}],"sources":[],"warnings":[]},"request_id":"018f1f54-7f38-7ba2-8dc3-5f90272d9f1a","service":"data.schema-validate","version":"1"},"type":"json"}},"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","properties":{"input":{"additionalProperties":false,"properties":{"body":{"properties":{"check_formats":{"type":"boolean"},"instance":{},"max_errors":{"type":"integer"},"schema":{"type":"object"}},"required":["schema","instance"],"type":"object"},"bodyType":{"enum":["json","form-data","text"],"type":"string"},"method":{"enum":["POST","PUT","PATCH"],"type":"string"},"type":{"const":"http","type":"string"}},"required":["type","method","bodyType","body"],"type":"object"},"output":{"properties":{"example":{"properties":{"data":{"properties":{"errorCount":{"type":"integer"},"errorCountExact":{"type":"boolean"},"errors":{"items":{"type":"object"},"type":"array"},"errorsReturned":{"type":"integer"},"errorsTruncated":{"type":"boolean"},"instance":{"type":"object"},"instanceValid":{"type":["boolean","null"]},"schema":{"type":"object"},"schemaValid":{"type":"boolean"},"valid":{"type":"boolean"},"validation":{"type":"object"}},"type":"object"},"meta":{"properties":{"cached":{"type":"boolean"},"duration_ms":{"type":"integer"},"next_actions":{"items":{"type":"object"},"type":"array"},"sources":{"items":{"type":"string"},"type":"array"},"warnings":{"items":{"type":"string"},"type":"array"}},"required":["duration_ms","cached","sources","warnings","next_actions"],"type":"object"},"request_id":{"type":"string"},"service":{"type":"string"},"version":{"type":"string"}},"required":["request_id","service","version","data","meta"],"type":"object"},"type":{"type":"string"}},"required":["type"],"type":"object"}},"required":["input"],"type":"object"}},"payment-identifier":{"info":{"required":false},"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","properties":{"id":{"maxLength":128,"minLength":16,"pattern":"^[a-zA-Z0-9_-]+$","type":"string"},"required":{"type":"boolean"}},"required":["required"],"type":"object"}}},"iconUrl":"https://res.cloudinary.com/bdb-prod/image/upload/c_fill,ar_1:1,w_256,h_256,f_auto,q_auto/v1786471603/bazaar-icons/3cd5dfbdc8c7913d.png","lastUpdated":"2026-08-16T22:26:12.307Z","quality":{"l30DaysTotalCalls":3,"l30DaysUniquePayers":2,"lastCalledAt":"2026-08-16T22:26:12.028Z"},"resource":"https://apiacre.com/v1/data/schema-validate","serviceName":"API Acre","tags":["json-schema","schema-validation","json-validator","structured-output","validation"],"type":"http","x402Version":2},{"accepts":[{"amount":"2000","asset":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","extra":{"name":"USD Coin","version":"2"},"maxTimeoutSeconds":300,"network":"eip155:8453","payTo":"0x8fC4006534801c17A3368075A1Fb3b3C511EdB1F","scheme":"exact"}],"description":"Validate JSON against a JSON Schema. Checks LLM and agent output and API request payloads, returning structured errors with error codes, JSONPath locations, and a plain-English summary. Optional automatic repair of invalid payloads.","extensions":{"bazaar":{"info":{"input":{"body":{"explain":true,"json_schema":{"properties":{"age":{"type":"integer"},"name":{"type":"string"}},"required":["name","age"],"type":"object"},"payload":{"age":30,"name":"Alice"},"repair":false,"strictness":"normal"},"bodyType":"json","method":"POST","type":"http"},"output":{"example":{"confidence":1,"errors":[],"suggested_payload":null,"summary":"Payload is valid against the supplied JSON Schema.","valid":true},"type":"json"}},"schema":{"$schema":"https://json-schema.org/draft/2020-12/schema","properties":{"input":{"additionalProperties":false,"properties":{"body":{"properties":{"explain":{"description":"If true, include a plain-English summary. Default: true","type":"boolean"},"json_schema":{"description":"JSON Schema document to validate the payload against","type":"object"},"payload":{"description":"The JSON value to validate against the schema"},"repair":{"description":"If true, return a suggested corrected payload. Default: false","type":"boolean"},"strictness":{"description":"Validation strictness. Default: normal","enum":["strict","normal","lenient"],"type":"string"}},"required":["json_schema","payload"],"type":"object"},"bodyType":{"enum":["json","form-data","text"],"type":"string"},"method":{"enum":["POST","PUT","PATCH"],"type":"string"},"type":{"const":"http","type":"string"}},"required":["type","method","bodyType","body"],"type":"object"},"output":{"properties":{"example":{"type":"object"},"type":{"type":"string"}},"required":["type"],"type":"object"}},"required":["input"],"type":"object"}}},"lastUpdated":"2026-08-12T23:28:21.01Z","quality":{"l30DaysTotalCalls":1,"l30DaysUniquePayers":1,"lastCalledAt":"2026-08-12T23:28:20.769Z"},"resource":"https://projectx402-production.up.railway.app/v1/schema-check","serviceName":"SchemaCheck Agent","tags":["json","json-schema","validation","validate","schema"],"type":"http","x402Version":2}],"searchMethod":"hybrid","x402Version":2,"meta":{"searchToken":"m3rtgxkodwhygaa"}}
