Microsoft Azure · Schema

Code interpreter image output

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
type string Always `image`.
image object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-runstepdetailstoolcallscodeoutputimageobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/runStepDetailsToolCallsCodeOutputImageObject",
  "title": "Code interpreter image output",
  "type": "object",
  "properties": {
    "type": {
      "description": "Always `image`.",
      "type": "string",
      "enum": [
        "image"
      ],
      "x-ms-enum": {
        "name": "RunStepDetailsToolCallsCodeOutputImageObjectType",
        "modelAsString": true,
        "values": [
          {
            "value": "image"
          }
        ]
      }
    },
    "image": {
      "type": "object",
      "properties": {
        "file_id": {
          "description": "The [file](/docs/api-reference/files) ID of the image.",
          "type": "string"
        }
      },
      "required": [
        "file_id"
      ]
    }
  },
  "required": [
    "type",
    "image"
  ]
}