NuGet · Schema

CatalogPackageType

A package type specified by the package author.

Package Management.NETPackagesDependenciesSoftware DistributionRegistry

Properties

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

JSON Schema

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