Privacy | Firebolt

Privacy Schema


Version 0.1.0-alpha.4

JSON-Schema

This document was generated from a JSON-Schema, and is intended to provide a human readable overview and examples of the methods contained in the module.

For the full schema, see the link below.

Schema
privacy.json

Table of Contents

Schemas

ContentPolicy

type ContentPolicy = {
  enableRecommendations: boolean    // Whether or not to the user has enabled history-based recommendations
  shareWatchHistory: boolean        // Whether or not the user has enabled app watch history data to be shared with the platform
  rememberWatchedPrograms: boolean  // Whether or not the user has enabled watch history
}
Examples
{
  "enableRecommendations": true,
  "shareWatchHistory": false,
  "rememberWatchedPrograms": true
}

Go To Top