{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue-databrew/refs/heads/main/json-schema/glue-databrew-batch-delete-recipe-version-request-schema.json",
"title": "BatchDeleteRecipeVersionRequest",
"description": "BatchDeleteRecipeVersionRequest schema from Amazon Glue DataBrew API",
"type": "object",
"properties": {
"RecipeVersions": {
"allOf": [
{
"$ref": "#/components/schemas/RecipeVersionList"
},
{
"description": "An array of version identifiers, for the recipe versions to be deleted. You can specify numeric versions (X.Y) or LATEST_WORKING. LATEST_PUBLISHED is not supported."
}
]
}
},
"required": [
"RecipeVersions"
]
}