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

search.json « nuget « packages « v4 « public_api « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74f2913e5b94a3532fd3b1b79d47fe416713b867 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
  "type": "object",
  "required": [
    "totalHits",
    "data"
  ],
  "properties": {
    "totalHits": {
      "type": "integer"
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "@type",
          "authors",
          "id",
          "description",
          "summary",
          "title",
          "totalDownloads",
          "verified",
          "versions"
        ],
        "properties": {
          "@type": {
            "const": "Package"
          },
          "authors": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "totalDownloads": {
            "const": 0
          },
          "verified": {
            "const": true
          },
          "tags": {
            "type": "string"
          },
          "projectUrl": {
            "type": "string"
          },
          "licenseUrl": {
            "type": "string"
          },
          "iconUrl": {
            "type": "string"
          },
          "versions": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "@id",
                "version",
                "downloads"
              ],
              "properties": {
                "@id": {
                  "type": "string"
                },
                "version": {
                  "type": "string"
                },
                "downloads": {
                  "const": 0
                },
                "published": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}