{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-reviewer/refs/heads/main/json-schema/amazon-codeguru-reviewer-s3-repository-schema.json",
"title": "S3Repository",
"description": "Information about a repository in an S3 bucket.",
"type": "object",
"properties": {
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/Name"
},
{
"description": "The name of the repository in the S3 bucket."
}
]
},
"BucketName": {
"allOf": [
{
"$ref": "#/components/schemas/S3BucketName"
},
{
"description": "The name of the S3 bucket used for associating a new S3 repository. It must begin with <code>codeguru-reviewer-</code>. "
}
]
}
},
"required": [
"Name",
"BucketName"
]
}