{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediatailor/refs/heads/main/json-schema/mediatailor-api-channel-schema.json",
"title": "Channel",
"description": "The configuration parameters for a channel. For information about MediaTailor channels, see Working with channels in the MediaTailor User Guide.",
"type": "object",
"properties": {
"Arn": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The ARN of the channel."
}
]
},
"ChannelName": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The name of the channel."
}
]
},
"ChannelState": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "Returns the state whether the channel is running or not."
}
]
},
"CreationTime": {
"allOf": [
{
"$ref": "#/components/schemas/__timestampUnix"
},
{
"description": "The timestamp of when the channel was created."
}
]
},
"FillerSlate": {
"allOf": [
{
"$ref": "#/components/schemas/SlateSource"
},
{
"description": "The slate used to fill gaps between programs in the schedule. You must configure filler slate if your channel uses the LINEAR PlaybackMode. MediaTailor doesn't support filler slate for channels using the LOOP PlaybackMode."
}
]
},
"LastModifiedTime": {
"allOf": [
{
"$ref": "#/components/schemas/__timestampUnix"
},
{
"description": "The timestamp of when the channel was last modified."
}
]
},
"LogConfiguration": {
"allOf": [
{
"$ref": "#/components/schemas/LogConfigurationForChannel"
},
{
"description": "The log configuration."
}
]
},
"Outputs": {
"allOf": [
{
"$ref": "#/components/schemas/ResponseOutputs"
},
{
"description": "The channel's output properties."
}
]
},
"PlaybackMode": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "
The type of playback mode for this channel.
LINEAR - Programs play back-to-back only once.
LOOP - Programs play back-to-back in an endless loop. When the last program in the schedule plays, playback loops back to the first program in the schedule.