NuGet · Schema

CatalogPage

A catalog page containing a collection of catalog items.

Package Management.NETPackagesDependenciesSoftware DistributionRegistry

Properties

Name Type Description
commitId string A unique ID associated with the most recent commit in this page.
commitTimeStamp string A timestamp of the most recent commit in this page.
count integer The number of items in the page.
items array The catalog items in this page.
parent string A URL to the catalog index.
View JSON Schema on GitHub

JSON Schema

nuget-catalogpage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CatalogPage",
  "title": "CatalogPage",
  "type": "object",
  "description": "A catalog page containing a collection of catalog items.",
  "required": [
    "commitId",
    "commitTimeStamp",
    "count",
    "items",
    "parent"
  ],
  "properties": {
    "commitId": {
      "type": "string",
      "description": "A unique ID associated with the most recent commit in this page."
    },
    "commitTimeStamp": {
      "type": "string",
      "format": "date-time",
      "description": "A timestamp of the most recent commit in this page."
    },
    "count": {
      "type": "integer",
      "description": "The number of items in the page."
    },
    "items": {
      "type": "array",
      "description": "The catalog items in this page.",
      "items": {
        "$ref": "#/components/schemas/CatalogItemReference"
      }
    },
    "parent": {
      "type": "string",
      "format": "uri",
      "description": "A URL to the catalog index."
    }
  }
}