Validate an API version field
The validator uses JSON Schema Draft 2020-12 to check types, required fields, ranges, strings, arrays and nested objects, and reports all detectable error paths.
Example input
Data: {"name":"DevKit","version":0}
Schema: {"type":"object","required":["name","version"],"properties":{"version":{"type":"integer","minimum":1}}}Expected output
$.version must be >= 1Limitations and cautions
Schema validity does not prove business correctness. Remote $ref documents and custom keywords need additional configuration and are not loaded from unknown locations.