generated from coulomb/repo-seed
http service with health, extension listing, profile validation, run planning, async run jobs, job inspection, and report retrieval
This commit is contained in:
65
docs/schemas/evidence-request-set.schema.json
Normal file
65
docs/schemas/evidence-request-set.schema.json
Normal 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" }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user