CheckResponse Data Type

Response containing the check result

Properties
name data type constraints 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  
inBackground boolean required boolean Whether the job was pushed into the background.

Example

{
  "valid" : true,
  "reason" : "...",
  "messages" : [ { }, { } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  },
  "inBackground" : true
}