Timing

Information about when jobs are submitted, started, and finished is specified in Unix epoch format in seconds.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
FinishTime object
StartTime object
SubmitTime object
View JSON Schema on GitHub

JSON Schema

mediaconvert-api-timing-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-schema/mediaconvert-api-timing-schema.json",
  "title": "Timing",
  "description": "Information about when jobs are submitted, started, and finished is specified in Unix epoch format in seconds.",
  "type": "object",
  "properties": {
    "FinishTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__timestampUnix"
        },
        {
          "xml": {
            "name": "finishTime"
          },
          "description": "The time, in Unix epoch format, that the transcoding job finished"
        }
      ]
    },
    "StartTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__timestampUnix"
        },
        {
          "xml": {
            "name": "startTime"
          },
          "description": "The time, in Unix epoch format, that transcoding for the job began."
        }
      ]
    },
    "SubmitTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__timestampUnix"
        },
        {
          "xml": {
            "name": "submitTime"
          },
          "description": "The time, in Unix epoch format, that you submitted the job."
        }
      ]
    }
  }
}