cURL
curl --request POST \ --url http://localhost:8080/validate \ --header 'Content-Type: application/json' \ --data '{}'
200
valid
{ "valid": true }
POST a ScreenJSON document (JSON). Returns { valid: true } on success, or { valid: false, errors: [{ path, message }] } on failure.
{ valid: true }
{ valid: false, errors: [{ path, message }] }
Max request body: 10 MB.
ScreenJSON document to validate.
Validation result
Show child attributes