ApiCreateOrUpdateParameter

A2AAI GatewayAPI CenterAPI GatewayAPI ManagementEnterpriseMCPMicrosoft Azure

Properties

Name Type Description
properties object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-api-management-apicreateorupdateparameter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiCreateOrUpdateParameter",
  "title": "ApiCreateOrUpdateParameter",
  "type": "object",
  "properties": {
    "properties": {
      "type": "object",
      "properties": {
        "displayName": {
          "type": "string",
          "example": "Petstore API"
        },
        "description": {
          "type": "string",
          "example": "A sample API for managing pets."
        },
        "serviceUrl": {
          "type": "string",
          "example": "https://petstore.example.com/v1"
        },
        "path": {
          "type": "string",
          "example": "petstore"
        },
        "protocols": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "example": [
            "https"
          ]
        }
      }
    }
  }
}