NuGet · Schema

ServiceIndexResource

A resource available on the NuGet package source.

Package Management.NETPackagesDependenciesSoftware DistributionRegistry

Properties

Name Type Description
@id string The URL to the resource.
@type string A string representing the resource type, such as SearchQueryService, RegistrationsBaseUrl, PackageBaseAddress, PackagePublish, or Catalog.
comment string A human-readable description of the resource.
View JSON Schema on GitHub

JSON Schema

nuget-serviceindexresource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceIndexResource",
  "title": "ServiceIndexResource",
  "type": "object",
  "description": "A resource available on the NuGet package source.",
  "required": [
    "@id",
    "@type"
  ],
  "properties": {
    "@id": {
      "type": "string",
      "format": "uri",
      "description": "The URL to the resource."
    },
    "@type": {
      "type": "string",
      "description": "A string representing the resource type, such as SearchQueryService, RegistrationsBaseUrl, PackageBaseAddress, PackagePublish, or Catalog."
    },
    "comment": {
      "type": "string",
      "description": "A human-readable description of the resource."
    }
  }
}