summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/graphql/packages/package_composer_metadata.json
blob: db9b25889be7bb03c136ed6f385453209b8ac822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "type": "object",
  "additionalProperties": false,
  "required": ["targetSha", "composerJson"],
  "properties": {
    "targetSha": {
      "type": "string"
    },
    "composerJson": {
      "type": "object",
      "additionalProperties": false,
      "required": ["name", "type", "license", "version"],
      "properties": {
        "name": { "type": "string" },
        "type": { "type": "string" },
        "license": { "type": "string" },
        "version": { "type": "string" }
      }
    }
  }
}