Mistral AI · Schema

FineTuningJobList

Properties

Name Type Description
data array
total integer Total number of jobs
View JSON Schema on GitHub

JSON Schema

mistral-finetuningjoblist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FineTuningJobList",
  "title": "FineTuningJobList",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FineTuningJob"
      }
    },
    "total": {
      "type": "integer",
      "description": "Total number of jobs"
    }
  }
}