{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeartifact/refs/heads/main/json-structure/codeartifact-delete-package-versions-request-structure.json", "name": "DeletePackageVersionsRequest", "description": "DeletePackageVersionsRequest schema from Amazon CodeArtifact API", "type": "object", "properties": { "versions": { "allOf": [ { "$ref": "#/components/schemas/PackageVersionList" }, { "description": " An array of strings that specify the versions of the package to delete. " } ] }, "expectedStatus": { "allOf": [ { "$ref": "#/components/schemas/PackageVersionStatus" }, { "description": " The expected status of the package version to delete. " } ] } }, "required": [ "versions" ] }