Microsoft Edge · JSON Structure

Addons Api Product List Structure

Paginated list of extension products in the Microsoft Edge Add-ons store

Type: object Properties: 2
BrowserChromiumDeveloper ToolsEdgeExtensionsMicrosoftProgressive Web AppsWeb DevelopmentWebView

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

Properties

value totalCount

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-list-structure.json",
  "name": "ProductList",
  "description": "Paginated list of extension products in the Microsoft Edge Add-ons store",
  "type": "object",
  "properties": {
    "value": {
      "type": "array",
      "description": "Array of products",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Product identifier"
          },
          "name": {
            "type": "string",
            "description": "Extension name"
          },
          "status": {
            "type": "string",
            "description": "Product publishing status"
          },
          "lastUpdatedUtc": {
            "type": "datetime",
            "description": "Last update timestamp"
          }
        }
      }
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of products"
    }
  }
}