summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/packages/terraform/modules/v1/single_version.json
blob: 689b9427f38f093872a6ee155ae46d0b3097227f (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
  "type": "object",
  "required": [
    "name",
    "provider",
    "providers",
    "root",
    "source",
    "submodules",
    "version",
    "versions"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "provider": {
      "type": "string"
    },
    "providers": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "root": {
      "type": "object",
      "required": [
        "dependencies"
      ],
      "properties": {
        "dependencies": {
          "type": "array",
          "maxItems": 0
        }
      }
    },
    "source": {
      "type": "string"
    },
    "submodules": {
      "type": "array",
      "maxItems": 0
    },
    "version": {
      "type": "string"
    },
    "versions": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}