Mistral AI · Schema

Word

Properties

Name Type Description
word string The transcribed word
start number Start time in seconds
end number End time in seconds
speaker integernull Speaker ID if diarization is enabled
View JSON Schema on GitHub

JSON Schema

mistral-word-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Word",
  "title": "Word",
  "type": "object",
  "properties": {
    "word": {
      "type": "string",
      "description": "The transcribed word"
    },
    "start": {
      "type": "number",
      "description": "Start time in seconds"
    },
    "end": {
      "type": "number",
      "description": "End time in seconds"
    },
    "speaker": {
      "type": [
        "integer",
        "null"
      ],
      "description": "Speaker ID if diarization is enabled"
    }
  }
}