{ "$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-scoping-schema.json", "title": "Scoping", "description": "Specifies one or more property- and tag-based conditions that define criteria for including or excluding S3 objects from a classification job. Exclude conditions take precedence over include conditions.", "type": "object", "properties": { "excludes": { "allOf": [ { "$ref": "#/components/schemas/JobScopingBlock" }, { "description": "The property- and tag-based conditions that determine which objects to exclude from the analysis." } ] }, "includes": { "allOf": [ { "$ref": "#/components/schemas/JobScopingBlock" }, { "description": "The property- and tag-based conditions that determine which objects to include in the analysis." } ] } } }