summaryrefslogtreecommitdiffstats
path: root/browser/components/pagedata/schemas/document.schema.json
blob: 849010773b8768e45bfa3c9f8ba50ce769c12a35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "document.schema.json",
  "title": "Document",
  "description": "A document of some kind, either viewable or editable",
  "type": "object",
  "properties": {
    "name": {
      "description": "The document's name",
      "type": "string"
    },
    "mimeType": {
      "description": "The document's mimetype",
      "type": "string"
    }
  },
  "required": ["name"]
}