The video object has the following fields:

  • _id: A string representing the unique identifier of a video vector. The API service creates a new video vector object and assigns it a unique identifier when the video has successfully been indexed, and it's ready to be searched. Note that video IDs are different from task IDs.
  • created_at: A string indicating the date and time, in the RFC 3339 format, that the video indexing task was created.
  • indexed_at: A string indicating the date and time, in the RFC 3339 format, that the video has finished indexing.
  • metadata: An object that contains the following information about the video:
    • duration
    • filename
    • fps
    • height
    • size
    • width
    • Any custom metadata you've specified by calling the PUT method of the /indexes/:index-id/videos/:video-id endpoint.
  • updated_at: A string indicating the date and time, in the RFC 3339 format, that the video indexing task object was last updated. The API service updates this field every time the video indexing task transitions to a different state.