WebSocket

A WebSocket connection

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
id string
uri string
type string
state string
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-websocket-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebSocket",
  "title": "WebSocket",
  "type": "object",
  "description": "A WebSocket connection",
  "properties": {
    "id": {
      "type": "string"
    },
    "uri": {
      "type": "string",
      "format": "uri"
    },
    "type": {
      "type": "string"
    },
    "state": {
      "type": "string",
      "enum": [
        "Connecting",
        "Connected",
        "Closing",
        "Closed"
      ]
    }
  }
}