summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/packages/nuget/dependency_group.json
blob: 87dc2794b61bcdbc91c7ab804b896ce56d648db2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "type": "object",
  "required": ["@id", "@type", "dependencies"],
  "properties": {
    "@id": { "type": "string" },
    "@type": { "const": "PackageDependencyGroup" },
    "targetFramework": { "type": "string" },
    "dependencies": {
      "type": "array",
      "items": {
        "type": "object",
        "required": ["@id", "@type", "id", "range"],
        "properties": {
          "@id": { "type": "string" },
          "@type": { "const": "PackageDependency" },
          "id": { "type": "string" },
          "range": { "type": "string" }
        }
      }
    }
  }
}