NuGet · Schema

PackageType

A package type defined by the package author.

Package Management.NETPackagesDependenciesSoftware DistributionRegistry

Properties

Name Type Description
name string The name of the package type.
View JSON Schema on GitHub

JSON Schema

nuget-packagetype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PackageType",
  "title": "PackageType",
  "type": "object",
  "description": "A package type defined by the package author.",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the package type."
    }
  }
}