HttpResponse

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
statusCode integer
reasonPhrase string
headers object
content string
isSuccessStatusCode boolean
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-httpresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HttpResponse",
  "title": "HttpResponse",
  "type": "object",
  "properties": {
    "statusCode": {
      "type": "integer"
    },
    "reasonPhrase": {
      "type": "string"
    },
    "headers": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "content": {
      "type": "string"
    },
    "isSuccessStatusCode": {
      "type": "boolean"
    }
  }
}