Mistral AI · Schema

TrainingJobList

AgentsArtificial IntelligenceBatch ProcessingChatEmbeddingsFine-TuningLarge Language ModelsOCR

Properties

Name Type Description
data array A list of training jobs.
total integer The total number of training jobs.
View JSON Schema on GitHub

JSON Schema

mistral-ai-trainingjoblist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrainingJobList",
  "title": "TrainingJobList",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "A list of training jobs.",
      "items": {
        "$ref": "#/components/schemas/TrainingJob"
      }
    },
    "total": {
      "type": "integer",
      "description": "The total number of training jobs."
    }
  }
}