Response containing the check result
| name | data type | description |
|---|---|---|
| valid | boolean | True, when the URL is valid, false if not |
| reason | string | Reason of failure |
| messages | array of Message | Messages contained in the response (which should be shown to the user) |
| responseInfo | ResponseInfo |
Example
{
"valid" : true,
"reason" : "...",
"messages" : [ { }, { } ],
"responseInfo" : {
"responseCode" : "OK",
"responseMessage" : "...",
"property" : "..."
}
}