JSON Schema Validator avatar
JSON Schema Validator
Under maintenance

Pricing

Pay per usage

Go to Apify Store
JSON Schema Validator

JSON Schema Validator

Under maintenance

Validate JSON data against JSON Schema definitions. Supports inline data or URL fetch, draft-07 compatible, strict mode. Perfect for API testing and data pipelines.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Donny Nguyen

Donny Nguyen

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

19 hours ago

Last modified

Categories

Share

JSON Schema Validator - Validate Data Against Any Schema

Validate JSON data against JSON Schema definitions. Catches type errors, missing required fields, pattern mismatches, and constraint violations. Supports inline data or URL fetch.

Key Features

  • Draft-07 compatible JSON Schema validation
  • Inline JSON or fetch from URL for both data and schema
  • Strict mode rejects extra properties not in schema
  • Detailed error reports with path, expected vs received values

Cost

Typical runs cost less than $0.01. Pure computation, no web scraping.

Input Example

{
"jsonData": {"name": "John", "age": "not a number"},
"schema": {"type": "object", "properties": {"name": {"type": "string"}, "age": {"type": "integer"}}, "required": ["name", "age"]}
}

Output Example

{
"valid": false,
"errorCount": 1,
"errors": [{"path": ".age", "message": "Expected type integer, got string"}]
}

Use Cases

  • API development: validate request/response payloads before deployment
  • Data pipelines: ensure data quality at ingestion
  • Testing: automated schema compliance checks in CI/CD
  • Documentation: verify API examples match their schemas

Built By

Donny Dev - Blockchain & automation developer