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

package_conan_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: 31bb861ced506543ead774573b277ab55201a262 (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
{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "id",
    "createdAt",
    "updatedAt",
    "packageUsername",
    "packageChannel",
    "recipe",
    "recipePath",
    "packageName"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    },
    "package_username": {
      "type": "string"
    },
    "package_channel": {
      "type": "string"
    },
    "recipe": {
      "type": "string"
    },
    "recipe_path": {
      "type": "string"
    }
  }
}