summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/packages/nuget/service_index.json
blob: 405018f8c3792e2213f7732576ae6be0ca1b9729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "type": "object",
  "required": ["version", "resources"],
  "properties": {
    "version": { "const": "3.0.0" },
    "resources": {
      "type": "array",
      "items": {
        "type": "object",
        "required": ["@id", "@type", "comment"],
        "properties": {
          "@id": { "type": "string" },
          "@type": { "type": "string" },
          "comment": { "type": "string" }
        }
      }
    }
  }
}