Mistral AI · Schema

FileList

Properties

Name Type Description
data array
total integer Total number of files
object string
View JSON Schema on GitHub

JSON Schema

mistral-filelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FileList",
  "title": "FileList",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/File"
      }
    },
    "total": {
      "type": "integer",
      "description": "Total number of files"
    },
    "object": {
      "type": "string",
      "enum": [
        "list"
      ]
    }
  }
}