{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeartifact/refs/heads/main/json-schema/codeartifact-publish-package-version-result-schema.json",
"title": "PublishPackageVersionResult",
"description": "PublishPackageVersionResult schema from Amazon CodeArtifact API",
"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."
}
]
},
"package": {
"allOf": [
{
"$ref": "#/components/schemas/PackageName"
},
{
"description": "The name of the package."
}
]
},
"version": {
"allOf": [
{
"$ref": "#/components/schemas/PackageVersion"
},
{
"description": "The version of the package."
}
]
},
"versionRevision": {
"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. For more information, see Package version status in the CodeArtifact User Guide."
}
]
},
"asset": {
"allOf": [
{
"$ref": "#/components/schemas/AssetSummary"
},
{
"description": "An AssetSummary for the published asset."
}
]
}
}
}