Entity: {
    end: number;
    entity_type: EntityType;
    start: number;
    text: string;
}

A detected entity

Type declaration

  • end: number

    The ending time, in milliseconds, for the detected entity in the audio file

  • entity_type: EntityType

    The type of entity for the detected entity

  • start: number

    The starting time, in milliseconds, at which the detected entity appears in the audio file

  • text: string

    The text for the detected entity

{
"entity_type": "location",
"text": "Canada",
"start": 2548,
"end": 3130
}