{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-batch-get-blueprints-request-schema.json",
"title": "BatchGetBlueprintsRequest",
"description": "BatchGetBlueprintsRequest schema from Amazon Glue API",
"type": "object",
"properties": {
"Names": {
"allOf": [
{
"$ref": "#/components/schemas/BatchGetBlueprintNames"
},
{
"description": "A list of blueprint names."
}
]
},
"IncludeBlueprint": {
"allOf": [
{
"$ref": "#/components/schemas/NullableBoolean"
},
{
"description": "Specifies whether or not to include the blueprint in the response."
}
]
},
"IncludeParameterSpec": {
"allOf": [
{
"$ref": "#/components/schemas/NullableBoolean"
},
{
"description": "Specifies whether or not to include the parameters, as a JSON string, for the blueprint in the response."
}
]
}
},
"required": [
"Names"
]
}