Mistral AI · Schema

Error

AgentsArtificial IntelligenceBatch ProcessingChatEmbeddingsFine-TuningLarge Language ModelsOCR

Properties

Name Type Description
message string A human-readable error message.
type string The type of error.
code integer The HTTP status code.
View JSON Schema on GitHub

JSON Schema

mistral-ai-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Error",
  "title": "Error",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "A human-readable error message."
    },
    "type": {
      "type": "string",
      "description": "The type of error."
    },
    "code": {
      "type": "integer",
      "description": "The HTTP status code."
    }
  }
}