{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-signer/refs/heads/main/json-schema/amazon-signer-signed-object-schema.json",
"title": "SignedObject",
"description": "Points to an S3SignedObject object that contains information about your signed code image.",
"type": "object",
"properties": {
"s3": {
"allOf": [
{
"type": "object",
"properties": {
"bucketName": {
"allOf": [
{
"$ref": "#/components/schemas/BucketName"
},
{
"description": "Name of the S3 bucket."
}
]
},
"key": {
"allOf": [
{
"$ref": "#/components/schemas/Key"
},
{
"description": "Key name that uniquely identifies a signed code image in your bucket."
}
]
}
},
"description": "The S3 bucket name and key where code signing saved your signed code image."
},
{
"description": "The S3SignedObject."
}
]
}
}
}