Validate Json Schema
validate_json_schemaValidate a JSON value against a JSON Schema (draft-07 subset: type, required, properties, additionalProperties, items, enum, const, min/max, minLength/maxLength, pattern, minItems/maxItems, uniqueItems, format). Returns {valid, errors:[{path,message}]}. Keyless, offline.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | The JSON value to validate (any type). | |
| schema | Yes | The JSON Schema to validate against. |