We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
http://schema.org/TelevisionChannel currently doesn't have a property to hold genre
(There might be other Types in Schema.org within Entertainment, Creative forms that could also benefit from having a genre property)
(we have category available on Service http://schema.org/BroadcastService , but that's different )
Use case Examples:
{ "@context":"http://schema.org", "@type":"TelevisionChannel", "name": "ESPN2", "genre": "Sports", "broadcastChannelId":"016", "broadcastServiceTier":"Premium", "inBroadcastLineup":{ "@type":"CableOrSatelliteService", "name": "Comcast", } }
{ "@context":"http://schema.org", "@type":"TelevisionChannel", "name": "MTV HD", "genre": ["Music", "Reality"], "broadcastChannelId":"69", "broadcastServiceTier":"Standard TV", "inBroadcastLineup":{ "@type":"CableOrSatelliteService", "name": "TimeWarner Cable", } }
The text was updated successfully, but these errors were encountered:
+1
We could add the property to BroadcastChannel so RadioChannel could benefit as well.
Sorry, something went wrong.
Sounds good to me.
/cc @rvguha w.r.t. #1063
e5e4585
Queued at http://webschemas.org/docs/releases.html#g1364
No branches or pull requests
http://schema.org/TelevisionChannel currently doesn't have a property to hold genre
(There might be other Types in Schema.org within Entertainment, Creative forms that could also benefit from having a genre property)
(we have category available on Service http://schema.org/BroadcastService , but that's different )
Use case Examples:
{
"@context":"http://schema.org",
"@type":"TelevisionChannel",
"name": "ESPN2",
"genre": "Sports",
"broadcastChannelId":"016",
"broadcastServiceTier":"Premium",
"inBroadcastLineup":{
"@type":"CableOrSatelliteService",
"name": "Comcast",
}
}
{
"@context":"http://schema.org",
"@type":"TelevisionChannel",
"name": "MTV HD",
"genre": ["Music", "Reality"],
"broadcastChannelId":"69",
"broadcastServiceTier":"Standard TV",
"inBroadcastLineup":{
"@type":"CableOrSatelliteService",
"name": "TimeWarner Cable",
}
}
The text was updated successfully, but these errors were encountered: