Dictionary

Transcript

The data dictionary and definitions for Transcripts


Fields

ParameterTypeDescription
transcript_item_idintThe Aiera-unique identifier for the transcript
event_idintThe Aiera-unique identifier for the parent event
event_type *strThe type of transcript
transcriptstrThe unadjusted transcription for this segment
originalstrThe original untranslated text (if transcript was translated)
is_translatedboolWhether this transcript has been translated from another language
timestampdatetimeThe start timestamp for this transcription
start_msintThe millisecond offset for the start of this transcription relative to audio
duration_msintThe millisecond duration for this transcription segment
speaker_idintThe Aiera-unique identifier of the speaker
person_idintThe Aiera-unique identifier of the linked person entity
speaker_typestrMachine-generated ("dia" or "id") or published ("final") speaker type
speaker_namestrName of the speaker
speaker_titlestrTitle of the speaker
transcript_sectionstrName of the section to which the transcript segment belongs ("presentation" or "q_and_a")
annotatedstrThe tag-annotated transcription (deprecated)
audio_urlstrThe audio excerpt URL for this transcription
is_improvedboolWhether this transcript has been improved by larger secondary ASR
is_editedboolWhether this transcript has been human-edited/reviewed
statusstrThe status of this transcript item
tags *objJSON object with section and classification tags
createddatetimeWhen this transcript item was created
modifieddatetimeThe last modified date for this transcription
linguistics *objJSON object composed of linguistic-extractions, like summaries, etc.

Possibles

event_type

OptionDescription
transcriptA live/raw transcription
official_transcriptA human-corrected transcription

tags

{
  "tags": {
    "section": "presentation",
    "is_presentation": true,
    "is_question": false,
    "is_answer": false,
    "is_disclosure": false
  }
}
ParameterTypeDescription
sectionstrThe section name ("presentation" or "q_and_a")
is_presentationboolWhether this segment is part of the presentation
is_questionboolWhether this segment is a question in Q&A
is_answerboolWhether this segment is an answer in Q&A
is_disclosureboolWhether this segment contains disclosure language

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
Estimated Event