Kaltura · Schema

KalturaRecording

JSON Schema for KalturaRecording from Kaltura OTT API

VideoLive StreamingTranscodingMedia ManagementPlayerAnalyticsVirtual ClassroomOTTOpen Source

Properties

Name Type Description
assetId integer Kaltura unique ID representing the program identifier
createDate integer `readOnly` Specifies when was the recording created. Date and time represented as epoch.
id integer `readOnly` Kaltura unique ID representing the recording identifier
isProtected boolean `readOnly` Specifies whether or not the recording is protected
status string `readOnly` Enum Type: `KalturaRecordingStatus` Recording state: scheduled/recording/recorded/canceled/failed/does_not_exists/deleted
type string `readOnly` Enum Type: `KalturaRecordingType` Recording Type: single/season/series
updateDate integer `readOnly` Specifies when was the recording last updated. Date and time represented as epoch.
viewableUntilDate integer `readOnly` Specifies until when the recording is available for viewing. Date and time represented as epoch.
View JSON Schema on GitHub

JSON Schema

ott-KalturaRecording.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "KalturaRecording",
  "description": "JSON Schema for KalturaRecording from Kaltura OTT API",
  "properties": {
    "assetId": {
      "description": "Kaltura unique ID representing the program identifier",
      "type": "integer"
    },
    "createDate": {
      "description": "`readOnly`\n\nSpecifies when was the recording created. Date and time represented as epoch.",
      "readOnly": true,
      "type": "integer"
    },
    "id": {
      "description": "`readOnly`\n\nKaltura unique ID representing the recording identifier",
      "readOnly": true,
      "type": "integer"
    },
    "isProtected": {
      "description": "`readOnly`\n\nSpecifies whether or not the recording is protected",
      "readOnly": true,
      "type": "boolean"
    },
    "status": {
      "description": "`readOnly`\n\nEnum Type: `KalturaRecordingStatus`\n\nRecording state: scheduled/recording/recorded/canceled/failed/does_not_exists/deleted",
      "enum": [
        "SCHEDULED",
        "RECORDING",
        "RECORDED",
        "CANCELED",
        "FAILED",
        "DELETED"
      ],
      "readOnly": true,
      "type": "string",
      "x-enumLabels": [
        "SCHEDULED",
        "RECORDING",
        "RECORDED",
        "CANCELED",
        "FAILED",
        "DELETED"
      ],
      "x-enumType": "KalturaRecordingStatus"
    },
    "type": {
      "description": "`readOnly`\n\nEnum Type: `KalturaRecordingType`\n\nRecording Type: single/season/series",
      "enum": [
        "SINGLE",
        "SEASON",
        "SERIES"
      ],
      "readOnly": true,
      "type": "string",
      "x-enumLabels": [
        "SINGLE",
        "SEASON",
        "SERIES"
      ],
      "x-enumType": "KalturaRecordingType"
    },
    "updateDate": {
      "description": "`readOnly`\n\nSpecifies when was the recording last updated. Date and time represented as epoch.",
      "readOnly": true,
      "type": "integer"
    },
    "viewableUntilDate": {
      "description": "`readOnly`\n\nSpecifies until when the recording is available for viewing. Date and time represented as epoch.",
      "readOnly": true,
      "type": "integer"
    }
  },
  "type": "object"
}