PortalPage

A2AAI GatewayAPI CenterAPI GatewayAPI ManagementEnterpriseMCPMicrosoft Azure

Properties

Name Type Description
title string
description string
links array
View JSON Schema on GitHub

JSON Schema

microsoft-azure-api-management-portalpage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PortalPage",
  "title": "PortalPage",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "example": "Contoso API Developer Portal"
    },
    "description": {
      "type": "string",
      "example": "Welcome to the developer portal."
    },
    "links": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "rel": {
            "type": "string",
            "example": "apis"
          },
          "href": {
            "type": "string",
            "example": "/apis"
          }
        }
      }
    }
  }
}