Microsoft Azure API Management · JSON Structure

Ai Gateway Chat Completion Request Structure

Type: object Properties: 3
A2AAI GatewayAPI CenterAPI GatewayAPI ManagementEnterpriseMCPMicrosoft Azure

ChatCompletionRequest is a JSON Structure definition published by Microsoft Azure API Management, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

messages max_tokens temperature

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "ChatCompletionRequest",
  "type": "object",
  "properties": {
    "messages": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "role": {
            "type": "string",
            "example": "user"
          },
          "content": {
            "type": "string",
            "example": "What is Azure API Management?"
          }
        }
      }
    },
    "max_tokens": {
      "type": "int32",
      "example": 256
    },
    "temperature": {
      "type": "float",
      "example": 0.7
    }
  }
}