{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-structure/openapi-describe-packages-request-structure.json",
"name": "DescribePackagesRequest",
"description": " Container for request parameters to DescribePackage operation. ",
"type": "object",
"properties": {
"Filters": {
"allOf": [
{
"$ref": "#/components/schemas/DescribePackagesFilterList"
},
{
"description": "Only returns packages that match the DescribePackagesFilterList values."
}
]
},
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/MaxResults"
},
{
"description": "Limits results to a maximum number of packages."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page."
}
]
}
}
}