Files
guide-board/docs/schemas/evidence-request-set.schema.json

66 lines
2.0 KiB
JSON

{
"$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" }
}
}
}
}
}