{ "$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-resource-profile-artifact-schema.json", "title": "ResourceProfileArtifact", "description": "Provides information about an S3 object that Amazon Macie selected for analysis while performing automated sensitive data discovery for an S3 bucket, and the status and results of the analysis. This information is available only if automated sensitive data discovery is currently enabled for your account.", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "The Amazon Resource Name (ARN) of the object." } ] }, "classificationResultStatus": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "

The status of the analysis. Possible values are:

" } ] }, "sensitive": { "allOf": [ { "$ref": "#/components/schemas/__boolean" }, { "description": "Specifies whether Amazon Macie found sensitive data in the object." } ] } }, "required": [ "classificationResultStatus", "arn" ] }