summaryrefslogtreecommitdiff
path: root/spec/fixtures/schema/v2.0_dependency.json
blob: fcd96d74dbc08c35146ad505af58e8220f0d18fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  "type": "array",
  "required": [
    "name",
    "url",
    "description",
    "paths",
    "licenses"
  ],
  "properties": {
    "name": { "type": "string" },
    "url": { "type": "uri" },
    "description": { "type": "string" },
    "paths": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "licenses": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}