NuGet · Schema

SearchResultVersion

A specific version entry within a search result.

Package Management.NETPackagesDependenciesSoftware DistributionRegistry

Properties

Name Type Description
@id string The absolute URL to the associated registration leaf.
version string The full SemVer 2.0.0 version string.
downloads integer The number of downloads for this specific version.
View JSON Schema on GitHub

JSON Schema

nuget-searchresultversion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchResultVersion",
  "title": "SearchResultVersion",
  "type": "object",
  "description": "A specific version entry within a search result.",
  "required": [
    "@id",
    "version",
    "downloads"
  ],
  "properties": {
    "@id": {
      "type": "string",
      "format": "uri",
      "description": "The absolute URL to the associated registration leaf."
    },
    "version": {
      "type": "string",
      "description": "The full SemVer 2.0.0 version string."
    },
    "downloads": {
      "type": "integer",
      "description": "The number of downloads for this specific version."
    }
  }
}