Microsoft Azure · Schema

Retrieval tool call

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
id string The ID of the tool call object.
type string The type of tool call. This is always going to be `retrieval` for this type of tool call.
retrieval object For now, this is always going to be an empty object.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-runstepdetailstoolcallsretrievalobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/runStepDetailsToolCallsRetrievalObject",
  "title": "Retrieval tool call",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The ID of the tool call object."
    },
    "type": {
      "type": "string",
      "description": "The type of tool call. This is always going to be `retrieval` for this type of tool call.",
      "enum": [
        "retrieval"
      ],
      "x-ms-enum": {
        "name": "RunStepDetailsToolCallsRetrievalObjectType",
        "modelAsString": true,
        "values": [
          {
            "value": "retrieval"
          }
        ]
      }
    },
    "retrieval": {
      "type": "object",
      "description": "For now, this is always going to be an empty object."
    }
  },
  "required": [
    "id",
    "type",
    "retrieval"
  ]
}