Microsoft Edge · JSON Structure

Addons Api Product Structure

An extension product in the Microsoft Edge Add-ons store

Type: object Properties: 7
BrowserChromiumDeveloper ToolsEdgeExtensionsMicrosoftProgressive Web AppsWeb DevelopmentWebView

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

Properties

id name description status version lastUpdatedUtc category

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-product-structure.json",
  "name": "Product",
  "description": "An extension product in the Microsoft Edge Add-ons store",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Product identifier"
    },
    "name": {
      "type": "string",
      "description": "Extension name"
    },
    "description": {
      "type": "string",
      "description": "Extension description"
    },
    "status": {
      "type": "string",
      "description": "Product publishing status",
      "enum": ["Draft", "InReview", "Published", "Unpublished", "Rejected"]
    },
    "version": {
      "type": "string",
      "description": "Current published version"
    },
    "lastUpdatedUtc": {
      "type": "datetime",
      "description": "Last update timestamp"
    },
    "category": {
      "type": "string",
      "description": "Store category"
    }
  }
}