ListPackagesResult

ListPackagesResult schema from Amazon CodeArtifact API

AmazonArtifact RepositoryPackage ManagementDevOpsSoftware Supply ChainnpmMavenPyPINuGet

Properties

Name Type Description
packages object
nextToken object
View JSON Schema on GitHub

JSON Schema

codeartifact-list-packages-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeartifact/refs/heads/main/json-schema/codeartifact-list-packages-result-schema.json",
  "title": "ListPackagesResult",
  "description": "ListPackagesResult schema from Amazon CodeArtifact API",
  "type": "object",
  "properties": {
    "packages": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PackageSummaryList"
        },
        {
          "description": " The list of returned <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageSummary.html\">PackageSummary</a> objects. "
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": " If there are additional results, this is the token for the next set of results. "
        }
      ]
    }
  }
}