http service with health, extension listing, profile validation, run planning, async run jobs, job inspection, and report retrieval

This commit is contained in:
2026-05-07 22:19:10 +02:00
parent 3ae6fd4140
commit a3ea11139c
12 changed files with 1028 additions and 13 deletions

View File

@@ -0,0 +1,65 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Guide Board Evidence Request Set",
"type": "object",
"additionalProperties": false,
"required": [
"id",
"extension_id",
"framework_refs",
"source_boundary",
"evidence_requests"
],
"properties": {
"id": { "type": "string" },
"extension_id": { "type": "string" },
"framework_refs": { "type": "array", "items": { "type": "string" } },
"source_boundary": {
"type": "object",
"additionalProperties": false,
"required": [
"official_sources",
"interpretation_owner",
"redistribution_policy",
"certification_boundary"
],
"properties": {
"official_sources": { "type": "array", "items": { "type": "string" } },
"interpretation_owner": { "type": "string" },
"redistribution_policy": { "type": "string" },
"certification_boundary": { "type": "string" }
}
},
"evidence_requests": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"id",
"title",
"requirement_refs",
"request_type",
"description",
"requested_artifacts",
"review_roles",
"acceptance_criteria",
"confidentiality",
"renewal"
],
"properties": {
"id": { "type": "string" },
"title": { "type": "string" },
"requirement_refs": { "type": "array", "items": { "type": "string" } },
"request_type": { "type": "string" },
"description": { "type": "string" },
"requested_artifacts": { "type": "array", "items": { "type": "string" } },
"review_roles": { "type": "array", "items": { "type": "string" } },
"acceptance_criteria": { "type": "array", "items": { "type": "string" } },
"confidentiality": { "type": "string" },
"renewal": { "type": "object" }
}
}
}
}
}