43 lines
1.7 KiB
JSON
43 lines
1.7 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:BroadcastChannel",
|
|
"title": "BroadcastChannel",
|
|
"description": "A unique instance of a BroadcastService on a CableOrSatelliteService lineup.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.",
|
|
"$ref": "schema:Intangible"
|
|
}
|
|
],
|
|
"properties": {
|
|
"broadcastChannelId": {
|
|
"description": "The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number.",
|
|
"type": "string"
|
|
},
|
|
"broadcastFrequency": {
|
|
"description": "The frequency used for over-the-air broadcasts. Numeric values or simple ranges, e.g. 87-99. In addition a shortcut idiom is supported for frequencies of AM and FM radio channels, e.g. \"87 FM\".",
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "$ref": "schema:BroadcastFrequencySpecification" }
|
|
]
|
|
},
|
|
"broadcastServiceTier": {
|
|
"description": "The type of service required to have access to the channel (e.g. Standard or Premium).",
|
|
"type": "string"
|
|
},
|
|
"genre": {
|
|
"description": "Genre of the creative work, broadcast channel or group.",
|
|
"anyOf": [{ "type": "string", "format": "uri" }, { "type": "string" }]
|
|
},
|
|
"inBroadcastLineup": {
|
|
"description": "The CableOrSatelliteService offering the channel.",
|
|
"$ref": "schema:CableOrSatelliteService"
|
|
},
|
|
"providesBroadcastService": {
|
|
"description": "The BroadcastService offered on this channel.",
|
|
"$ref": "schema:BroadcastService"
|
|
}
|
|
}
|
|
}
|