ThreatAssessmentScore

ThreatAssessmentScore
Threat Assessment Score

Threat assessment score with hierarchical structure: ThreatAssessmentScore SegmentationScore -> feature_scores[] (e.g., NTA, NDR, IDPS) -> category_scores[] (e.g., IDPS_ENVIRONMENT_PAIR_COVERAGE, NTA_DETECTOR_ACTIVATION) -> sub_category_scores[] (e.g., IDPS_SIGNATURE_COVERAGE, IDPS_ACTION_SCORE)

AllOf
This class requires all of the following:
JSON Example
{
    "score_type": "string",
    "total_score": "number",
    "total_score_for_display": "number",
    "last_calculated_on": "number",
    "feature_scores": [
        {
            "feature_type": "string",
            "score": "number",
            "max_score": "number",
            "category_scores": [
                {
                    "category_type": "string",
                    "score": "number",
                    "max_score": "number",
                    "sub_category_scores": [
                        {
                            "score": "number",
                            "max_score": "number",
                            "sub_category_type": "string"
                        }
                    ]
                }
            ]
        }
    ]
}