-
Notifications
You must be signed in to change notification settings - Fork 44
0.10.4 Release Notes
Jodie Burnett edited this page Nov 6, 2019
·
4 revisions
A new geo
object is now available for the content_restrictions
trait.
{
"type": "video",
"version": "0.10.4",
"content_restrictions": {
"geo": {
"restrictions": [{
"restriction_id": "abcdefghijklmnopqrstuv"
}]
}
}
}
Link lists now support text elements in addition to interstitial links.
{
"type": "link_list",
"title": "Link List Title Example",
"additional_properties: {...},
"items": [
{
"type": "interstitial_link",
"content": "The title to my link",
"url": "www.google.com"
},
{
"type": "text",
"content": "This is just a text element that's part of a link list. It won't link anywhere."
}
]
}