GatewayResponse

A2AAI GatewayAPI CenterAPI GatewayAPI ManagementEnterpriseMCPMicrosoft Azure

Properties

Name Type Description
statusCode integer
headers object
body object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-api-management-gatewayresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GatewayResponse",
  "title": "GatewayResponse",
  "type": "object",
  "properties": {
    "statusCode": {
      "type": "integer",
      "example": 200
    },
    "headers": {
      "type": "object",
      "properties": {
        "x-apim-request-id": {
          "type": "string",
          "example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
        },
        "x-ms-request-id": {
          "type": "string",
          "example": "req-001"
        }
      }
    },
    "body": {
      "type": "object"
    }
  }
}