{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthlake/refs/heads/main/json-schema/healthlake-untag-resource-request-schema.json",
"title": "UntagResourceRequest",
"type": "object",
"required": [
"ResourceARN",
"TagKeys"
],
"properties": {
"ResourceARN": {
"allOf": [
{
"$ref": "#/components/schemas/AmazonResourceName"
},
{
"description": "The Amazon Resource Name(ARN) of the data store for which tags are being removed."
}
]
},
"TagKeys": {
"allOf": [
{
"$ref": "#/components/schemas/TagKeyList"
},
{
"description": " The keys for the tags to be removed from the HealthLake data store. "
}
]
}
}
}