{ "$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-simple-scope-term-schema.json", "title": "SimpleScopeTerm", "description": "Specifies a property-based condition that determines whether an S3 object is included or excluded from a classification job.", "type": "object", "properties": { "comparator": { "allOf": [ { "$ref": "#/components/schemas/JobComparator" }, { "description": "

The operator to use in the condition. Valid values for each supported property (key) are:

" } ] }, "key": { "allOf": [ { "$ref": "#/components/schemas/ScopeFilterKey" }, { "description": "The object property to use in the condition." } ] }, "values": { "allOf": [ { "$ref": "#/components/schemas/__listOf__string" }, { "description": "

An array that lists the values to use in the condition. If the value for the key property is OBJECT_EXTENSION or OBJECT_KEY, this array can specify multiple values and Amazon Macie uses OR logic to join the values. Otherwise, this array can specify only one value.

Valid values for each supported property (key) are:

Macie doesn't support use of wildcard characters in these values. Also, string values are case sensitive.

" } ] } } }