Dictionary

Transcript

The data dictionary and definitions for Transcripts


Fields

ParameterDescription
transcript_item_idThe Aiera-unique identifier for the transcript
event_type *The type of transcript
transcriptThe unadjusted transcription for this segment
timestampThe start timestamp for this transcription
start_msThe millisecond offset for the start of this transcription relative to audio
duration_msThe millisecond duration for this transcription segment
speaker_idThe Aiera-unique identifier of the speaker
speaker_typeMachine-generated ("dia" or "id") or published ("final") speaker type
speaker_nameName of the speaker
speaker_titleTitle of the speaker
annotatedThe tag-annotated transcription (deprecated)
audio_urlThe audio excerpt URL for this transcription
is_improvedWhether this transcript has been improved by larger secondary ASR
is_editedWhether this transcript has been human-edited/reviewed
modifiedThe last modified date for this transcription
linguistics *JSON object composed of linguistic-extractions, like summaries, etc.

Possibles

event_type

OptionDescription
transcriptA live/raw transcription
official_transcriptA human-corrected transcription

linguistics

{
  "summaries": [
    {
      "title": SUMMARY TITLE,
      "summary": [
        SUMMARY PARAGRAPHS
      ],
      "model": (zeroshot|bullet),
      "type": SUMMARY TYPE (presentation|q_and_a|everything),
      "audio_clip": AUDIO CLIP URL,
      "video_clip": VIDEO CLIP URL,
      "priority": SUMMARY PRIORITY ORDERING,
      "created": SUMMARY CREATION DATE,
      "modified": LAST SUMMARY MODIFICATION DATE
    }, ...
  ],
  "topics": [
    {
      "topic_id": AIERA-UNIQUE TOPIC ID,
      "topic": TOPIC,
      "priority": PRIORITY ORDERING
    }, ...
  ],
  "auto_tags": [
    TAG, ...
  ],
  "sentiment": {
    "average": AVERAGE SENTIMENT SCORE (-1 to 1),
    "median": MEDIAN SENTIMENT SCORE (-1 to 1),
    "minimum": MINIMUM DETECTED SEGMENT SCORE,
    "maximum": MAXIMUM DETECTED SEGMENT SCORE
  }
}
Previous
Event