{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeartifact/refs/heads/main/json-schema/codeartifact-package-version-description-schema.json", "title": "PackageVersionDescription", "description": " Details about a package version. ", "type": "object", "properties": { "format": { "allOf": [ { "$ref": "#/components/schemas/PackageFormat" }, { "description": " The format of the package version. " } ] }, "namespace": { "allOf": [ { "$ref": "#/components/schemas/PackageNamespace" }, { "description": "

The namespace of the package version. The package version component that specifies its namespace depends on its type. For example:

" } ] }, "packageName": { "allOf": [ { "$ref": "#/components/schemas/PackageName" }, { "description": " The name of the requested package. " } ] }, "displayName": { "allOf": [ { "$ref": "#/components/schemas/String255" }, { "description": " The name of the package that is displayed. The displayName varies depending on the package version's format. For example, if an npm package is named ui, is in the namespace vue, and has the format npm, then the displayName is @vue/ui. " } ] }, "version": { "allOf": [ { "$ref": "#/components/schemas/PackageVersion" }, { "description": " The version of the package. " } ] }, "summary": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": " A summary of the package version. The summary is extracted from the package. The information in and detail level of the summary depends on the package version's format. " } ] }, "homePage": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": " The homepage associated with the package. " } ] }, "sourceCodeRepository": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": " The repository for the source code in the package version, or the source code used to build it. " } ] }, "publishedTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": " A timestamp that contains the date and time the package version was published. " } ] }, "licenses": { "allOf": [ { "$ref": "#/components/schemas/LicenseInfoList" }, { "description": " Information about licenses associated with the package version. " } ] }, "revision": { "allOf": [ { "$ref": "#/components/schemas/PackageVersionRevision" }, { "description": " The revision of the package version. " } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/PackageVersionStatus" }, { "description": " A string that contains the status of the package version. " } ] }, "origin": { "allOf": [ { "$ref": "#/components/schemas/PackageVersionOrigin" }, { "description": "A PackageVersionOrigin object that contains information about how the package version was added to the repository." } ] } } }