Amazon Macie · JSON Structure

Amazon Macie Classification Details Structure

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

Type: object Properties: 5
Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

ClassificationDetails is a JSON Structure definition published by Amazon Macie, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

detailedResultsLocation jobArn jobId originType result

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-macie/refs/heads/main/json-structure/amazon-macie-classification-details-structure.json",
  "name": "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."
        }
      ]
    }
  }
}