Get a benchmark by its id.
GET/report/benchmark/:benchmark
Get a benchmark by its id.
Request​
Path Parameters
benchmark stringrequired
The ID of the benchmark.
Example: aws_cis_1_5
Responses​
- 200
The benchmark definition.
- application/json
- Schema
- Example (from schema)
Schema
title string
The title of this check collection
description string
The description of this check collection
documentation string
The documentation of this check collection
checks string[]
Ids of checks in this collection
children array
Ids of child collections
id string
The id of this benchmark
framework string
The framework of this benchmark
version string
The version of this benchmark
clouds string[]
The clouds relevant for this benchmark
{
"id": "string",
"framework": "string",
"version": "string",
"clouds": [
"string"
],
"title": "string",
"description": "string",
"documentation": "string",
"checks": [
"string"
],
"children": [
null
]
}
Loading...