{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeartifact/refs/heads/main/json-structure/codeartifact-list-package-versions-result-structure.json", "name": "ListPackageVersionsResult", "description": "ListPackageVersionsResult schema from Amazon CodeArtifact API", "type": "object", "properties": { "defaultDisplayVersion": { "allOf": [ { "$ref": "#/components/schemas/PackageVersion" }, { "description": "

The default package version to display. This depends on the package format:

" } ] }, "namespace": { "allOf": [ { "$ref": "#/components/schemas/PackageNamespace" }, { "description": "

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

" } ] }, "package": { "allOf": [ { "$ref": "#/components/schemas/PackageName" }, { "description": " The name of the package. " } ] }, "versions": { "allOf": [ { "$ref": "#/components/schemas/PackageVersionSummaryList" }, { "description": " The returned list of PackageVersionSummary objects. " } ] }, "nextToken": { "allOf": [ { "$ref": "#/components/schemas/PaginationToken" }, { "description": " If there are additional results, this is the token for the next set of results. " } ] } } }