{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-package-source-schema.json",
"title": "PackageSource",
"description": "The S3 location for importing the package specified as S3BucketName and S3Key",
"type": "object",
"properties": {
"S3BucketName": {
"allOf": [
{
"$ref": "#/components/schemas/S3BucketName"
},
{
"description": "Name of the bucket containing the package."
}
]
},
"S3Key": {
"allOf": [
{
"$ref": "#/components/schemas/S3Key"
},
{
"description": "Key (file name) of the package."
}
]
}
}
}