Amazon Macie · Schema

ClassificationDetails

Provides information about a sensitive data finding and the details of the finding.

Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

Properties

Name Type Description
detailedResultsLocation object
jobArn object
jobId object
originType object
result object
View JSON Schema on GitHub

JSON Schema

amazon-macie-classification-details-schema.json Raw ↑
{
  "$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-classification-details-schema.json",
  "title": "ClassificationDetails",
  "description": "Provides information about a sensitive data finding and the details of the finding.",
  "type": "object",
  "properties": {
    "detailedResultsLocation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The path to the folder or file in Amazon S3 that contains the corresponding sensitive data discovery result for the finding. If a finding applies to a large archive or compressed file, this value is the path to a folder. Otherwise, this value is the path to a file."
        }
      ]
    },
    "jobArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the classification job that produced the finding. This value is null if the origin of the finding (originType) is AUTOMATED_SENSITIVE_DATA_DISCOVERY."
        }
      ]
    },
    "jobId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The unique identifier for the classification job that produced the finding. This value is null if the origin of the finding (originType) is AUTOMATED_SENSITIVE_DATA_DISCOVERY."
        }
      ]
    },
    "originType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OriginType"
        },
        {
          "description": "Specifies how Amazon Macie found the sensitive data that produced the finding. Possible values are: SENSITIVE_DATA_DISCOVERY_JOB, for a classification job; and, AUTOMATED_SENSITIVE_DATA_DISCOVERY, for automated sensitive data discovery."
        }
      ]
    },
    "result": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClassificationResult"
        },
        {
          "description": "The status and other details of the finding."
        }
      ]
    }
  }
}