generated from coulomb/repo-seed
Add report fragments and export manifest
This commit is contained in:
36
docs/schemas/export-manifest.schema.json
Normal file
36
docs/schemas/export-manifest.schema.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "Guide Board Export Manifest",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"id",
|
||||
"schema_version",
|
||||
"export_type",
|
||||
"run_id",
|
||||
"created_at",
|
||||
"source_package_ref",
|
||||
"source_lock_ref",
|
||||
"summary",
|
||||
"policy_summary",
|
||||
"mapping_summary",
|
||||
"report_fragments",
|
||||
"counts",
|
||||
"certification_boundary"
|
||||
],
|
||||
"properties": {
|
||||
"id": { "type": "string" },
|
||||
"schema_version": { "type": "string" },
|
||||
"export_type": { "type": "string" },
|
||||
"run_id": { "type": "string" },
|
||||
"created_at": { "type": "string" },
|
||||
"source_package_ref": { "type": "string" },
|
||||
"source_lock_ref": { "type": "string" },
|
||||
"summary": { "type": "object" },
|
||||
"policy_summary": { "type": "object" },
|
||||
"mapping_summary": { "type": "object" },
|
||||
"report_fragments": { "type": "array", "items": { "type": "object" } },
|
||||
"counts": { "type": "object" },
|
||||
"certification_boundary": { "type": "string" }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user