Amazon Macie · JSON Structure

Amazon Macie Severity Structure

Provides the numerical and qualitative representations of a finding's severity.

Type: object Properties: 2
Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

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

Properties

description score

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-severity-structure.json",
  "name": "Severity",
  "description": "Provides the numerical and qualitative representations of a finding's severity.",
  "type": "object",
  "properties": {
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SeverityDescription"
        },
        {
          "description": "The qualitative representation of the finding's severity, ranging from Low (least severe) to High (most severe)."
        }
      ]
    },
    "score": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The numerical representation of the finding's severity, ranging from 1 (least severe) to 3 (most severe)."
        }
      ]
    }
  }
}