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

package_metadata.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: 1244cbe474e8d11f6ecf877b7a4ef01a48e231f9 (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
{
  "type": "object",
  "required": ["@id", "packageContent", "catalogEntry"],
  "properties": {
    "@id": { "type": "string" },
    "packageContent": { "type": "string" },
    "catalogEntry": {
      "type": "object",
      "required": ["@id", "authors", "dependencyGroups", "id", "packageContent", "summary", "version"],
      "properties": {
        "@id": { "type": "string" },
        "authors": { "const": "" },
        "id": { "type": "string" },
        "packageContent": { "type": "string" },
        "summary": { "const": "" },
        "tags": { "type": "string" },
        "projectUrl": { "type": "string" },
        "licenseUrl": { "type": "string" },
        "iconUrl": { "type": "string" },
        "version": { "type": "string" },
        "dependencyGroups": {
          "type": "array",
          "items": { "$ref": "./dependency_group.json" }
        }
      }
    }
  }
}