Baseten · Schema

ResponseFormatJsonObject

JSON object response format.

AIMLInferenceDeploymentMLOpsOpenAI CompatibleAnthropic CompatibleTruss

Properties

Name Type Description
type string The response format type, always `json_object`.
View JSON Schema on GitHub

JSON Schema

baseten-responseformatjsonobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResponseFormatJsonObject",
  "title": "ResponseFormatJsonObject",
  "additionalProperties": false,
  "properties": {
    "type": {
      "const": "json_object",
      "title": "Type",
      "type": "string",
      "description": "The response format type, always `json_object`."
    }
  },
  "required": [
    "type"
  ],
  "type": "object",
  "description": "JSON object response format."
}