Microsoft Azure · Schema

chatCompletionRequestMessage

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
role object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-chatcompletionrequestmessage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/chatCompletionRequestMessage",
  "title": "chatCompletionRequestMessage",
  "type": "object",
  "properties": {
    "role": {
      "$ref": "#/components/schemas/chatCompletionRequestMessageRole"
    }
  },
  "discriminator": {
    "propertyName": "role",
    "mapping": {
      "system": "#/components/schemas/chatCompletionRequestMessageSystem",
      "user": "#/components/schemas/chatCompletionRequestMessageUser",
      "assistant": "#/components/schemas/chatCompletionRequestMessageAssistant",
      "tool": "#/components/schemas/chatCompletionRequestMessageTool",
      "function": "#/components/schemas/chatCompletionRequestMessageFunction"
    }
  },
  "required": [
    "role"
  ]
}