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,688 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$defs": {
|
|
3
|
+
"ASIProxyThresholdSpec": {
|
|
4
|
+
"description": "Protocol-relative finite threshold specification for ASI-proxy diagnostics.",
|
|
5
|
+
"properties": {
|
|
6
|
+
"maximum_false_liquidity_load": {
|
|
7
|
+
"default": 0.5,
|
|
8
|
+
"title": "Maximum False Liquidity Load",
|
|
9
|
+
"type": "number"
|
|
10
|
+
},
|
|
11
|
+
"maximum_residual_debt": {
|
|
12
|
+
"default": 0.0,
|
|
13
|
+
"title": "Maximum Residual Debt",
|
|
14
|
+
"type": "number"
|
|
15
|
+
},
|
|
16
|
+
"maximum_salience_obstruction": {
|
|
17
|
+
"default": 0.5,
|
|
18
|
+
"title": "Maximum Salience Obstruction",
|
|
19
|
+
"type": "number"
|
|
20
|
+
},
|
|
21
|
+
"minimum_accepted_packet_count": {
|
|
22
|
+
"default": 1,
|
|
23
|
+
"title": "Minimum Accepted Packet Count",
|
|
24
|
+
"type": "integer"
|
|
25
|
+
},
|
|
26
|
+
"minimum_alt_to_ecpt_lift_count": {
|
|
27
|
+
"default": 0,
|
|
28
|
+
"title": "Minimum Alt To Ecpt Lift Count",
|
|
29
|
+
"type": "integer"
|
|
30
|
+
},
|
|
31
|
+
"minimum_closure_witness_count": {
|
|
32
|
+
"default": 1,
|
|
33
|
+
"title": "Minimum Closure Witness Count",
|
|
34
|
+
"type": "integer"
|
|
35
|
+
},
|
|
36
|
+
"minimum_effective_edge_count": {
|
|
37
|
+
"default": 1,
|
|
38
|
+
"title": "Minimum Effective Edge Count",
|
|
39
|
+
"type": "integer"
|
|
40
|
+
},
|
|
41
|
+
"minimum_execution_available_path_density": {
|
|
42
|
+
"default": 0.1,
|
|
43
|
+
"title": "Minimum Execution Available Path Density",
|
|
44
|
+
"type": "number"
|
|
45
|
+
},
|
|
46
|
+
"minimum_verification_throughput": {
|
|
47
|
+
"default": 0.1,
|
|
48
|
+
"title": "Minimum Verification Throughput",
|
|
49
|
+
"type": "number"
|
|
50
|
+
},
|
|
51
|
+
"required_authority_status": {
|
|
52
|
+
"default": "explicit-scope-bounded",
|
|
53
|
+
"title": "Required Authority Status",
|
|
54
|
+
"type": "string"
|
|
55
|
+
},
|
|
56
|
+
"required_identity_mode": {
|
|
57
|
+
"default": "declared",
|
|
58
|
+
"title": "Required Identity Mode",
|
|
59
|
+
"type": "string"
|
|
60
|
+
},
|
|
61
|
+
"required_rollback_availability": {
|
|
62
|
+
"default": true,
|
|
63
|
+
"title": "Required Rollback Availability",
|
|
64
|
+
"type": "boolean"
|
|
65
|
+
},
|
|
66
|
+
"threshold_id": {
|
|
67
|
+
"default": "asi-proxy-development",
|
|
68
|
+
"title": "Threshold Id",
|
|
69
|
+
"type": "string"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"title": "ASIProxyThresholdSpec",
|
|
73
|
+
"type": "object"
|
|
74
|
+
},
|
|
75
|
+
"ASIProxyThresholdStatus": {
|
|
76
|
+
"description": "Threshold status over one protocol-relative phase observation.",
|
|
77
|
+
"properties": {
|
|
78
|
+
"abstention_reasons": {
|
|
79
|
+
"items": {
|
|
80
|
+
"type": "string"
|
|
81
|
+
},
|
|
82
|
+
"title": "Abstention Reasons",
|
|
83
|
+
"type": "array"
|
|
84
|
+
},
|
|
85
|
+
"accepted": {
|
|
86
|
+
"default": false,
|
|
87
|
+
"title": "Accepted",
|
|
88
|
+
"type": "boolean"
|
|
89
|
+
},
|
|
90
|
+
"certificate_status": {
|
|
91
|
+
"default": "abstain",
|
|
92
|
+
"title": "Certificate Status",
|
|
93
|
+
"type": "string"
|
|
94
|
+
},
|
|
95
|
+
"component_status": {
|
|
96
|
+
"additionalProperties": {
|
|
97
|
+
"type": "boolean"
|
|
98
|
+
},
|
|
99
|
+
"title": "Component Status",
|
|
100
|
+
"type": "object"
|
|
101
|
+
},
|
|
102
|
+
"failed_components": {
|
|
103
|
+
"items": {
|
|
104
|
+
"type": "string"
|
|
105
|
+
},
|
|
106
|
+
"title": "Failed Components",
|
|
107
|
+
"type": "array"
|
|
108
|
+
},
|
|
109
|
+
"observation": {
|
|
110
|
+
"$ref": "#/$defs/PhaseWindowObservation"
|
|
111
|
+
},
|
|
112
|
+
"protocol_relative_only": {
|
|
113
|
+
"default": true,
|
|
114
|
+
"title": "Protocol Relative Only",
|
|
115
|
+
"type": "boolean"
|
|
116
|
+
},
|
|
117
|
+
"proves_real_asi": {
|
|
118
|
+
"default": false,
|
|
119
|
+
"title": "Proves Real Asi",
|
|
120
|
+
"type": "boolean"
|
|
121
|
+
},
|
|
122
|
+
"reasons": {
|
|
123
|
+
"items": {
|
|
124
|
+
"type": "string"
|
|
125
|
+
},
|
|
126
|
+
"title": "Reasons",
|
|
127
|
+
"type": "array"
|
|
128
|
+
},
|
|
129
|
+
"rejection_reasons": {
|
|
130
|
+
"items": {
|
|
131
|
+
"type": "string"
|
|
132
|
+
},
|
|
133
|
+
"title": "Rejection Reasons",
|
|
134
|
+
"type": "array"
|
|
135
|
+
},
|
|
136
|
+
"settled": {
|
|
137
|
+
"default": false,
|
|
138
|
+
"title": "Settled",
|
|
139
|
+
"type": "boolean"
|
|
140
|
+
},
|
|
141
|
+
"status_id": {
|
|
142
|
+
"default": "asi-proxy-threshold-status",
|
|
143
|
+
"title": "Status Id",
|
|
144
|
+
"type": "string"
|
|
145
|
+
},
|
|
146
|
+
"threshold": {
|
|
147
|
+
"$ref": "#/$defs/ASIProxyThresholdSpec"
|
|
148
|
+
},
|
|
149
|
+
"threshold_distance": {
|
|
150
|
+
"default": 0.0,
|
|
151
|
+
"title": "Threshold Distance",
|
|
152
|
+
"type": "number"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"required": [
|
|
156
|
+
"threshold",
|
|
157
|
+
"observation"
|
|
158
|
+
],
|
|
159
|
+
"title": "ASIProxyThresholdStatus",
|
|
160
|
+
"type": "object"
|
|
161
|
+
},
|
|
162
|
+
"BasinReachabilityProxy": {
|
|
163
|
+
"properties": {
|
|
164
|
+
"effective_node_count": {
|
|
165
|
+
"default": 0,
|
|
166
|
+
"title": "Effective Node Count",
|
|
167
|
+
"type": "integer"
|
|
168
|
+
},
|
|
169
|
+
"execution_available_path_count": {
|
|
170
|
+
"default": 0,
|
|
171
|
+
"title": "Execution Available Path Count",
|
|
172
|
+
"type": "integer"
|
|
173
|
+
},
|
|
174
|
+
"reachability_proxy": {
|
|
175
|
+
"default": 0.0,
|
|
176
|
+
"title": "Reachability Proxy",
|
|
177
|
+
"type": "number"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"title": "BasinReachabilityProxy",
|
|
181
|
+
"type": "object"
|
|
182
|
+
},
|
|
183
|
+
"CollectivePhaseAbstentionReport": {
|
|
184
|
+
"properties": {
|
|
185
|
+
"defects": {
|
|
186
|
+
"items": {
|
|
187
|
+
"$ref": "#/$defs/PhaseCertificateDefect"
|
|
188
|
+
},
|
|
189
|
+
"title": "Defects",
|
|
190
|
+
"type": "array"
|
|
191
|
+
},
|
|
192
|
+
"protocol_relative_only": {
|
|
193
|
+
"default": true,
|
|
194
|
+
"title": "Protocol Relative Only",
|
|
195
|
+
"type": "boolean"
|
|
196
|
+
},
|
|
197
|
+
"proves_real_asi": {
|
|
198
|
+
"default": false,
|
|
199
|
+
"title": "Proves Real Asi",
|
|
200
|
+
"type": "boolean"
|
|
201
|
+
},
|
|
202
|
+
"reasons": {
|
|
203
|
+
"items": {
|
|
204
|
+
"type": "string"
|
|
205
|
+
},
|
|
206
|
+
"title": "Reasons",
|
|
207
|
+
"type": "array"
|
|
208
|
+
},
|
|
209
|
+
"report_id": {
|
|
210
|
+
"default": "collective-phase-abstention",
|
|
211
|
+
"title": "Report Id",
|
|
212
|
+
"type": "string"
|
|
213
|
+
},
|
|
214
|
+
"settled": {
|
|
215
|
+
"default": false,
|
|
216
|
+
"title": "Settled",
|
|
217
|
+
"type": "boolean"
|
|
218
|
+
},
|
|
219
|
+
"threshold_status": {
|
|
220
|
+
"$ref": "#/$defs/ASIProxyThresholdStatus"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"required": [
|
|
224
|
+
"threshold_status"
|
|
225
|
+
],
|
|
226
|
+
"title": "CollectivePhaseAbstentionReport",
|
|
227
|
+
"type": "object"
|
|
228
|
+
},
|
|
229
|
+
"FalseLiquidityLoad": {
|
|
230
|
+
"properties": {
|
|
231
|
+
"candidate_count": {
|
|
232
|
+
"default": 0,
|
|
233
|
+
"title": "Candidate Count",
|
|
234
|
+
"type": "integer"
|
|
235
|
+
},
|
|
236
|
+
"certified_count": {
|
|
237
|
+
"default": 0,
|
|
238
|
+
"title": "Certified Count",
|
|
239
|
+
"type": "integer"
|
|
240
|
+
},
|
|
241
|
+
"load": {
|
|
242
|
+
"default": 0.0,
|
|
243
|
+
"title": "Load",
|
|
244
|
+
"type": "number"
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
"title": "FalseLiquidityLoad",
|
|
248
|
+
"type": "object"
|
|
249
|
+
},
|
|
250
|
+
"PhaseCertificateDefect": {
|
|
251
|
+
"properties": {
|
|
252
|
+
"component": {
|
|
253
|
+
"title": "Component",
|
|
254
|
+
"type": "string"
|
|
255
|
+
},
|
|
256
|
+
"defect_id": {
|
|
257
|
+
"title": "Defect Id",
|
|
258
|
+
"type": "string"
|
|
259
|
+
},
|
|
260
|
+
"defect_type": {
|
|
261
|
+
"title": "Defect Type",
|
|
262
|
+
"type": "string"
|
|
263
|
+
},
|
|
264
|
+
"required_remediation": {
|
|
265
|
+
"title": "Required Remediation",
|
|
266
|
+
"type": "string"
|
|
267
|
+
},
|
|
268
|
+
"residual_preserved": {
|
|
269
|
+
"default": true,
|
|
270
|
+
"title": "Residual Preserved",
|
|
271
|
+
"type": "boolean"
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"required": [
|
|
275
|
+
"defect_id",
|
|
276
|
+
"component",
|
|
277
|
+
"defect_type",
|
|
278
|
+
"required_remediation"
|
|
279
|
+
],
|
|
280
|
+
"title": "PhaseCertificateDefect",
|
|
281
|
+
"type": "object"
|
|
282
|
+
},
|
|
283
|
+
"PhaseComponentObservation": {
|
|
284
|
+
"description": "One phase component value and threshold distance.",
|
|
285
|
+
"properties": {
|
|
286
|
+
"component": {
|
|
287
|
+
"title": "Component",
|
|
288
|
+
"type": "string"
|
|
289
|
+
},
|
|
290
|
+
"diagnostic_only": {
|
|
291
|
+
"default": true,
|
|
292
|
+
"title": "Diagnostic Only",
|
|
293
|
+
"type": "boolean"
|
|
294
|
+
},
|
|
295
|
+
"distance": {
|
|
296
|
+
"default": 0.0,
|
|
297
|
+
"title": "Distance",
|
|
298
|
+
"type": "number"
|
|
299
|
+
},
|
|
300
|
+
"positive_contribution_source": {
|
|
301
|
+
"default": "effective-graph-only",
|
|
302
|
+
"title": "Positive Contribution Source",
|
|
303
|
+
"type": "string"
|
|
304
|
+
},
|
|
305
|
+
"threshold": {
|
|
306
|
+
"default": 0.0,
|
|
307
|
+
"title": "Threshold",
|
|
308
|
+
"type": "number"
|
|
309
|
+
},
|
|
310
|
+
"value": {
|
|
311
|
+
"default": 0.0,
|
|
312
|
+
"title": "Value",
|
|
313
|
+
"type": "number"
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
"required": [
|
|
317
|
+
"component"
|
|
318
|
+
],
|
|
319
|
+
"title": "PhaseComponentObservation",
|
|
320
|
+
"type": "object"
|
|
321
|
+
},
|
|
322
|
+
"PhaseWindow": {
|
|
323
|
+
"description": "A finite Phase Lab observation window.",
|
|
324
|
+
"properties": {
|
|
325
|
+
"event_count": {
|
|
326
|
+
"default": 0,
|
|
327
|
+
"title": "Event Count",
|
|
328
|
+
"type": "integer"
|
|
329
|
+
},
|
|
330
|
+
"event_ids": {
|
|
331
|
+
"items": {
|
|
332
|
+
"type": "string"
|
|
333
|
+
},
|
|
334
|
+
"title": "Event Ids",
|
|
335
|
+
"type": "array"
|
|
336
|
+
},
|
|
337
|
+
"sequence": {
|
|
338
|
+
"default": 0,
|
|
339
|
+
"title": "Sequence",
|
|
340
|
+
"type": "integer"
|
|
341
|
+
},
|
|
342
|
+
"window_id": {
|
|
343
|
+
"title": "Window Id",
|
|
344
|
+
"type": "string"
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
"required": [
|
|
348
|
+
"window_id"
|
|
349
|
+
],
|
|
350
|
+
"title": "PhaseWindow",
|
|
351
|
+
"type": "object"
|
|
352
|
+
},
|
|
353
|
+
"PhaseWindowObservation": {
|
|
354
|
+
"description": "Windowed observation over Phase Lab events and an effective graph.",
|
|
355
|
+
"properties": {
|
|
356
|
+
"accepted": {
|
|
357
|
+
"default": false,
|
|
358
|
+
"title": "Accepted",
|
|
359
|
+
"type": "boolean"
|
|
360
|
+
},
|
|
361
|
+
"accepted_packet_count": {
|
|
362
|
+
"default": 0,
|
|
363
|
+
"title": "Accepted Packet Count",
|
|
364
|
+
"type": "integer"
|
|
365
|
+
},
|
|
366
|
+
"alt_certified_capital_count": {
|
|
367
|
+
"default": 0,
|
|
368
|
+
"title": "Alt Certified Capital Count",
|
|
369
|
+
"type": "integer"
|
|
370
|
+
},
|
|
371
|
+
"alt_liquidity_candidate_count": {
|
|
372
|
+
"default": 0,
|
|
373
|
+
"title": "Alt Liquidity Candidate Count",
|
|
374
|
+
"type": "integer"
|
|
375
|
+
},
|
|
376
|
+
"autocatalytic_closure_score": {
|
|
377
|
+
"default": 0.0,
|
|
378
|
+
"title": "Autocatalytic Closure Score",
|
|
379
|
+
"type": "number"
|
|
380
|
+
},
|
|
381
|
+
"basin_reachability_proxy": {
|
|
382
|
+
"$ref": "#/$defs/BasinReachabilityProxy"
|
|
383
|
+
},
|
|
384
|
+
"bottleneck_count_by_type": {
|
|
385
|
+
"additionalProperties": {
|
|
386
|
+
"type": "integer"
|
|
387
|
+
},
|
|
388
|
+
"title": "Bottleneck Count By Type",
|
|
389
|
+
"type": "object"
|
|
390
|
+
},
|
|
391
|
+
"candidate_only_packet_count": {
|
|
392
|
+
"default": 0,
|
|
393
|
+
"title": "Candidate Only Packet Count",
|
|
394
|
+
"type": "integer"
|
|
395
|
+
},
|
|
396
|
+
"closure_witness_count": {
|
|
397
|
+
"default": 0,
|
|
398
|
+
"title": "Closure Witness Count",
|
|
399
|
+
"type": "integer"
|
|
400
|
+
},
|
|
401
|
+
"components": {
|
|
402
|
+
"items": {
|
|
403
|
+
"$ref": "#/$defs/PhaseComponentObservation"
|
|
404
|
+
},
|
|
405
|
+
"title": "Components",
|
|
406
|
+
"type": "array"
|
|
407
|
+
},
|
|
408
|
+
"effective_edge_count": {
|
|
409
|
+
"default": 0,
|
|
410
|
+
"title": "Effective Edge Count",
|
|
411
|
+
"type": "integer"
|
|
412
|
+
},
|
|
413
|
+
"effective_node_count": {
|
|
414
|
+
"default": 0,
|
|
415
|
+
"title": "Effective Node Count",
|
|
416
|
+
"type": "integer"
|
|
417
|
+
},
|
|
418
|
+
"execution_available_path_count": {
|
|
419
|
+
"default": 0,
|
|
420
|
+
"title": "Execution Available Path Count",
|
|
421
|
+
"type": "integer"
|
|
422
|
+
},
|
|
423
|
+
"false_liquidity_load": {
|
|
424
|
+
"$ref": "#/$defs/FalseLiquidityLoad"
|
|
425
|
+
},
|
|
426
|
+
"missing_obligation_count": {
|
|
427
|
+
"default": 0,
|
|
428
|
+
"title": "Missing Obligation Count",
|
|
429
|
+
"type": "integer"
|
|
430
|
+
},
|
|
431
|
+
"observation_id": {
|
|
432
|
+
"default": "phase-window-observation",
|
|
433
|
+
"title": "Observation Id",
|
|
434
|
+
"type": "string"
|
|
435
|
+
},
|
|
436
|
+
"operationally_usable": {
|
|
437
|
+
"default": false,
|
|
438
|
+
"title": "Operationally Usable",
|
|
439
|
+
"type": "boolean"
|
|
440
|
+
},
|
|
441
|
+
"packet_candidate_count": {
|
|
442
|
+
"default": 0,
|
|
443
|
+
"title": "Packet Candidate Count",
|
|
444
|
+
"type": "integer"
|
|
445
|
+
},
|
|
446
|
+
"phase_gap_vector": {
|
|
447
|
+
"additionalProperties": {
|
|
448
|
+
"type": "number"
|
|
449
|
+
},
|
|
450
|
+
"title": "Phase Gap Vector",
|
|
451
|
+
"type": "object"
|
|
452
|
+
},
|
|
453
|
+
"protocol_relative_only": {
|
|
454
|
+
"default": true,
|
|
455
|
+
"title": "Protocol Relative Only",
|
|
456
|
+
"type": "boolean"
|
|
457
|
+
},
|
|
458
|
+
"proves_physical_or_oracle_truth": {
|
|
459
|
+
"default": false,
|
|
460
|
+
"title": "Proves Physical Or Oracle Truth",
|
|
461
|
+
"type": "boolean"
|
|
462
|
+
},
|
|
463
|
+
"proves_real_asi": {
|
|
464
|
+
"default": false,
|
|
465
|
+
"title": "Proves Real Asi",
|
|
466
|
+
"type": "boolean"
|
|
467
|
+
},
|
|
468
|
+
"raw_external_volume_diagnostic_only": {
|
|
469
|
+
"default": true,
|
|
470
|
+
"title": "Raw External Volume Diagnostic Only",
|
|
471
|
+
"type": "boolean"
|
|
472
|
+
},
|
|
473
|
+
"reasons": {
|
|
474
|
+
"items": {
|
|
475
|
+
"type": "string"
|
|
476
|
+
},
|
|
477
|
+
"title": "Reasons",
|
|
478
|
+
"type": "array"
|
|
479
|
+
},
|
|
480
|
+
"residual_debt": {
|
|
481
|
+
"default": 0.0,
|
|
482
|
+
"title": "Residual Debt",
|
|
483
|
+
"type": "number"
|
|
484
|
+
},
|
|
485
|
+
"salience_obstruction_load": {
|
|
486
|
+
"$ref": "#/$defs/SalienceObstructionLoad"
|
|
487
|
+
},
|
|
488
|
+
"settled": {
|
|
489
|
+
"default": false,
|
|
490
|
+
"title": "Settled",
|
|
491
|
+
"type": "boolean"
|
|
492
|
+
},
|
|
493
|
+
"settled_packet_count": {
|
|
494
|
+
"default": 0,
|
|
495
|
+
"title": "Settled Packet Count",
|
|
496
|
+
"type": "integer"
|
|
497
|
+
},
|
|
498
|
+
"threshold_distance": {
|
|
499
|
+
"default": 0.0,
|
|
500
|
+
"title": "Threshold Distance",
|
|
501
|
+
"type": "number"
|
|
502
|
+
},
|
|
503
|
+
"verification_throughput": {
|
|
504
|
+
"$ref": "#/$defs/VerificationThroughputWindow"
|
|
505
|
+
},
|
|
506
|
+
"waste_load": {
|
|
507
|
+
"$ref": "#/$defs/WasteLoad"
|
|
508
|
+
},
|
|
509
|
+
"window": {
|
|
510
|
+
"$ref": "#/$defs/PhaseWindow"
|
|
511
|
+
},
|
|
512
|
+
"workflow_usable": {
|
|
513
|
+
"default": false,
|
|
514
|
+
"title": "Workflow Usable",
|
|
515
|
+
"type": "boolean"
|
|
516
|
+
},
|
|
517
|
+
"workflow_usable_packet_count": {
|
|
518
|
+
"default": 0,
|
|
519
|
+
"title": "Workflow Usable Packet Count",
|
|
520
|
+
"type": "integer"
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
"required": [
|
|
524
|
+
"window"
|
|
525
|
+
],
|
|
526
|
+
"title": "PhaseWindowObservation",
|
|
527
|
+
"type": "object"
|
|
528
|
+
},
|
|
529
|
+
"SalienceObstructionLoad": {
|
|
530
|
+
"properties": {
|
|
531
|
+
"blocked_count": {
|
|
532
|
+
"default": 0,
|
|
533
|
+
"title": "Blocked Count",
|
|
534
|
+
"type": "integer"
|
|
535
|
+
},
|
|
536
|
+
"load": {
|
|
537
|
+
"default": 0.0,
|
|
538
|
+
"title": "Load",
|
|
539
|
+
"type": "number"
|
|
540
|
+
},
|
|
541
|
+
"total_count": {
|
|
542
|
+
"default": 0,
|
|
543
|
+
"title": "Total Count",
|
|
544
|
+
"type": "integer"
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
"title": "SalienceObstructionLoad",
|
|
548
|
+
"type": "object"
|
|
549
|
+
},
|
|
550
|
+
"VerificationThroughputWindow": {
|
|
551
|
+
"properties": {
|
|
552
|
+
"accepted_count": {
|
|
553
|
+
"default": 0,
|
|
554
|
+
"title": "Accepted Count",
|
|
555
|
+
"type": "integer"
|
|
556
|
+
},
|
|
557
|
+
"backlog_count": {
|
|
558
|
+
"default": 0,
|
|
559
|
+
"title": "Backlog Count",
|
|
560
|
+
"type": "integer"
|
|
561
|
+
},
|
|
562
|
+
"throughput_ratio": {
|
|
563
|
+
"default": 0.0,
|
|
564
|
+
"title": "Throughput Ratio",
|
|
565
|
+
"type": "number"
|
|
566
|
+
}
|
|
567
|
+
},
|
|
568
|
+
"title": "VerificationThroughputWindow",
|
|
569
|
+
"type": "object"
|
|
570
|
+
},
|
|
571
|
+
"WasteLoad": {
|
|
572
|
+
"properties": {
|
|
573
|
+
"load": {
|
|
574
|
+
"default": 0.0,
|
|
575
|
+
"title": "Load",
|
|
576
|
+
"type": "number"
|
|
577
|
+
},
|
|
578
|
+
"non_contributing_volume": {
|
|
579
|
+
"default": 0,
|
|
580
|
+
"title": "Non Contributing Volume",
|
|
581
|
+
"type": "integer"
|
|
582
|
+
},
|
|
583
|
+
"total_volume": {
|
|
584
|
+
"default": 0,
|
|
585
|
+
"title": "Total Volume",
|
|
586
|
+
"type": "integer"
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
"title": "WasteLoad",
|
|
590
|
+
"type": "object"
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
"properties": {
|
|
594
|
+
"abstention_report": {
|
|
595
|
+
"anyOf": [
|
|
596
|
+
{
|
|
597
|
+
"$ref": "#/$defs/CollectivePhaseAbstentionReport"
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"type": "null"
|
|
601
|
+
}
|
|
602
|
+
],
|
|
603
|
+
"default": null
|
|
604
|
+
},
|
|
605
|
+
"accepted": {
|
|
606
|
+
"default": false,
|
|
607
|
+
"title": "Accepted",
|
|
608
|
+
"type": "boolean"
|
|
609
|
+
},
|
|
610
|
+
"certificate_id": {
|
|
611
|
+
"default": "collective-phase-certificate-candidate",
|
|
612
|
+
"title": "Certificate Id",
|
|
613
|
+
"type": "string"
|
|
614
|
+
},
|
|
615
|
+
"certificate_status": {
|
|
616
|
+
"default": "abstain",
|
|
617
|
+
"title": "Certificate Status",
|
|
618
|
+
"type": "string"
|
|
619
|
+
},
|
|
620
|
+
"defects": {
|
|
621
|
+
"items": {
|
|
622
|
+
"$ref": "#/$defs/PhaseCertificateDefect"
|
|
623
|
+
},
|
|
624
|
+
"title": "Defects",
|
|
625
|
+
"type": "array"
|
|
626
|
+
},
|
|
627
|
+
"finite_requirements_passed": {
|
|
628
|
+
"default": false,
|
|
629
|
+
"title": "Finite Requirements Passed",
|
|
630
|
+
"type": "boolean"
|
|
631
|
+
},
|
|
632
|
+
"graph_id": {
|
|
633
|
+
"default": "",
|
|
634
|
+
"title": "Graph Id",
|
|
635
|
+
"type": "string"
|
|
636
|
+
},
|
|
637
|
+
"observation_id": {
|
|
638
|
+
"default": "",
|
|
639
|
+
"title": "Observation Id",
|
|
640
|
+
"type": "string"
|
|
641
|
+
},
|
|
642
|
+
"operationally_usable": {
|
|
643
|
+
"default": false,
|
|
644
|
+
"title": "Operationally Usable",
|
|
645
|
+
"type": "boolean"
|
|
646
|
+
},
|
|
647
|
+
"protocol_relative_only": {
|
|
648
|
+
"default": true,
|
|
649
|
+
"title": "Protocol Relative Only",
|
|
650
|
+
"type": "boolean"
|
|
651
|
+
},
|
|
652
|
+
"proves_physical_or_oracle_truth": {
|
|
653
|
+
"default": false,
|
|
654
|
+
"title": "Proves Physical Or Oracle Truth",
|
|
655
|
+
"type": "boolean"
|
|
656
|
+
},
|
|
657
|
+
"proves_real_asi": {
|
|
658
|
+
"default": false,
|
|
659
|
+
"title": "Proves Real Asi",
|
|
660
|
+
"type": "boolean"
|
|
661
|
+
},
|
|
662
|
+
"reasons": {
|
|
663
|
+
"items": {
|
|
664
|
+
"type": "string"
|
|
665
|
+
},
|
|
666
|
+
"title": "Reasons",
|
|
667
|
+
"type": "array"
|
|
668
|
+
},
|
|
669
|
+
"settled": {
|
|
670
|
+
"default": false,
|
|
671
|
+
"title": "Settled",
|
|
672
|
+
"type": "boolean"
|
|
673
|
+
},
|
|
674
|
+
"threshold_status": {
|
|
675
|
+
"$ref": "#/$defs/ASIProxyThresholdStatus"
|
|
676
|
+
},
|
|
677
|
+
"workflow_usable": {
|
|
678
|
+
"default": false,
|
|
679
|
+
"title": "Workflow Usable",
|
|
680
|
+
"type": "boolean"
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
"required": [
|
|
684
|
+
"threshold_status"
|
|
685
|
+
],
|
|
686
|
+
"title": "CollectivePhaseCertificateCandidate",
|
|
687
|
+
"type": "object"
|
|
688
|
+
}
|