| { |
| "$schema": "https://json-schema.org/draft/2020-12/schema", |
| "$id": "https://schemas.datapan.dev/datapan.coverage.v1.schema.json", |
| "title": "Datapan Coverage Report v1", |
| "description": "Claim-oriented registry coverage, adapter coverage, and verification evidence gaps.", |
| "type": "object", |
| "additionalProperties": false, |
| "required": ["generated_at", "provider", "summary", "goals", "evidence", "route_evidence", "gaps", "adapters", "next"], |
| "properties": { |
| "generated_at": { "type": "string", "format": "date-time" }, |
| "provider": { "type": "string", "minLength": 1 }, |
| "registry": { "type": "string" }, |
| "source": { "type": "string" }, |
| "verification": { "type": "string" }, |
| "route_disposition": { "type": "string" }, |
| "summary": { "$ref": "#/$defs/summary" }, |
| "goals": { "$ref": "#/$defs/goals" }, |
| "evidence": { "$ref": "#/$defs/evidence" }, |
| "route_evidence": { "$ref": "#/$defs/route_evidence" }, |
| "gaps": { "$ref": "#/$defs/gaps" }, |
| "adapters": { "type": "object" }, |
| "next": { |
| "type": "array", |
| "items": { "$ref": "#/$defs/next" } |
| } |
| }, |
| "$defs": { |
| "count": { "type": "integer", "minimum": 0 }, |
| "percent": { "type": "number", "minimum": 0, "maximum": 100 }, |
| "summary": { |
| "type": "object", |
| "additionalProperties": false, |
| "required": [ |
| "specs", |
| "operations", |
| "callable_operations", |
| "callable_operation_percent", |
| "data_go_kr_gateway_operations", |
| "external_endpoint_operations", |
| "registered_adapter_operations", |
| "missing_adapter_operations", |
| "external_adapter_coverage_percent", |
| "approval_required_operations", |
| "no_endpoint_operations", |
| "service_root_operations", |
| "unsupported_protocol_operations", |
| "registered_adapter_hosts", |
| "missing_adapter_hosts", |
| "adapter_count", |
| "call_capable_adapters", |
| "provider_split_ready" |
| ], |
| "properties": { |
| "specs": { "$ref": "#/$defs/count" }, |
| "operations": { "$ref": "#/$defs/count" }, |
| "callable_operations": { "$ref": "#/$defs/count" }, |
| "callable_operation_percent": { "$ref": "#/$defs/percent" }, |
| "data_go_kr_gateway_operations": { "$ref": "#/$defs/count" }, |
| "external_endpoint_operations": { "$ref": "#/$defs/count" }, |
| "registered_adapter_operations": { "$ref": "#/$defs/count" }, |
| "missing_adapter_operations": { "$ref": "#/$defs/count" }, |
| "external_adapter_coverage_percent": { "$ref": "#/$defs/percent" }, |
| "approval_required_operations": { "$ref": "#/$defs/count" }, |
| "no_endpoint_operations": { "$ref": "#/$defs/count" }, |
| "service_root_operations": { "$ref": "#/$defs/count" }, |
| "unsupported_protocol_operations": { "$ref": "#/$defs/count" }, |
| "registered_adapter_hosts": { "$ref": "#/$defs/count" }, |
| "missing_adapter_hosts": { "$ref": "#/$defs/count" }, |
| "adapter_count": { "$ref": "#/$defs/count" }, |
| "call_capable_adapters": { "$ref": "#/$defs/count" }, |
| "provider_split_ready": { "type": "boolean" } |
| } |
| }, |
| "evidence": { |
| "type": "object", |
| "additionalProperties": false, |
| "required": [ |
| "present", |
| "total", |
| "verified", |
| "failed", |
| "skipped", |
| "unknown", |
| "verified_percent", |
| "evidence_operation_percent" |
| ], |
| "properties": { |
| "present": { "type": "boolean" }, |
| "generated_at": { "type": "string", "format": "date-time" }, |
| "timeout": { "type": "string" }, |
| "total": { "$ref": "#/$defs/count" }, |
| "verified": { "$ref": "#/$defs/count" }, |
| "failed": { "$ref": "#/$defs/count" }, |
| "skipped": { "$ref": "#/$defs/count" }, |
| "unknown": { "$ref": "#/$defs/count" }, |
| "verified_percent": { "$ref": "#/$defs/percent" }, |
| "evidence_operation_percent": { "$ref": "#/$defs/percent" } |
| } |
| }, |
| "goals": { |
| "type": "object", |
| "additionalProperties": false, |
| "required": [ |
| "callable_operation_percent_target", |
| "callable_operation_percent_met", |
| "external_adapter_coverage_percent_target", |
| "external_adapter_coverage_percent_met", |
| "evidence_operation_percent_target", |
| "evidence_operation_percent_met", |
| "missing_adapter_operations_target", |
| "missing_adapter_operations_met", |
| "call_capable_adapters_target", |
| "call_capable_adapters_met", |
| "provider_split_ready_target", |
| "provider_split_ready_met" |
| ], |
| "properties": { |
| "callable_operation_percent_target": { "$ref": "#/$defs/percent" }, |
| "callable_operation_percent_met": { "type": "boolean" }, |
| "external_adapter_coverage_percent_target": { "$ref": "#/$defs/percent" }, |
| "external_adapter_coverage_percent_met": { "type": "boolean" }, |
| "evidence_operation_percent_target": { "$ref": "#/$defs/percent" }, |
| "evidence_operation_percent_met": { "type": "boolean" }, |
| "missing_adapter_operations_target": { "$ref": "#/$defs/count" }, |
| "missing_adapter_operations_met": { "type": "boolean" }, |
| "call_capable_adapters_target": { "$ref": "#/$defs/count" }, |
| "call_capable_adapters_met": { "type": "boolean" }, |
| "provider_split_ready_target": { "type": "boolean" }, |
| "provider_split_ready_met": { "type": "boolean" } |
| } |
| }, |
| "route_evidence": { |
| "type": "object", |
| "additionalProperties": false, |
| "required": [ |
| "present", |
| "routes_total", |
| "with_probe_evidence", |
| "dead_route_candidates", |
| "transient_failures", |
| "parameter_blocked_routes", |
| "remaining_adapter_candidates", |
| "raw_missing_adapter_operations", |
| "evidence_adjusted_adapter_candidates" |
| ], |
| "properties": { |
| "present": { "type": "boolean" }, |
| "report": { "type": "string" }, |
| "routes_total": { "$ref": "#/$defs/count" }, |
| "with_probe_evidence": { "$ref": "#/$defs/count" }, |
| "dead_route_candidates": { "$ref": "#/$defs/count" }, |
| "transient_failures": { "$ref": "#/$defs/count" }, |
| "parameter_blocked_routes": { "$ref": "#/$defs/count" }, |
| "remaining_adapter_candidates": { "$ref": "#/$defs/count" }, |
| "raw_missing_adapter_operations": { "$ref": "#/$defs/count" }, |
| "evidence_adjusted_adapter_candidates": { "$ref": "#/$defs/count" } |
| } |
| }, |
| "gaps": { |
| "type": "object", |
| "additionalProperties": false, |
| "properties": { |
| "missing_adapter_hosts": { |
| "type": "array", |
| "items": { "type": "object" } |
| }, |
| "adapter_hosts": { |
| "type": "array", |
| "items": { "type": "object" } |
| } |
| } |
| }, |
| "next": { |
| "type": "object", |
| "additionalProperties": false, |
| "required": ["label", "command"], |
| "properties": { |
| "label": { "type": "string", "minLength": 1 }, |
| "command": { "type": "string", "minLength": 1 } |
| } |
| } |
| } |
| } |
|
|