Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package_composer_metadata.json « packages « graphql « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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" }
      }
    }
  }
}