{ "$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-criterion-for-job-schema.json", "title": "SimpleCriterionForJob", "description": "Specifies a property-based condition that determines whether an S3 bucket 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 are EQ (equals) and NE (not equals)." } ] }, "key": { "allOf": [ { "$ref": "#/components/schemas/SimpleCriterionKeyForJob" }, { "description": "The property to use in the condition." } ] }, "values": { "allOf": [ { "$ref": "#/components/schemas/__listOf__string" }, { "description": "

An array that lists one or more values to use in the condition. If you specify multiple values, Amazon Macie uses OR logic to join the values. Valid values for each supported property (key) are:

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

" } ] } } }