Microsoft Edge · JSON Structure

Addons Api Submission Structure

An extension submission for review and publishing in the Microsoft Edge Add-ons store

Type: object Properties: 5
BrowserChromiumDeveloper ToolsEdgeExtensionsMicrosoftProgressive Web AppsWeb DevelopmentWebView

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

Properties

id productId status createdUtc completedUtc

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-submission-structure.json",
  "name": "Submission",
  "description": "An extension submission for review and publishing in the Microsoft Edge Add-ons store",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Submission identifier"
    },
    "productId": {
      "type": "string",
      "description": "Parent product identifier"
    },
    "status": {
      "type": "string",
      "description": "Submission status",
      "enum": ["Draft", "InReview", "Published", "Failed", "Cancelled"]
    },
    "createdUtc": {
      "type": "datetime",
      "description": "Submission creation timestamp"
    },
    "completedUtc": {
      "type": "datetime",
      "description": "Submission completion timestamp"
    }
  }
}