BroadcastFrequencySpecification
BroadcastFrequencySpecification describes the over-the-air coordinates of a broadcast: the MHz frequency, the modulation format (FM / AM / ATSC / DVB-T), and any digital subchannel (PBS 10.1, 10.2, 10.3). It attaches to BroadcastChannel via broadcastFrequency.
Full example of schema.org/BroadcastFrequencySpecification json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "RadioChannel",
"name": "WXOO 89.5",
"alternateName": "Dunmore Community Radio",
"broadcastFrequency": {
"@type": "BroadcastFrequencySpecification",
"broadcastFrequencyValue": {
"@type": "QuantitativeValue",
"value": 89.5,
"unitCode": "MHZ"
},
"broadcastSignalModulation": "FM"
},
"broadcastServiceTier": "Local",
"inBroadcastLineup": {
"@type": "CableOrSatelliteService",
"name": "Lackawanna Community Broadcasting"
}
}
</script>Direct properties (3)
broadcastFrequencyValue: the center frequency as a QuantitativeValue or a bare Number in MHz.broadcastSignalModulation:FM,AM,ATSC,DVB-T,ISDB-T, as QualitativeValue or Text.broadcastSubChannel: digital TV subchannel identifier (10.1,10.2).
Minimal valid version
The smallest markup that still produces a valid BroadcastFrequencySpecification entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BroadcastFrequencySpecification",
"broadcastFrequencyValue": 89.5,
"broadcastSignalModulation": "FM"
}
</script>Google rich results this unlocks
Markup matching this example makes your page eligible for the following Google Search rich results. The primary target drives the required / recommended property classification in the advanced code block above.
- Google docsNo dedicated rich result (feeds broadcast-lineup / station lookup)
Common BroadcastFrequencySpecification mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
Frequency without unit
Wrong"broadcastFrequencyValue": 89.5 with no MHz contextRightQuantitativeValue with unitCode: "MHZ"The bare number could be Hz, kHz, or MHz — the unit is load-bearing.
- 02
broadcastSignalModulation as lowercase
Wrong"broadcastSignalModulation": "fm"Right"broadcastSignalModulation": "FM"Standard-compliant modulation strings are uppercase (FM / AM / ATSC).
- 03
Subchannel as a range
Wrong"broadcastSubChannel": "10.1-10.3"RightSeparate BroadcastFrequencySpecification per subchannelEach subchannel is its own logical channel; collapsing them loses guide data.
Schema properties in this example
About the example data
WXOO 89.5 FM — the Dunmore community radio station broadcasting at 89.5 MHz FM, with no subchannels.
Comments
Loading comments...