JSON Record Validator avatar
JSON Record Validator

Under maintenance

Pricing

$1.00 / 1,000 results

Go to Store
JSON Record Validator

JSON Record Validator

Under maintenance

Developed by

Utaba

Utaba

Maintained by Community

Validates JSON records against schemas. It supports complex schemas and large datasets, providing detailed error information. The validation process can be configured to include or exclude errors, and to stop after the first error or continue to find all errors.

0.0 (0)

Pricing

$1.00 / 1,000 results

0

Total users

1

Monthly users

1

Last modified

5 days ago

Utaba JSON Record Validator

Validate a record using a schema and get detailed error information. Supports complex schemas and large datasets. The validation process can be configured to include or exclude errors, and to stop after the first error or continue to find all errors.

Sample Usage

{
"schema": {
"title": "Example Schema",
"type": "object",
"properties": {
"name": { "type": "string" },
"age": { "type": "integer" }
},
"required": ["name", "age"]
},
"records": [
{ "name": "Alice", "age": 30 },
{ "name": "Bob", "age": 25 }
],
"idFieldName": "name",
"includeErrors": true,
"strictSchemaValidation": true,
"allErrors": true
}