{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-macie/refs/heads/main/json-schema/amazon-macie-get-sensitivity-inspection-template-response-schema.json", "title": "GetSensitivityInspectionTemplateResponse", "description": "GetSensitivityInspectionTemplateResponse schema from Amazon Macie API", "type": "object", "properties": { "description": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "The custom description of the template." } ] }, "excludes": { "allOf": [ { "$ref": "#/components/schemas/SensitivityInspectionTemplateExcludes" }, { "description": "
The managed data identifiers that are explicitly excluded (not used) when analyzing data.
" } ] }, "includes": { "allOf": [ { "$ref": "#/components/schemas/SensitivityInspectionTemplateIncludes" }, { "description": "The allow lists, custom data identifiers, and managed data identifiers that are included (used) when analyzing data." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "The name of the template: automated-sensitive-data-discovery." } ] }, "sensitivityInspectionTemplateId": { "allOf": [ { "$ref": "#/components/schemas/SensitivityInspectionTemplateId" }, { "description": "The unique identifier for the template." } ] } } }