tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

base_ping.schema.json (723B)


      1 {
      2  "$schema": "http://json-schema.org/draft-07/schema#",
      3  "$id": "browser/extensions/newtab/test/schemas/base_ping.schema.json",
      4  "title": "Base PingCentre ping",
      5  "type": "object",
      6  "properties": {
      7    "client_id": {
      8      "type": "string"
      9    },
     10    "addon_version": {
     11      "type": "string"
     12    },
     13    "locale": {
     14      "type": "string"
     15    },
     16    "session_id": {
     17      "type": "string"
     18    },
     19    "page": {
     20      "type": ["array", "boolean", "number", "object", "string", "null"],
     21      "enum": ["about:home", "about:newtab", "about:welcome", "both", "unknown"]
     22    },
     23    "user_prefs": {
     24      "type": "integer"
     25    }
     26  },
     27  "required": ["addon_version", "locale", "user_prefs"],
     28  "additionalProperties": true
     29 }