-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into mobile_device
Signed-off-by: Jonathan Rau <139361268+jonrau-at-queryai@users.noreply.github.com>
- Loading branch information
Showing
7 changed files
with
77 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"caption": "Assessment", | ||
"description": "The Assessment object describes a point-in-time assessment, check, or evaluation of a specific configuration or signal against an asset, entity, person, or otherwise. For example, this can encapsulate <code>os_signals</code> from CrowdStrike Falcon Zero Trust Assessments, or account for <code>Datastore</code> configurations from Cyera, or capture details of Microsoft Intune configuration policies.", | ||
"extends": "_entity", | ||
"name": "assessment", | ||
"attributes": { | ||
"category": { | ||
"description": "The category that the assessment is part of. For example: <code>Prevention</code> or <code>Windows 10</code>.", | ||
"requirement": "optional" | ||
}, | ||
"desc": { | ||
"description": "The description of the assessment criteria, or a description of the specific configuration or signal the assessment is targeting.", | ||
"requirement": "recommended" | ||
}, | ||
"meets_criteria": { | ||
"description": "Determines whether the assessment against the specific configuration or signal meets the assessments criteria. For example, if the assessment checks if a <code>Datastore</code> is encrypted or not, having encryption would be evaluated as <code>true</code>.", | ||
"requirement": "required" | ||
}, | ||
"name": { | ||
"description": "The name of the configuration or signal being assessed. For example: <code>Kernel Mode Code Integrity (KMCI)</code> or <code>publicAccessibilityState</code>.", | ||
"requirement": "recommended" | ||
}, | ||
"policy": { | ||
"caption": "Assessment Policy", | ||
"description": "The details of any policy associated with an assessment.", | ||
"requirement": "optional" | ||
}, | ||
"uid": { | ||
"description": "The unique identifier of the configuration or signal being assessed. For example: the <code>signal_id</code>.", | ||
"requirement": "optional" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters