Skip to main content
API version 2024.0 A Box Skill metadata card that adds a transcript to a file.
type
string
example: skill_cardThe value will always be skill_card.Value is always skill_card
created_at
string(date-time)
example: 2018-04-13T13:53:23-07:00The optional date and time this card was created at.
duration
integer
example: 1000An optional total duration in seconds.Used with a skill_card_type of transcript or timeline.
entries
object[]
An list of entries for the card. This represents the individual entries of the transcription.
invocation
object
The invocation of this service, used to track which instance of a service applied the metadata.
skill
object
The service that applied this metadata.
skill_card_title
object
The title of the card.
skill_card_type
string
example: transcriptThe value will always be transcript.Value is always transcript
{
  "type": "skill_card",
  "created_at": "2018-04-13T13:53:23-07:00",
  "duration": 1000,
  "entries": [
    {
      "appears": [
        {
          "start": 1
        }
      ],
      "text": "Hi, and welcome to this video..."
    }
  ],
  "invocation": {
    "id": "transciption-service-123",
    "type": "skill_invocation"
  },
  "skill": {
    "id": "transciption-service",
    "type": "service"
  },
  "skill_card_title": {
    "code": "my_transcripts",
    "message": "My Transcripts"
  },
  "skill_card_type": "transcript"
}