tor-browser

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

MANIFEST_SCHEMA.json (845B)


      1 {
      2  "$schema":"http://json-schema.org/draft-06/schema#",
      3  "$ref":"#/definitions/File",
      4  "definitions":{
      5    "File":{
      6      "type":"object",
      7      "additionalProperties":false,
      8      "properties":{
      9        "version":{
     10          "type":"integer",
     11          "description":"Schema version of the file.",
     12          "enum":[
     13            1
     14          ]
     15        },
     16        "data":{
     17          "type":"object",
     18          "description":"High level container for the data. Object key is the web-features identifier.",
     19          "additionalProperties":{
     20            "type":"array",
     21            "items":{
     22              "type":"string",
     23              "description":"The url field in tools.manifest.item.URLManifestItem"
     24            }
     25          }
     26        }
     27      },
     28      "required":[
     29        "data",
     30        "version"
     31      ],
     32      "title":"File"
     33    }
     34  }
     35 }