percolation-inversion-compiler-ts 0.4.5 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +77 -22
- package/agent-manifest.json +50 -0
- package/dist/alt_lift/index.d.ts +7 -0
- package/dist/alt_lift/index.js +101 -0
- package/dist/bit_engine/index.d.ts +8 -0
- package/dist/bit_engine/index.js +213 -0
- package/dist/cli/main.js +2106 -162
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1611 -16
- package/dist/phase_lab/index.d.ts +26 -0
- package/dist/phase_lab/index.js +1124 -0
- package/dist/sqot_controller/index.d.ts +8 -0
- package/dist/sqot_controller/index.js +141 -0
- package/dist/trc_adapter/index.d.ts +6 -0
- package/dist/trc_adapter/index.js +86 -0
- package/docs/alt-ecpt-lift.md +32 -0
- package/docs/bit-inversion-engine.md +32 -0
- package/docs/cli-reference.md +68 -0
- package/docs/effective-packet-graph.md +35 -0
- package/docs/for-agents.md +44 -0
- package/docs/phase-ecology-lab.md +46 -0
- package/docs/sqot-queue-sovereignty.md +31 -0
- package/docs/threshold-certificates.md +30 -0
- package/docs/trc-trace-adapter.md +30 -0
- package/docs/v050-audit.md +126 -0
- package/examples/alt_lift/alt_ecpt_lift.example.json +27 -0
- package/examples/bit_engine/bottlenecks.example.json +38 -0
- package/examples/bit_engine/inversion_candidates.example.json +55 -0
- package/examples/packet_exchange/packet_envelope.example.json +51 -0
- package/examples/packet_exchange/packet_merge_report.example.json +60 -0
- package/examples/phase_lab/certificate_abstain.example.json +39 -0
- package/examples/phase_lab/closure_report.example.json +41 -0
- package/examples/phase_lab/effective_graph.example.json +112 -0
- package/examples/phase_lab/executable_paths.example.json +20 -0
- package/examples/phase_lab/phase_window_observation.example.json +61 -0
- package/examples/phase_lab/runtime_report_1.json +19 -0
- package/examples/phase_lab/runtime_report_2.json +16 -0
- package/examples/phase_lab/threshold_status.example.json +31 -0
- package/examples/sqot_controller/queue_report.example.json +30 -0
- package/examples/sqot_controller/rebalance_plan.example.json +14 -0
- package/examples/thresholds/asi_proxy_development.json +15 -0
- package/examples/trc_adapter/tool_trace_input.example.json +17 -0
- package/examples/trc_adapter/typed_trace.example.json +64 -0
- package/fixtures/portability_conformance_v050/certificate_abstain.example.json +39 -0
- package/fixtures/portability_conformance_v050/closure_report.example.json +39 -0
- package/fixtures/portability_conformance_v050/effective_graph.example.json +112 -0
- package/fixtures/portability_conformance_v050/executable_paths.example.json +20 -0
- package/fixtures/portability_conformance_v050/manifest.json +55 -0
- package/fixtures/portability_conformance_v050/phase_lab_event_1.json +51 -0
- package/fixtures/portability_conformance_v050/phase_lab_event_2.json +55 -0
- package/fixtures/portability_conformance_v050/phase_window_observation.example.json +61 -0
- package/fixtures/portability_conformance_v050/runtime_report_1.json +19 -0
- package/fixtures/portability_conformance_v050/runtime_report_2.json +14 -0
- package/fixtures/portability_conformance_v050/threshold_status.example.json +29 -0
- package/fixtures/python_v044_cli/agent_autonomy_audit.json +4 -3
- package/fixtures/python_v044_cli/agent_manifest.json +2 -1
- package/fixtures/python_v044_cli/agent_runbook.json +2 -1
- package/fixtures/python_v044_cli/demo_installed_smoke.json +86 -86
- package/fixtures/python_v044_demo/manifest.json +2 -1
- package/fixtures/python_v050_cli/alt_capital_impact.json +30 -0
- package/fixtures/python_v050_cli/alt_ecpt_lift.json +85 -0
- package/fixtures/python_v050_cli/alt_liquidity_to_paths.json +85 -0
- package/fixtures/python_v050_cli/alt_receiver_lift.json +15 -0
- package/fixtures/python_v050_cli/bit_certificate.json +15 -0
- package/fixtures/python_v050_cli/bit_compare_baseline.json +24 -0
- package/fixtures/python_v050_cli/bit_diagnose.json +95 -0
- package/fixtures/python_v050_cli/bit_invert.json +235 -0
- package/fixtures/python_v050_cli/bit_mec.json +18 -0
- package/fixtures/python_v050_cli/ecology_effective_graph.json +178 -0
- package/fixtures/python_v050_cli/ecology_execution_available_paths.json +88 -0
- package/fixtures/python_v050_cli/manifest.json +48 -0
- package/fixtures/python_v050_cli/phase_lab_certify.json +443 -0
- package/fixtures/python_v050_cli/phase_lab_closure.json +85 -0
- package/fixtures/python_v050_cli/phase_lab_compare_window.json +24 -0
- package/fixtures/python_v050_cli/phase_lab_executable_paths.json +88 -0
- package/fixtures/python_v050_cli/phase_lab_graph.json +178 -0
- package/fixtures/python_v050_cli/phase_lab_ingest_1.json +105 -0
- package/fixtures/python_v050_cli/phase_lab_ingest_2.json +109 -0
- package/fixtures/python_v050_cli/phase_lab_init.json +20 -0
- package/fixtures/python_v050_cli/phase_lab_list_windows.json +63 -0
- package/fixtures/python_v050_cli/phase_lab_observe.json +108 -0
- package/fixtures/python_v050_cli/phase_lab_threshold_status.json +164 -0
- package/fixtures/python_v050_cli/sqot_diagnose_queue.json +38 -0
- package/fixtures/python_v050_cli/sqot_quarantine.json +7 -0
- package/fixtures/python_v050_cli/sqot_rebalance.json +19 -0
- package/fixtures/python_v050_cli/sqot_reserve_check.json +20 -0
- package/fixtures/python_v050_cli/sqot_salience_obstruction.json +19 -0
- package/fixtures/python_v050_cli/trc_action_boundary.json +451 -0
- package/fixtures/python_v050_cli/trc_tool_trace.json +221 -0
- package/fixtures/python_v050_cli/trc_trace_adapter.json +221 -0
- package/fixtures/python_v050_demo/asi_proxy_development.json +15 -0
- package/fixtures/python_v050_demo/certificate_abstain.example.json +39 -0
- package/fixtures/python_v050_demo/closure_report.example.json +39 -0
- package/fixtures/python_v050_demo/effective_graph.example.json +112 -0
- package/fixtures/python_v050_demo/executable_paths.example.json +20 -0
- package/fixtures/python_v050_demo/phase_window_observation.example.json +61 -0
- package/fixtures/python_v050_demo/runtime_report_1.json +19 -0
- package/fixtures/python_v050_demo/runtime_report_2.json +14 -0
- package/fixtures/python_v050_demo/threshold_status.example.json +29 -0
- package/fixtures/python_v050_snapshots/manifest.json +39 -0
- package/fixtures/python_v050_snapshots/snapshot_list.json +112 -0
- package/fixtures/python_v050_snapshots/snapshot_routes.json +926 -0
- package/fixtures/python_v050_snapshots/snapshot_show_alt.json +6830 -0
- package/fixtures/python_v050_snapshots/snapshot_show_bit.json +594 -0
- package/fixtures/python_v050_snapshots/snapshot_show_ecpt.json +2894 -0
- package/fixtures/python_v050_snapshots/snapshot_show_sqot.json +2392 -0
- package/fixtures/python_v050_snapshots/snapshot_show_trc.json +3037 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_alt.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_bit.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_ecpt.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_sqot.json +10 -0
- package/fixtures/python_v050_snapshots/snapshot_verify_trc.json +10 -0
- package/package.json +45 -3
- package/schemas/ASIProxyThresholdSpec.schema.json +72 -0
- package/schemas/ASIProxyThresholdStatus.schema.json +512 -0
- package/schemas/ActionBoundaryRequirement.schema.json +28 -0
- package/schemas/ActivationGainEstimate.schema.json +41 -0
- package/schemas/AltEcptLiftReport.schema.json +400 -0
- package/schemas/AltLiftBlocker.schema.json +34 -0
- package/schemas/AttentionBudgetLedger.schema.json +41 -0
- package/schemas/AutocatalyticClosureReport.schema.json +408 -0
- package/schemas/AutocatalyticClosureWitness.schema.json +22 -139
- package/schemas/BasinReachabilityProxy.schema.json +21 -0
- package/schemas/BottleneckClassDiagnosis.schema.json +115 -0
- package/schemas/BottleneckInversionCandidate.schema.json +249 -0
- package/schemas/BottleneckInversionReport.schema.json +499 -0
- package/schemas/CapabilityExpressionPath.schema.json +45 -0
- package/schemas/CapitalToPathContribution.schema.json +53 -0
- package/schemas/ClosureAbstentionReason.schema.json +25 -0
- package/schemas/ClosureCertificateCandidate.schema.json +109 -0
- package/schemas/ClosureDefect.schema.json +28 -0
- package/schemas/ClosureSupportHyperpath.schema.json +44 -0
- package/schemas/CollectivePhaseAbstentionReport.schema.json +591 -0
- package/schemas/CollectivePhaseCertificateCandidate.schema.json +688 -0
- package/schemas/CrossContextTransferWitness.schema.json +46 -0
- package/schemas/DiagnosticReserveReport.schema.json +87 -0
- package/schemas/DownstreamSearchCostDelta.schema.json +46 -0
- package/schemas/EcologyAutocatalyticClosureWitness.schema.json +187 -0
- package/schemas/EffectiveGraphResidualSummary.schema.json +38 -0
- package/schemas/EffectivePacketEdge.schema.json +135 -0
- package/schemas/EffectivePacketEligibility.schema.json +84 -0
- package/schemas/EffectivePacketGraph.schema.json +461 -0
- package/schemas/EffectivePacketGraphBuildReport.schema.json +521 -0
- package/schemas/EffectivePacketNode.schema.json +199 -0
- package/schemas/ExecutableClosureWitness.schema.json +47 -0
- package/schemas/ExecutablePathDensityReport.schema.json +314 -0
- package/schemas/ExecutionAuthorityStatus.schema.json +28 -0
- package/schemas/ExecutionAvailableHyperpath.schema.json +201 -0
- package/schemas/ExecutionPathDefect.schema.json +28 -0
- package/schemas/ExecutionPathWitness.schema.json +44 -0
- package/schemas/FalseLiquidityLoad.schema.json +21 -0
- package/schemas/GeneralIntakePolicy.schema.json +1 -1
- package/schemas/InversionCertificate.schema.json +56 -0
- package/schemas/LiquidityToClosureContribution.schema.json +53 -0
- package/schemas/MinimalEnablingCondition.schema.json +48 -0
- package/schemas/PacketContributionStatus.schema.json +32 -0
- package/schemas/PacketQuarantineDecision.schema.json +50 -0
- package/schemas/PhaseCertificateDefect.schema.json +33 -0
- package/schemas/PhaseComponentObservation.schema.json +39 -0
- package/schemas/PhaseLabEvent.schema.json +123 -0
- package/schemas/PhaseLabExportManifest.schema.json +127 -0
- package/schemas/PhaseLabIngestReport.schema.json +344 -0
- package/schemas/PhaseLabStoreManifest.schema.json +73 -0
- package/schemas/PhaseLabWindowIndex.schema.json +78 -0
- package/schemas/PhaseThresholdStatus.schema.json +51 -0
- package/schemas/PhaseWindow.schema.json +31 -0
- package/schemas/PhaseWindowComparison.schema.json +67 -0
- package/schemas/PhaseWindowObservation.schema.json +353 -0
- package/schemas/PostInversionAuditPlan.schema.json +38 -0
- package/schemas/ProductiveClosureWitness.schema.json +49 -0
- package/schemas/ProvenanceManifest.schema.json +1 -1
- package/schemas/QueueOccupationReport.schema.json +156 -0
- package/schemas/QueueRebalancePlan.schema.json +114 -0
- package/schemas/ReceiverContextSupport.schema.json +23 -0
- package/schemas/ReceiverLiquidityLift.schema.json +58 -0
- package/schemas/ReleaseArtifactManifest.schema.json +1 -1
- package/schemas/ReversibleSalienceSovereigntyCertificate.schema.json +53 -0
- package/schemas/RollbackOrDeactivationPlan.schema.json +38 -0
- package/schemas/SBOMManifest.schema.json +1 -1
- package/schemas/SalienceObstructionDiagnosis.schema.json +55 -0
- package/schemas/SalienceObstructionLoad.schema.json +21 -0
- package/schemas/SemanticEdgeEvidence.schema.json +40 -0
- package/schemas/TraceAdapterReport.schema.json +405 -0
- package/schemas/TraceFrontierDebt.schema.json +43 -0
- package/schemas/TraceNormalForm.schema.json +181 -0
- package/schemas/TraceToleranceLedger.schema.json +29 -0
- package/schemas/TypedActionBoundary.schema.json +58 -0
- package/schemas/TypedAgentTrace.schema.json +328 -0
- package/schemas/TypedToolCallTrace.schema.json +76 -0
- package/schemas/VerificationQueuePressure.schema.json +41 -0
- package/schemas/VerificationThroughputWindow.schema.json +21 -0
- package/schemas/WasteLoad.schema.json +21 -0
- package/schemas/WebFetchPolicy.schema.json +1 -1
- package/schemas/bundle.schema.json +11854 -2075
- package/schemas/index.json +445 -0
- package/schemas/schema-digest.json +733 -289
|
@@ -0,0 +1,461 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$defs": {
|
|
3
|
+
"EffectiveGraphResidualSummary": {
|
|
4
|
+
"description": "Residual summary carried by an effective graph.",
|
|
5
|
+
"properties": {
|
|
6
|
+
"candidate_only_reasons": {
|
|
7
|
+
"items": {
|
|
8
|
+
"type": "string"
|
|
9
|
+
},
|
|
10
|
+
"title": "Candidate Only Reasons",
|
|
11
|
+
"type": "array"
|
|
12
|
+
},
|
|
13
|
+
"missing_obligation_count": {
|
|
14
|
+
"default": 0,
|
|
15
|
+
"title": "Missing Obligation Count",
|
|
16
|
+
"type": "integer"
|
|
17
|
+
},
|
|
18
|
+
"residual_debt": {
|
|
19
|
+
"default": 0.0,
|
|
20
|
+
"title": "Residual Debt",
|
|
21
|
+
"type": "number"
|
|
22
|
+
},
|
|
23
|
+
"residual_summary": {
|
|
24
|
+
"additionalProperties": {
|
|
25
|
+
"type": "number"
|
|
26
|
+
},
|
|
27
|
+
"title": "Residual Summary",
|
|
28
|
+
"type": "object"
|
|
29
|
+
},
|
|
30
|
+
"settled_blockers": {
|
|
31
|
+
"items": {
|
|
32
|
+
"type": "string"
|
|
33
|
+
},
|
|
34
|
+
"title": "Settled Blockers",
|
|
35
|
+
"type": "array"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"title": "EffectiveGraphResidualSummary",
|
|
39
|
+
"type": "object"
|
|
40
|
+
},
|
|
41
|
+
"EffectivePacketEdge": {
|
|
42
|
+
"description": "One edge in the effective packet graph.",
|
|
43
|
+
"properties": {
|
|
44
|
+
"accepted": {
|
|
45
|
+
"default": false,
|
|
46
|
+
"title": "Accepted",
|
|
47
|
+
"type": "boolean"
|
|
48
|
+
},
|
|
49
|
+
"contribution": {
|
|
50
|
+
"$ref": "#/$defs/PacketContributionStatus"
|
|
51
|
+
},
|
|
52
|
+
"edge_id": {
|
|
53
|
+
"title": "Edge Id",
|
|
54
|
+
"type": "string"
|
|
55
|
+
},
|
|
56
|
+
"evidence": {
|
|
57
|
+
"$ref": "#/$defs/SemanticEdgeEvidence"
|
|
58
|
+
},
|
|
59
|
+
"reasons": {
|
|
60
|
+
"items": {
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
"title": "Reasons",
|
|
64
|
+
"type": "array"
|
|
65
|
+
},
|
|
66
|
+
"relation_type": {
|
|
67
|
+
"default": "semantic-dependency",
|
|
68
|
+
"title": "Relation Type",
|
|
69
|
+
"type": "string"
|
|
70
|
+
},
|
|
71
|
+
"residual_summary": {
|
|
72
|
+
"additionalProperties": {
|
|
73
|
+
"type": "number"
|
|
74
|
+
},
|
|
75
|
+
"title": "Residual Summary",
|
|
76
|
+
"type": "object"
|
|
77
|
+
},
|
|
78
|
+
"settled": {
|
|
79
|
+
"default": false,
|
|
80
|
+
"title": "Settled",
|
|
81
|
+
"type": "boolean"
|
|
82
|
+
},
|
|
83
|
+
"source_node_ids": {
|
|
84
|
+
"items": {
|
|
85
|
+
"type": "string"
|
|
86
|
+
},
|
|
87
|
+
"title": "Source Node Ids",
|
|
88
|
+
"type": "array"
|
|
89
|
+
},
|
|
90
|
+
"target_node_id": {
|
|
91
|
+
"title": "Target Node Id",
|
|
92
|
+
"type": "string"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"required": [
|
|
96
|
+
"edge_id",
|
|
97
|
+
"target_node_id"
|
|
98
|
+
],
|
|
99
|
+
"title": "EffectivePacketEdge",
|
|
100
|
+
"type": "object"
|
|
101
|
+
},
|
|
102
|
+
"EffectivePacketEligibility": {
|
|
103
|
+
"description": "Eligibility checks for positive phase contribution.",
|
|
104
|
+
"properties": {
|
|
105
|
+
"accepted_or_certificate_admissible": {
|
|
106
|
+
"default": false,
|
|
107
|
+
"title": "Accepted Or Certificate Admissible",
|
|
108
|
+
"type": "boolean"
|
|
109
|
+
},
|
|
110
|
+
"agent_text_not_treated_as_evidence": {
|
|
111
|
+
"default": false,
|
|
112
|
+
"title": "Agent Text Not Treated As Evidence",
|
|
113
|
+
"type": "boolean"
|
|
114
|
+
},
|
|
115
|
+
"authority_valid": {
|
|
116
|
+
"default": false,
|
|
117
|
+
"title": "Authority Valid",
|
|
118
|
+
"type": "boolean"
|
|
119
|
+
},
|
|
120
|
+
"blockers": {
|
|
121
|
+
"items": {
|
|
122
|
+
"type": "string"
|
|
123
|
+
},
|
|
124
|
+
"title": "Blockers",
|
|
125
|
+
"type": "array"
|
|
126
|
+
},
|
|
127
|
+
"eligible": {
|
|
128
|
+
"default": false,
|
|
129
|
+
"title": "Eligible",
|
|
130
|
+
"type": "boolean"
|
|
131
|
+
},
|
|
132
|
+
"hash_valid": {
|
|
133
|
+
"default": false,
|
|
134
|
+
"title": "Hash Valid",
|
|
135
|
+
"type": "boolean"
|
|
136
|
+
},
|
|
137
|
+
"not_raw_external_volume": {
|
|
138
|
+
"default": false,
|
|
139
|
+
"title": "Not Raw External Volume",
|
|
140
|
+
"type": "boolean"
|
|
141
|
+
},
|
|
142
|
+
"not_registry_metadata_only": {
|
|
143
|
+
"default": false,
|
|
144
|
+
"title": "Not Registry Metadata Only",
|
|
145
|
+
"type": "boolean"
|
|
146
|
+
},
|
|
147
|
+
"not_salience_blocked": {
|
|
148
|
+
"default": false,
|
|
149
|
+
"title": "Not Salience Blocked",
|
|
150
|
+
"type": "boolean"
|
|
151
|
+
},
|
|
152
|
+
"not_stale": {
|
|
153
|
+
"default": false,
|
|
154
|
+
"title": "Not Stale",
|
|
155
|
+
"type": "boolean"
|
|
156
|
+
},
|
|
157
|
+
"not_verification_blocked": {
|
|
158
|
+
"default": false,
|
|
159
|
+
"title": "Not Verification Blocked",
|
|
160
|
+
"type": "boolean"
|
|
161
|
+
},
|
|
162
|
+
"residuals_preserved": {
|
|
163
|
+
"default": false,
|
|
164
|
+
"title": "Residuals Preserved",
|
|
165
|
+
"type": "boolean"
|
|
166
|
+
},
|
|
167
|
+
"retrievable": {
|
|
168
|
+
"default": false,
|
|
169
|
+
"title": "Retrievable",
|
|
170
|
+
"type": "boolean"
|
|
171
|
+
},
|
|
172
|
+
"rollback_available_or_not_required": {
|
|
173
|
+
"default": false,
|
|
174
|
+
"title": "Rollback Available Or Not Required",
|
|
175
|
+
"type": "boolean"
|
|
176
|
+
},
|
|
177
|
+
"within_validity_domain": {
|
|
178
|
+
"default": false,
|
|
179
|
+
"title": "Within Validity Domain",
|
|
180
|
+
"type": "boolean"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"title": "EffectivePacketEligibility",
|
|
184
|
+
"type": "object"
|
|
185
|
+
},
|
|
186
|
+
"EffectivePacketNode": {
|
|
187
|
+
"description": "One node in the effective packet graph.",
|
|
188
|
+
"properties": {
|
|
189
|
+
"accepted": {
|
|
190
|
+
"default": false,
|
|
191
|
+
"title": "Accepted",
|
|
192
|
+
"type": "boolean"
|
|
193
|
+
},
|
|
194
|
+
"content_digest": {
|
|
195
|
+
"default": "",
|
|
196
|
+
"title": "Content Digest",
|
|
197
|
+
"type": "string"
|
|
198
|
+
},
|
|
199
|
+
"contribution": {
|
|
200
|
+
"$ref": "#/$defs/PacketContributionStatus"
|
|
201
|
+
},
|
|
202
|
+
"eligibility": {
|
|
203
|
+
"$ref": "#/$defs/EffectivePacketEligibility"
|
|
204
|
+
},
|
|
205
|
+
"missing_obligations": {
|
|
206
|
+
"items": {
|
|
207
|
+
"type": "string"
|
|
208
|
+
},
|
|
209
|
+
"title": "Missing Obligations",
|
|
210
|
+
"type": "array"
|
|
211
|
+
},
|
|
212
|
+
"node_id": {
|
|
213
|
+
"title": "Node Id",
|
|
214
|
+
"type": "string"
|
|
215
|
+
},
|
|
216
|
+
"operationally_usable": {
|
|
217
|
+
"default": false,
|
|
218
|
+
"title": "Operationally Usable",
|
|
219
|
+
"type": "boolean"
|
|
220
|
+
},
|
|
221
|
+
"reasons": {
|
|
222
|
+
"items": {
|
|
223
|
+
"type": "string"
|
|
224
|
+
},
|
|
225
|
+
"title": "Reasons",
|
|
226
|
+
"type": "array"
|
|
227
|
+
},
|
|
228
|
+
"residual_summary": {
|
|
229
|
+
"additionalProperties": {
|
|
230
|
+
"type": "number"
|
|
231
|
+
},
|
|
232
|
+
"title": "Residual Summary",
|
|
233
|
+
"type": "object"
|
|
234
|
+
},
|
|
235
|
+
"schema_hint": {
|
|
236
|
+
"default": "unknown",
|
|
237
|
+
"title": "Schema Hint",
|
|
238
|
+
"type": "string"
|
|
239
|
+
},
|
|
240
|
+
"settled": {
|
|
241
|
+
"default": false,
|
|
242
|
+
"title": "Settled",
|
|
243
|
+
"type": "boolean"
|
|
244
|
+
},
|
|
245
|
+
"source_event_id": {
|
|
246
|
+
"default": "",
|
|
247
|
+
"title": "Source Event Id",
|
|
248
|
+
"type": "string"
|
|
249
|
+
},
|
|
250
|
+
"source_kind": {
|
|
251
|
+
"default": "unknown-report",
|
|
252
|
+
"title": "Source Kind",
|
|
253
|
+
"type": "string"
|
|
254
|
+
},
|
|
255
|
+
"workflow_usable": {
|
|
256
|
+
"default": false,
|
|
257
|
+
"title": "Workflow Usable",
|
|
258
|
+
"type": "boolean"
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
"required": [
|
|
262
|
+
"node_id"
|
|
263
|
+
],
|
|
264
|
+
"title": "EffectivePacketNode",
|
|
265
|
+
"type": "object"
|
|
266
|
+
},
|
|
267
|
+
"PacketContributionStatus": {
|
|
268
|
+
"description": "Portable contribution status for one graph object.",
|
|
269
|
+
"properties": {
|
|
270
|
+
"candidate_only": {
|
|
271
|
+
"default": true,
|
|
272
|
+
"title": "Candidate Only",
|
|
273
|
+
"type": "boolean"
|
|
274
|
+
},
|
|
275
|
+
"non_contributing_reason": {
|
|
276
|
+
"default": "candidate-only data does not improve phase metrics",
|
|
277
|
+
"title": "Non Contributing Reason",
|
|
278
|
+
"type": "string"
|
|
279
|
+
},
|
|
280
|
+
"positive_contribution": {
|
|
281
|
+
"default": false,
|
|
282
|
+
"title": "Positive Contribution",
|
|
283
|
+
"type": "boolean"
|
|
284
|
+
},
|
|
285
|
+
"settled": {
|
|
286
|
+
"default": false,
|
|
287
|
+
"title": "Settled",
|
|
288
|
+
"type": "boolean"
|
|
289
|
+
},
|
|
290
|
+
"status": {
|
|
291
|
+
"default": "diagnostic",
|
|
292
|
+
"title": "Status",
|
|
293
|
+
"type": "string"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"title": "PacketContributionStatus",
|
|
297
|
+
"type": "object"
|
|
298
|
+
},
|
|
299
|
+
"SemanticEdgeEvidence": {
|
|
300
|
+
"description": "Evidence summary for one effective graph edge.",
|
|
301
|
+
"properties": {
|
|
302
|
+
"edge_certificate_refs": {
|
|
303
|
+
"items": {
|
|
304
|
+
"type": "string"
|
|
305
|
+
},
|
|
306
|
+
"title": "Edge Certificate Refs",
|
|
307
|
+
"type": "array"
|
|
308
|
+
},
|
|
309
|
+
"evidence_refs": {
|
|
310
|
+
"items": {
|
|
311
|
+
"type": "string"
|
|
312
|
+
},
|
|
313
|
+
"title": "Evidence Refs",
|
|
314
|
+
"type": "array"
|
|
315
|
+
},
|
|
316
|
+
"evidence_supported": {
|
|
317
|
+
"default": false,
|
|
318
|
+
"title": "Evidence Supported",
|
|
319
|
+
"type": "boolean"
|
|
320
|
+
},
|
|
321
|
+
"missing_evidence": {
|
|
322
|
+
"items": {
|
|
323
|
+
"type": "string"
|
|
324
|
+
},
|
|
325
|
+
"title": "Missing Evidence",
|
|
326
|
+
"type": "array"
|
|
327
|
+
},
|
|
328
|
+
"verifier_resolution_refs": {
|
|
329
|
+
"items": {
|
|
330
|
+
"type": "string"
|
|
331
|
+
},
|
|
332
|
+
"title": "Verifier Resolution Refs",
|
|
333
|
+
"type": "array"
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
"title": "SemanticEdgeEvidence",
|
|
337
|
+
"type": "object"
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"description": "Protocol-relative graph of accepted and diagnostic packet structures.",
|
|
341
|
+
"properties": {
|
|
342
|
+
"accepted": {
|
|
343
|
+
"default": false,
|
|
344
|
+
"title": "Accepted",
|
|
345
|
+
"type": "boolean"
|
|
346
|
+
},
|
|
347
|
+
"accepted_packet_capital": {
|
|
348
|
+
"default": 0,
|
|
349
|
+
"title": "Accepted Packet Capital",
|
|
350
|
+
"type": "integer"
|
|
351
|
+
},
|
|
352
|
+
"candidate_only_packets": {
|
|
353
|
+
"default": 0,
|
|
354
|
+
"title": "Candidate Only Packets",
|
|
355
|
+
"type": "integer"
|
|
356
|
+
},
|
|
357
|
+
"edge_count_by_relation": {
|
|
358
|
+
"additionalProperties": {
|
|
359
|
+
"type": "integer"
|
|
360
|
+
},
|
|
361
|
+
"title": "Edge Count By Relation",
|
|
362
|
+
"type": "object"
|
|
363
|
+
},
|
|
364
|
+
"edges": {
|
|
365
|
+
"items": {
|
|
366
|
+
"$ref": "#/$defs/EffectivePacketEdge"
|
|
367
|
+
},
|
|
368
|
+
"title": "Edges",
|
|
369
|
+
"type": "array"
|
|
370
|
+
},
|
|
371
|
+
"graph_id": {
|
|
372
|
+
"default": "effective-packet-graph",
|
|
373
|
+
"title": "Graph Id",
|
|
374
|
+
"type": "string"
|
|
375
|
+
},
|
|
376
|
+
"graph_safety_boundary": {
|
|
377
|
+
"items": {
|
|
378
|
+
"type": "string"
|
|
379
|
+
},
|
|
380
|
+
"title": "Graph Safety Boundary",
|
|
381
|
+
"type": "array"
|
|
382
|
+
},
|
|
383
|
+
"missing_edge_evidence": {
|
|
384
|
+
"items": {
|
|
385
|
+
"type": "string"
|
|
386
|
+
},
|
|
387
|
+
"title": "Missing Edge Evidence",
|
|
388
|
+
"type": "array"
|
|
389
|
+
},
|
|
390
|
+
"node_count_by_status": {
|
|
391
|
+
"additionalProperties": {
|
|
392
|
+
"type": "integer"
|
|
393
|
+
},
|
|
394
|
+
"title": "Node Count By Status",
|
|
395
|
+
"type": "object"
|
|
396
|
+
},
|
|
397
|
+
"nodes": {
|
|
398
|
+
"items": {
|
|
399
|
+
"$ref": "#/$defs/EffectivePacketNode"
|
|
400
|
+
},
|
|
401
|
+
"title": "Nodes",
|
|
402
|
+
"type": "array"
|
|
403
|
+
},
|
|
404
|
+
"non_contributing_volume": {
|
|
405
|
+
"default": 0,
|
|
406
|
+
"title": "Non Contributing Volume",
|
|
407
|
+
"type": "integer"
|
|
408
|
+
},
|
|
409
|
+
"operationally_usable": {
|
|
410
|
+
"default": false,
|
|
411
|
+
"title": "Operationally Usable",
|
|
412
|
+
"type": "boolean"
|
|
413
|
+
},
|
|
414
|
+
"reasons": {
|
|
415
|
+
"items": {
|
|
416
|
+
"type": "string"
|
|
417
|
+
},
|
|
418
|
+
"title": "Reasons",
|
|
419
|
+
"type": "array"
|
|
420
|
+
},
|
|
421
|
+
"rejected_or_quarantined_packets": {
|
|
422
|
+
"default": 0,
|
|
423
|
+
"title": "Rejected Or Quarantined Packets",
|
|
424
|
+
"type": "integer"
|
|
425
|
+
},
|
|
426
|
+
"residual_summary": {
|
|
427
|
+
"$ref": "#/$defs/EffectiveGraphResidualSummary"
|
|
428
|
+
},
|
|
429
|
+
"semantic_edge_witnesses": {
|
|
430
|
+
"items": {
|
|
431
|
+
"$ref": "#/$defs/SemanticEdgeEvidence"
|
|
432
|
+
},
|
|
433
|
+
"title": "Semantic Edge Witnesses",
|
|
434
|
+
"type": "array"
|
|
435
|
+
},
|
|
436
|
+
"settled": {
|
|
437
|
+
"default": false,
|
|
438
|
+
"title": "Settled",
|
|
439
|
+
"type": "boolean"
|
|
440
|
+
},
|
|
441
|
+
"source_window_id": {
|
|
442
|
+
"default": "adhoc",
|
|
443
|
+
"title": "Source Window Id",
|
|
444
|
+
"type": "string"
|
|
445
|
+
},
|
|
446
|
+
"stale_or_unsafe_packets": {
|
|
447
|
+
"items": {
|
|
448
|
+
"type": "string"
|
|
449
|
+
},
|
|
450
|
+
"title": "Stale Or Unsafe Packets",
|
|
451
|
+
"type": "array"
|
|
452
|
+
},
|
|
453
|
+
"workflow_usable": {
|
|
454
|
+
"default": false,
|
|
455
|
+
"title": "Workflow Usable",
|
|
456
|
+
"type": "boolean"
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
"title": "EffectivePacketGraph",
|
|
460
|
+
"type": "object"
|
|
461
|
+
}
|