generated from coulomb/repo-seed
29 lines
741 B
JSON
29 lines
741 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "Guide Board Gate Summary",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"id",
|
|
"created_at",
|
|
"trend_summary_ref",
|
|
"status",
|
|
"policy",
|
|
"group_count",
|
|
"passed_groups",
|
|
"failed_groups",
|
|
"groups"
|
|
],
|
|
"properties": {
|
|
"id": { "type": "string" },
|
|
"created_at": { "type": "string" },
|
|
"trend_summary_ref": { "type": "string" },
|
|
"status": { "type": "string" },
|
|
"policy": { "type": "object" },
|
|
"group_count": { "type": "integer" },
|
|
"passed_groups": { "type": "integer" },
|
|
"failed_groups": { "type": "integer" },
|
|
"groups": { "type": "array", "items": { "type": "object" } }
|
|
}
|
|
}
|