Skip to content

0.10.4 Release Notes

Jodie Burnett edited this page Nov 6, 2019 · 4 revisions

ANS 0.10.4

Geo Restrictions

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"
      }]
    }
  }
}

Schema: https://github.com/washingtonpost/ans-schema/blob/master/src/main/resources/schema/ans/0.10.4/traits/trait_content_restrictions.json

Linkless Link List

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."
    }
  ]
}

Schema: https://github.com/washingtonpost/ans-schema/blob/master/src/main/resources/schema/ans/0.10.4/story_elements/link_list.json