ProductSummary

A2AAI GatewayAPI CenterAPI GatewayAPI ManagementEnterpriseMCPMicrosoft Azure

Properties

Name Type Description
id string
name string
description string
subscriptionRequired boolean
approvalRequired boolean
View JSON Schema on GitHub

JSON Schema

microsoft-azure-api-management-productsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProductSummary",
  "title": "ProductSummary",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "starter-product"
    },
    "name": {
      "type": "string",
      "example": "Starter"
    },
    "description": {
      "type": "string",
      "example": "Free tier with rate-limited access to all APIs."
    },
    "subscriptionRequired": {
      "type": "boolean",
      "example": true
    },
    "approvalRequired": {
      "type": "boolean",
      "example": false
    }
  }
}