Microsoft Edge · JSON Structure

Devtools Api Target Structure

A debuggable browser target from the Microsoft Edge DevTools Protocol HTTP API

Type: object Properties: 8
BrowserChromiumDeveloper ToolsEdgeExtensionsMicrosoftProgressive Web AppsWeb DevelopmentWebView

Target is a JSON Structure definition published by Microsoft Edge, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

description devtoolsFrontendUrl faviconUrl id title type url webSocketDebuggerUrl

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-structure/devtools-api-target-structure.json",
  "name": "Target",
  "description": "A debuggable browser target from the Microsoft Edge DevTools Protocol HTTP API",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "Target description"
    },
    "devtoolsFrontendUrl": {
      "type": "string",
      "description": "URL to the DevTools frontend for this target"
    },
    "faviconUrl": {
      "type": "string",
      "description": "URL to the target's favicon"
    },
    "id": {
      "type": "string",
      "description": "Unique target identifier"
    },
    "title": {
      "type": "string",
      "description": "Page title"
    },
    "type": {
      "type": "string",
      "description": "Target type",
      "enum": ["page", "background_page", "service_worker", "worker", "iframe", "other"]
    },
    "url": {
      "type": "uri",
      "description": "Current URL of the target"
    },
    "webSocketDebuggerUrl": {
      "type": "string",
      "description": "WebSocket URL for debugging this target"
    }
  }
}