Skip to content

Privacy and Terms Data Files

Andrew Salib edited this page Nov 10, 2017 · 1 revision

Privacy and Terms Data Files

Description

These files contain content required for the privacy and terms pages separately. Their format is exactly the same.

Properties

  • title: The title of the page up top.
  • subtitle: The text beneath the title.
  • sections: Contains a list of Section Objects.

Section Object

An object that contains data for a section on its own. You can add as many sections as needed.

Properties

  • text: A list of text that will be shown in the order specified. Each item is a paragraph on its own.
  • heading: Optional, will show a heading for the section if present.
  • list: Contains a list of text. Will show the text as an actual list on the page.

Example

{
  heading: 'Using Your Personal Information',
  text: [
    `Personal information submitted to us via this website will be used for the purposes specified in this privacy policy or in relevant parts of the website.
    We collect data through Amazon Web Services and use SSL encryption technology. We may use your personal information to:`
  ],
  list: [
    'Administer the website',
    'Improve your browsing experience by personalising the website',
    'Enable your use of the services available on the website including free tests and profiles',
    'Provide you with the Products and other services requested via the website',
    'Send you general (non-marketing) commercial communications',
    'Send you email notifications which you have specifically requested',
    `Send you our newsletter and other marketing communications relating to our business which we think may be of interest to you, by post or, where you have specifically agreed to this,
    by email or similar technology (and you can inform us at any time if you no longer require marketing communications)`,
    `Provide third parties with statistical information about our users –
    but this information will not be used to identify any individual user;`,
    'Deal with enquiries and complaints made by or about you relating to the website',
    'Keep the website secure',
    'Conduct analysis and research to improve our services',
    `Generate and display aggregate data regarding your habits,
    attitudes or other preferences that you choose to share with us (e.g. in our mini-test or research sections)`,
    `Verify compliance with the terms and conditions governing the use of the website`
  ]
}

The section above will show a heading, then one paragraph of text, followed by a list of things.