Skip to main content
API version 2024.0 A Box Skill metadata card that places a list of images on a timeline.
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 total duration in seconds of the timeline.
entries
object[]
A list of entries on the timeline.
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: timelineThe value will always be timeline.Value is always timeline
{
  "type": "skill_card",
  "created_at": "2018-04-13T13:53:23-07:00",
  "duration": 1000,
  "entries": [
    {
      "appears": [
        {
          "end": 20,
          "start": 1
        }
      ],
      "image_url": "https://example.com/image1.jpg",
      "text": "John"
    }
  ],
  "invocation": {
    "id": "image-recognition-service-123",
    "type": "skill_invocation"
  },
  "skill": {
    "id": "image-recognition-service",
    "type": "service"
  },
  "skill_card_title": {
    "code": "Faces",
    "message": "Faces"
  },
  "skill_card_type": "timeline"
}