Microsoft Edge · Schema

ProductList

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

BrowserChromiumDeveloper ToolsEdgeExtensionsMicrosoftProgressive Web AppsWeb DevelopmentWebView

Properties

Name Type Description
value array Array of products
totalCount integer Total number of products
View JSON Schema on GitHub

JSON Schema

addons-api-product-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/microsoft-edge/refs/heads/main/json-schema/addons-api-product-list-schema.json",
  "title": "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": {
        "$ref": "addons-api-product-schema.json"
      }
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of products"
    }
  }
}