-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0304542
commit e06bb30
Showing
7 changed files
with
433 additions
and
77 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
--- | ||
title: Check Result Export Schema | ||
sidebar_label: Check Results | ||
description: Query result schema for the Mondoo JSONL export | ||
--- | ||
|
||
This is the schema Mondoo uses when exporting check result data to JSONL. | ||
|
||
## Result type | ||
|
||
`object` | ||
|
||
## Result properties | ||
|
||
| Property | Type | Required? | Nullable? | | ||
| :----------------------------------- | :------------ | :-------- | :-------- | | ||
| [space_mrn](#space_mrn-property) | `string` | Yes | No | | ||
| [space_id](#space_id-property) | `string` | Yes | No | | ||
| [space_name](#space_name-property) | `string` | Yes | No | | ||
| [asset_id](#asset_id-property) | `string` | Yes | No | | ||
| [asset_mrn](#asset_mrn-property) | `string` | Yes | No | | ||
| [score](#score-property) | Deprecated | | | | ||
| [base_score](#base_score-property) | `integer` | ??? | ??? | | ||
| [risk_score](#risk_score-property) | `integer` | ??? | ??? | | ||
| [status](#status-property) | `string` | Yes | No | | ||
| [modified_at](#modified_at-property) | `string` | Yes | No | | ||
| [failed_at](#failed_at-property) | `string` | ??? | ??? | | ||
|
||
### space_mrn property | ||
|
||
Mondoo identifier for the space containing the asset | ||
|
||
`asset_mrn` | ||
|
||
| Type | Required? | Nullable? | | ||
| :----- | :-------- | :-------- | | ||
| String | Yes | No | | ||
|
||
### space_id property | ||
|
||
Unique identifier for the space containing the asset | ||
|
||
`asset_mrn` | ||
|
||
| Type | Required? | Nullable? | | ||
| :----- | :-------- | :-------- | | ||
| String | Yes | No | | ||
|
||
### space_name property | ||
|
||
Name of the space containing the asset | ||
|
||
`asset_mrn` | ||
|
||
| Type | Required? | Nullable? | | ||
| :----- | :-------- | :-------- | | ||
| String | Yes | No | | ||
|
||
### asset_id property | ||
|
||
Unique identifier for the asset | ||
|
||
`asset_mrn` | ||
|
||
| Type | Required? | Nullable? | | ||
| :----- | :-------- | :-------- | | ||
| String | Yes | No | | ||
|
||
### asset_mrn property | ||
|
||
Mondoo identifier for the asset | ||
|
||
`asset_mrn` | ||
|
||
| Type | Required? | Nullable? | | ||
| :----- | :-------- | :-------- | | ||
| String | Yes | No | | ||
|
||
### score property | ||
|
||
Deprecated: Use `base_score` instead. | ||
|
||
### base_score property | ||
|
||
Asset's score from most recent policy-based scan | ||
|
||
`base_score` | ||
|
||
| Type | Required? | Nullable? | | ||
| :----- | :-------- | :-------- | | ||
| Integer | ??? | ??? | | ||
|
||
### risk_score property | ||
|
||
Asset's risk score | ||
|
||
`risk_score` | ||
|
||
| Type | Required? | Nullable? | | ||
| :----- | :-------- | :-------- | | ||
| Integer | ??? | ??? | | ||
|
||
### modified_at property | ||
|
||
Timestamp from when this check result item was last modified. This is a date-time string matching [RFC 3339, section 5.6](https://tools.ietf.org/html/rfc3339 "check the specification"). | ||
|
||
`modified_at` | ||
|
||
| Type | Required? | Nullable? | | ||
| :----- | :-------- | :-------- | | ||
| String | Yes | No | | ||
|
||
### failed_at property | ||
|
||
Optional timestamp from when this check result item failed This is a date-time string matching [RFC 3339, section 5.6](https://tools.ietf.org/html/rfc3339 "check the specification"). | ||
|
||
`failed_at` | ||
|
||
| Type | Required? | Nullable? | | ||
| :----- | :-------- | :-------- | | ||
| String | ??? | ??? | | ||
|
||
--- |
Oops, something went wrong.