{
"$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."
}
}
}