ADT · JSON Structure

Platform Api Video Clip Structure

A recorded video clip from a security camera.

Type: object Properties: 7
Access ControlAutomationHome SecurityIoTMonitoringSecuritySmart HomeFortune 1000

VideoClip is a JSON Structure definition published by ADT, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id cameraId startTime endTime trigger downloadUrl thumbnailUrl

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adt/refs/heads/main/json-structure/platform-api-video-clip-structure.json",
  "name": "VideoClip",
  "description": "A recorded video clip from a security camera.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the video clip.",
      "example": "clip-001"
    },
    "cameraId": {
      "type": "string",
      "description": "ID of the camera that recorded the clip.",
      "example": "dev-cam-001"
    },
    "startTime": {
      "type": "datetime",
      "description": "Start timestamp of the recording.",
      "example": "2025-03-15T14:30:00Z"
    },
    "endTime": {
      "type": "datetime",
      "description": "End timestamp of the recording.",
      "example": "2025-03-15T14:31:00Z"
    },
    "trigger": {
      "type": "string",
      "description": "What triggered the recording.",
      "enum": [
        "motion",
        "alarm",
        "manual",
        "schedule"
      ],
      "example": "motion"
    },
    "downloadUrl": {
      "type": "uri",
      "description": "Pre-signed URL to download the video clip.",
      "example": "https://media.adt.com/clips/clip-001.mp4"
    },
    "thumbnailUrl": {
      "type": "uri",
      "description": "URL of the clip thumbnail image.",
      "example": "https://media.adt.com/thumbnails/clip-001.jpg"
    }
  }
}