Microsoft Edge · JSON Structure

Addons Api Package Upload Result Structure

Package upload operation result for the Microsoft Edge Add-ons API

Type: object Properties: 3
BrowserChromiumDeveloper ToolsEdgeExtensionsMicrosoftProgressive Web AppsWeb DevelopmentWebView

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

Properties

operationId status message

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/addons-api-package-upload-result-structure.json",
  "name": "PackageUploadResult",
  "description": "Package upload operation result for the Microsoft Edge Add-ons API",
  "type": "object",
  "properties": {
    "operationId": {
      "type": "string",
      "description": "Upload operation identifier"
    },
    "status": {
      "type": "string",
      "description": "Operation status",
      "enum": ["InProgress", "Succeeded", "Failed"]
    },
    "message": {
      "type": "string",
      "description": "Status message"
    }
  }
}