NuGet · Schema

VersionIndex

A list of all available versions for a package.

Package Management.NETPackagesDependenciesSoftware DistributionRegistry

Properties

Name Type Description
versions array The lowercased, normalized version strings available for download.
View JSON Schema on GitHub

JSON Schema

nuget-versionindex-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VersionIndex",
  "title": "VersionIndex",
  "type": "object",
  "description": "A list of all available versions for a package.",
  "required": [
    "versions"
  ],
  "properties": {
    "versions": {
      "type": "array",
      "description": "The lowercased, normalized version strings available for download.",
      "items": {
        "type": "string"
      }
    }
  }
}