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
|
@@ -1,1674 +1,2118 @@
|
|
|
1
1
|
{
|
|
2
|
-
"aggregate_sha256": "
|
|
2
|
+
"aggregate_sha256": "4c6551b281db6a4ba7eced3ae8a8b2deae0d806e51c4fde25283731261746c5b",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
5
|
"media_type": "application/json",
|
|
6
|
-
"path": "schemas/AbstractionToken.schema.json",
|
|
6
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AbstractionToken.schema.json",
|
|
7
7
|
"sha256": "cb1051c146b2dac334e491adec3d2650e8ea92307a055871864ae4efe204c369",
|
|
8
8
|
"size_bytes": 6451
|
|
9
9
|
},
|
|
10
10
|
{
|
|
11
11
|
"media_type": "application/json",
|
|
12
|
-
"path": "schemas/AccelerationCertificate.schema.json",
|
|
12
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AccelerationCertificate.schema.json",
|
|
13
13
|
"sha256": "bbe0c7cb926e78a941e4253f1ac52a02c4d2d6346211cb2a13865cf8220cd35f",
|
|
14
14
|
"size_bytes": 5241
|
|
15
15
|
},
|
|
16
16
|
{
|
|
17
17
|
"media_type": "application/json",
|
|
18
|
-
"path": "schemas/AccelerationExperimentSuite.schema.json",
|
|
18
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AccelerationExperimentSuite.schema.json",
|
|
19
19
|
"sha256": "f3cb2be528e5ab86096c6e36ce8ead5d24ff1c19259ad34b3082205c8a21f7eb",
|
|
20
20
|
"size_bytes": 98676
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
23
|
"media_type": "application/json",
|
|
24
|
-
"path": "schemas/AcceptedPacketPath.schema.json",
|
|
24
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AcceptedPacketPath.schema.json",
|
|
25
25
|
"sha256": "ad47bb0eb8c0ba5ce901f9998f1d5f4be1b5d91472dfe5eda00f84560c6ca35e",
|
|
26
26
|
"size_bytes": 3243
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
"media_type": "application/json",
|
|
30
|
-
"path": "schemas/ActionabilityVector.schema.json",
|
|
30
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ActionabilityVector.schema.json",
|
|
31
31
|
"sha256": "73e08e61f0933efcc3d8eb11d8738c97e136395cdd073d6e1959d96a8d069f8c",
|
|
32
32
|
"size_bytes": 644
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
35
|
"media_type": "application/json",
|
|
36
|
-
"path": "schemas/
|
|
36
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ActionBoundaryRequirement.schema.json",
|
|
37
|
+
"sha256": "b72237a6bea8a39407aa10863d2e259bba1ce5ec708b05e6571c60189ed247cc",
|
|
38
|
+
"size_bytes": 555
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"media_type": "application/json",
|
|
42
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ActionCommit.schema.json",
|
|
37
43
|
"sha256": "8e110d674520ae6fbd5843795bdba15d5431378c2654cd29aa8a2132c9ccb8e5",
|
|
38
44
|
"size_bytes": 1568
|
|
39
45
|
},
|
|
40
46
|
{
|
|
41
47
|
"media_type": "application/json",
|
|
42
|
-
"path": "schemas/ActionGrammar.schema.json",
|
|
48
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ActionGrammar.schema.json",
|
|
43
49
|
"sha256": "3e1a3b4a40072108bed3b11ab207746a2b7f5baeca55ff935d9d145c7921cc04",
|
|
44
50
|
"size_bytes": 733
|
|
45
51
|
},
|
|
46
52
|
{
|
|
47
53
|
"media_type": "application/json",
|
|
48
|
-
"path": "schemas/
|
|
54
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ActivationGainEstimate.schema.json",
|
|
55
|
+
"sha256": "447808edf3c272a9aed801fa8476a836c8fb03b1707d0229e82de46234369992",
|
|
56
|
+
"size_bytes": 888
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"media_type": "application/json",
|
|
60
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ActivationThresholdCertificate.schema.json",
|
|
49
61
|
"sha256": "a280b5a0994ca9761c5a554bcadef773b79e9899efcb703d8b5b1a5459b5e295",
|
|
50
62
|
"size_bytes": 4374
|
|
51
63
|
},
|
|
52
64
|
{
|
|
53
65
|
"media_type": "application/json",
|
|
54
|
-
"path": "schemas/AdapterRouteSpec.schema.json",
|
|
66
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AdapterRouteSpec.schema.json",
|
|
55
67
|
"sha256": "3e6eaee66fdca96df03637e1f6041d9bd81055fddbd5f3264ce0cfacac3dc40d",
|
|
56
68
|
"size_bytes": 2427
|
|
57
69
|
},
|
|
58
70
|
{
|
|
59
71
|
"media_type": "application/json",
|
|
60
|
-
"path": "schemas/AdoptionFirstRunCommand.schema.json",
|
|
72
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AdoptionFirstRunCommand.schema.json",
|
|
61
73
|
"sha256": "33348257853522deb4a989b59671aaabcc408172b6f3d2f033d5de9a5995d5c8",
|
|
62
74
|
"size_bytes": 1055
|
|
63
75
|
},
|
|
64
76
|
{
|
|
65
77
|
"media_type": "application/json",
|
|
66
|
-
"path": "schemas/AdoptionReviewChecklist.schema.json",
|
|
78
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AdoptionReviewChecklist.schema.json",
|
|
67
79
|
"sha256": "97817605dd1bd1641e67cdfa892238d515e41ca75e8bc4d860daff586be030e9",
|
|
68
80
|
"size_bytes": 802
|
|
69
81
|
},
|
|
70
82
|
{
|
|
71
83
|
"media_type": "application/json",
|
|
72
|
-
"path": "schemas/AdoptionSafetyBoundary.schema.json",
|
|
84
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AdoptionSafetyBoundary.schema.json",
|
|
73
85
|
"sha256": "42575eeac5386591b92206b683fbe9f4fe3f5365756ae6321ebdbed9deda7848",
|
|
74
86
|
"size_bytes": 2624
|
|
75
87
|
},
|
|
76
88
|
{
|
|
77
89
|
"media_type": "application/json",
|
|
78
|
-
"path": "schemas/AgentAutonomyAuditReport.schema.json",
|
|
90
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentAutonomyAuditReport.schema.json",
|
|
79
91
|
"sha256": "45aa0278bce931e8e8f62037cc280ff99074ce047102f5d1785e1aafab228555",
|
|
80
92
|
"size_bytes": 5527
|
|
81
93
|
},
|
|
82
94
|
{
|
|
83
95
|
"media_type": "application/json",
|
|
84
|
-
"path": "schemas/AgentCheckReport.schema.json",
|
|
96
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentCheckReport.schema.json",
|
|
85
97
|
"sha256": "eb7ecc123e6454c4cb0c191e3f4a768a546d36b085a3246492aaa56caed4f1e2",
|
|
86
98
|
"size_bytes": 91668
|
|
87
99
|
},
|
|
88
100
|
{
|
|
89
101
|
"media_type": "application/json",
|
|
90
|
-
"path": "schemas/AgentCommandInvocation.schema.json",
|
|
102
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentCommandInvocation.schema.json",
|
|
91
103
|
"sha256": "fea8311042787e92c66bae8e673813864234d9c4e4c15cc4b34cbb100ebcc45e",
|
|
92
104
|
"size_bytes": 1503
|
|
93
105
|
},
|
|
94
106
|
{
|
|
95
107
|
"media_type": "application/json",
|
|
96
|
-
"path": "schemas/AgentCommunicationGuide.schema.json",
|
|
108
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentCommunicationGuide.schema.json",
|
|
97
109
|
"sha256": "3e8059525839c5c1674fbc2c75cbf71ab7e8a62cfa2cf343dba53f043b3df73e",
|
|
98
110
|
"size_bytes": 5608
|
|
99
111
|
},
|
|
100
112
|
{
|
|
101
113
|
"media_type": "application/json",
|
|
102
|
-
"path": "schemas/AgentCommunicationPolicy.schema.json",
|
|
114
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentCommunicationPolicy.schema.json",
|
|
103
115
|
"sha256": "9ed40085553edd5f96b8bfed0eaed02d70a79e10c44a372a8ccb5f352852ce2d",
|
|
104
116
|
"size_bytes": 1907
|
|
105
117
|
},
|
|
106
118
|
{
|
|
107
119
|
"media_type": "application/json",
|
|
108
|
-
"path": "schemas/AgentCommunicationStep.schema.json",
|
|
120
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentCommunicationStep.schema.json",
|
|
109
121
|
"sha256": "34012a76ebe82c9f29f750291d69b6f74394ad7da398e8d7249fd8d63e9f02d3",
|
|
110
122
|
"size_bytes": 1760
|
|
111
123
|
},
|
|
112
124
|
{
|
|
113
125
|
"media_type": "application/json",
|
|
114
|
-
"path": "schemas/AgentConnectorSpec.schema.json",
|
|
126
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentConnectorSpec.schema.json",
|
|
115
127
|
"sha256": "fcaca8ede2228475a79538518401ea27d18165c963faefdba2a621aacc1f25dd",
|
|
116
128
|
"size_bytes": 2105
|
|
117
129
|
},
|
|
118
130
|
{
|
|
119
131
|
"media_type": "application/json",
|
|
120
|
-
"path": "schemas/AgentFeatureReadinessReport.schema.json",
|
|
132
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentFeatureReadinessReport.schema.json",
|
|
121
133
|
"sha256": "3dce890382250d3ce4a23895758bf16653a42c0ae05abd2a619f6b8125c81d87",
|
|
122
134
|
"size_bytes": 5448
|
|
123
135
|
},
|
|
124
136
|
{
|
|
125
137
|
"media_type": "application/json",
|
|
126
|
-
"path": "schemas/AgentIdentityAttestation.schema.json",
|
|
138
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentIdentityAttestation.schema.json",
|
|
127
139
|
"sha256": "ee3ff8cd9afad1df8425d7128ad2e58f25dab996446aa54b11fc92646b07a909",
|
|
128
140
|
"size_bytes": 2019
|
|
129
141
|
},
|
|
130
142
|
{
|
|
131
143
|
"media_type": "application/json",
|
|
132
|
-
"path": "schemas/AgentIdentityCheckReport.schema.json",
|
|
144
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentIdentityCheckReport.schema.json",
|
|
133
145
|
"sha256": "f1e842c63f6dd75a28a9dfee33190e73facae027d566058e6eed3564564722b4",
|
|
134
146
|
"size_bytes": 4908
|
|
135
147
|
},
|
|
136
148
|
{
|
|
137
149
|
"media_type": "application/json",
|
|
138
|
-
"path": "schemas/AgentInboxRecord.schema.json",
|
|
150
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentInboxRecord.schema.json",
|
|
139
151
|
"sha256": "18829f3443fa0a100775786200ef63c516b926ddfbf277cb42a34f81629e7d68",
|
|
140
152
|
"size_bytes": 7474
|
|
141
153
|
},
|
|
142
154
|
{
|
|
143
155
|
"media_type": "application/json",
|
|
144
|
-
"path": "schemas/AgentIntakeReport.schema.json",
|
|
156
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentIntakeReport.schema.json",
|
|
145
157
|
"sha256": "5655bc0f5316dbeeb0f9618c5ee71114c3f7e0d3e0916b0c9477a4184fdba28e",
|
|
146
158
|
"size_bytes": 88735
|
|
147
159
|
},
|
|
148
160
|
{
|
|
149
161
|
"media_type": "application/json",
|
|
150
|
-
"path": "schemas/AgentIntakeRequest.schema.json",
|
|
162
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentIntakeRequest.schema.json",
|
|
151
163
|
"sha256": "1e1e875da6c3fe27df873d1c58bcaad794c899b0c1090bb93aedd9dd2cec7366",
|
|
152
164
|
"size_bytes": 56991
|
|
153
165
|
},
|
|
154
166
|
{
|
|
155
167
|
"media_type": "application/json",
|
|
156
|
-
"path": "schemas/AgentMessageContractReport.schema.json",
|
|
168
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentMessageContractReport.schema.json",
|
|
157
169
|
"sha256": "e6009b8914b30c45ba650bf65f3f2f162fdfe80683924fab70093058ce5de9fd",
|
|
158
170
|
"size_bytes": 4469
|
|
159
171
|
},
|
|
160
172
|
{
|
|
161
173
|
"media_type": "application/json",
|
|
162
|
-
"path": "schemas/AgentMessageDeliveryReport.schema.json",
|
|
174
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentMessageDeliveryReport.schema.json",
|
|
163
175
|
"sha256": "361027bd78151a2d67d8f65d236c8e9c0ebd2819ee380aa9018eea06e733cd70",
|
|
164
176
|
"size_bytes": 15549
|
|
165
177
|
},
|
|
166
178
|
{
|
|
167
179
|
"media_type": "application/json",
|
|
168
|
-
"path": "schemas/AgentMessageEnvelope.schema.json",
|
|
180
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentMessageEnvelope.schema.json",
|
|
169
181
|
"sha256": "94db08df98c6fe6bdc7b2318f6976209cc56a1e81be0f180ddbb0e668b575e44",
|
|
170
182
|
"size_bytes": 3985
|
|
171
183
|
},
|
|
172
184
|
{
|
|
173
185
|
"media_type": "application/json",
|
|
174
|
-
"path": "schemas/AgentMessageNonceLedger.schema.json",
|
|
186
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentMessageNonceLedger.schema.json",
|
|
175
187
|
"sha256": "4d186c3478b938b40ef521acdcf3b27f8913cce1e4b320856c507a7a4a96dbb2",
|
|
176
188
|
"size_bytes": 988
|
|
177
189
|
},
|
|
178
190
|
{
|
|
179
191
|
"media_type": "application/json",
|
|
180
|
-
"path": "schemas/AgentMessageVerificationContext.schema.json",
|
|
192
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentMessageVerificationContext.schema.json",
|
|
181
193
|
"sha256": "6081f402a4dc1385885f1a5189e4f2131a208730e682391ca977826cdd06a262",
|
|
182
194
|
"size_bytes": 1428
|
|
183
195
|
},
|
|
184
196
|
{
|
|
185
197
|
"media_type": "application/json",
|
|
186
|
-
"path": "schemas/AgentNetworkReadinessReport.schema.json",
|
|
198
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentNetworkReadinessReport.schema.json",
|
|
187
199
|
"sha256": "4e0692f5e49397bbce31e55ac97a8143e6bbba8b7abf91736476dfe3ad60159b",
|
|
188
200
|
"size_bytes": 2507
|
|
189
201
|
},
|
|
190
202
|
{
|
|
191
203
|
"media_type": "application/json",
|
|
192
|
-
"path": "schemas/AgentNextActionReport.schema.json",
|
|
204
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentNextActionReport.schema.json",
|
|
193
205
|
"sha256": "42d40810b9e2f8353e1e811c0e7d67d12c1756b3641fdf54e05210ab5c50e788",
|
|
194
206
|
"size_bytes": 1758
|
|
195
207
|
},
|
|
196
208
|
{
|
|
197
209
|
"media_type": "application/json",
|
|
198
|
-
"path": "schemas/AgentPacketExchangeReport.schema.json",
|
|
210
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentPacketExchangeReport.schema.json",
|
|
199
211
|
"sha256": "9fc9648f804520acbeeb33af906cfe7f4504d17dcbaef5f03ad4a13a98164c02",
|
|
200
212
|
"size_bytes": 12502
|
|
201
213
|
},
|
|
202
214
|
{
|
|
203
215
|
"media_type": "application/json",
|
|
204
|
-
"path": "schemas/AgentPeerRecord.schema.json",
|
|
216
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentPeerRecord.schema.json",
|
|
205
217
|
"sha256": "1d47eec5b9c1859ff1244f58afedaea911f1d83a40758c7d2329641a7949a705",
|
|
206
218
|
"size_bytes": 1680
|
|
207
219
|
},
|
|
208
220
|
{
|
|
209
221
|
"media_type": "application/json",
|
|
210
|
-
"path": "schemas/AgentPolicyIdentity.schema.json",
|
|
222
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentPolicyIdentity.schema.json",
|
|
211
223
|
"sha256": "c1dcc2182d9d11bcd9c9c8edacef499a4429b0bf3a931fd2d1f570d13e11032f",
|
|
212
224
|
"size_bytes": 1643
|
|
213
225
|
},
|
|
214
226
|
{
|
|
215
227
|
"media_type": "application/json",
|
|
216
|
-
"path": "schemas/AgentPopulationState.schema.json",
|
|
228
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentPopulationState.schema.json",
|
|
217
229
|
"sha256": "12080c32593743ad896da5b0a61575447b93408b4a611a74d01de01ae801d4d9",
|
|
218
230
|
"size_bytes": 64836
|
|
219
231
|
},
|
|
220
232
|
{
|
|
221
233
|
"media_type": "application/json",
|
|
222
|
-
"path": "schemas/AgentRelayReadinessReport.schema.json",
|
|
234
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentRelayReadinessReport.schema.json",
|
|
223
235
|
"sha256": "1e3ba0f1e36dde6b827feddae535046aca83d0a8ba52ffc8a7886c8f81ac6f80",
|
|
224
236
|
"size_bytes": 2866
|
|
225
237
|
},
|
|
226
238
|
{
|
|
227
239
|
"media_type": "application/json",
|
|
228
|
-
"path": "schemas/AgentRunbookReport.schema.json",
|
|
240
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentRunbookReport.schema.json",
|
|
229
241
|
"sha256": "badaa0b4a641f04d05fbce1c6a5fe6e5fbf9a8f38e79620ec27d62d350483149",
|
|
230
242
|
"size_bytes": 2195
|
|
231
243
|
},
|
|
232
244
|
{
|
|
233
245
|
"media_type": "application/json",
|
|
234
|
-
"path": "schemas/AgentRuntimeConfig.schema.json",
|
|
246
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentRuntimeConfig.schema.json",
|
|
235
247
|
"sha256": "759700d89ef1de741e39b33c077a0ff0b15bada5360353bb2343dcd6583f9e55",
|
|
236
248
|
"size_bytes": 1829
|
|
237
249
|
},
|
|
238
250
|
{
|
|
239
251
|
"media_type": "application/json",
|
|
240
|
-
"path": "schemas/AgentTask.schema.json",
|
|
252
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentTask.schema.json",
|
|
241
253
|
"sha256": "0487262b6c2d2dc184f8353263a117d3a4a5e3a26832c3feffe383e765ded2e2",
|
|
242
254
|
"size_bytes": 2160
|
|
243
255
|
},
|
|
244
256
|
{
|
|
245
257
|
"media_type": "application/json",
|
|
246
|
-
"path": "schemas/AgentToOperatorRequest.schema.json",
|
|
258
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentToOperatorRequest.schema.json",
|
|
247
259
|
"sha256": "b2320f6536a67a3601b39d526681b2e596bda56488244b4fb69a396f46b5f142",
|
|
248
260
|
"size_bytes": 6163
|
|
249
261
|
},
|
|
250
262
|
{
|
|
251
263
|
"media_type": "application/json",
|
|
252
|
-
"path": "schemas/AgentWorkflowGuide.schema.json",
|
|
264
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentWorkflowGuide.schema.json",
|
|
253
265
|
"sha256": "36a9e1b0791e12c4d982b08ba3dc5d7bc65816154cb914e3ded30f92c8b0990a",
|
|
254
266
|
"size_bytes": 2936
|
|
255
267
|
},
|
|
256
268
|
{
|
|
257
269
|
"media_type": "application/json",
|
|
258
|
-
"path": "schemas/AgentWorkflowStep.schema.json",
|
|
270
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AgentWorkflowStep.schema.json",
|
|
259
271
|
"sha256": "665827eb0f0d44f1c7f7f23dee667004d02b340f021fd2c218b5bcb942527126",
|
|
260
272
|
"size_bytes": 1160
|
|
261
273
|
},
|
|
262
274
|
{
|
|
263
275
|
"media_type": "application/json",
|
|
264
|
-
"path": "schemas/AlgebraLawCertificate.schema.json",
|
|
276
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AlgebraLawCertificate.schema.json",
|
|
265
277
|
"sha256": "f4a1d82eb4d2713ee27a97dc3d094ecfb9f3c1c6611decc1e96bdc8e17c61c33",
|
|
266
278
|
"size_bytes": 2471
|
|
267
279
|
},
|
|
268
280
|
{
|
|
269
281
|
"media_type": "application/json",
|
|
270
|
-
"path": "schemas/ALTAccelerationCertificate.schema.json",
|
|
282
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ALTAccelerationCertificate.schema.json",
|
|
271
283
|
"sha256": "9c01cb3d4a2732d0e3aa35a55a94a4e5b086f5a69b029a968811af7970012fa3",
|
|
272
284
|
"size_bytes": 4028
|
|
273
285
|
},
|
|
274
286
|
{
|
|
275
287
|
"media_type": "application/json",
|
|
276
|
-
"path": "schemas/ALTAdmissionDecision.schema.json",
|
|
288
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ALTAdmissionDecision.schema.json",
|
|
277
289
|
"sha256": "61c10b5d302b458e580c81ccaedb8defdb2c101dc36a2cd456760c2b0534d460",
|
|
278
290
|
"size_bytes": 4580
|
|
279
291
|
},
|
|
280
292
|
{
|
|
281
293
|
"media_type": "application/json",
|
|
282
|
-
"path": "schemas/ALTCARACertificate.schema.json",
|
|
294
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ALTCARACertificate.schema.json",
|
|
283
295
|
"sha256": "7f2c25e2dc7947ae05a2dce7f93df5c09f4c6737548c39ab647abebc92c95e2f",
|
|
284
296
|
"size_bytes": 7060
|
|
285
297
|
},
|
|
286
298
|
{
|
|
287
299
|
"media_type": "application/json",
|
|
288
|
-
"path": "schemas/ALTDeprecationRecord.schema.json",
|
|
300
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ALTDeprecationRecord.schema.json",
|
|
289
301
|
"sha256": "23c426f14b1863f715a9c3dd6de715fb487dbf853b3630534f7b6e95486369d7",
|
|
290
302
|
"size_bytes": 3878
|
|
291
303
|
},
|
|
292
304
|
{
|
|
293
305
|
"media_type": "application/json",
|
|
294
|
-
"path": "schemas/
|
|
306
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AltEcptLiftReport.schema.json",
|
|
307
|
+
"sha256": "fe21bb1fff07cab1abfcd921fe2c392a93f4001b3b2904dcf41cd5798abdef55",
|
|
308
|
+
"size_bytes": 10379
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"media_type": "application/json",
|
|
312
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ALTKernelTransitionReport.schema.json",
|
|
295
313
|
"sha256": "0cc6f0170f8ca2b9a5c17b800a45fa82eb761c9a703cfe7f2edb7641f97cdbf0",
|
|
296
314
|
"size_bytes": 4277
|
|
297
315
|
},
|
|
298
316
|
{
|
|
299
317
|
"media_type": "application/json",
|
|
300
|
-
"path": "schemas/
|
|
318
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AltLiftBlocker.schema.json",
|
|
319
|
+
"sha256": "5e37f02fd4278914d81c82b26dff5203c3271ad004ee623f0745fcc1df58ced9",
|
|
320
|
+
"size_bytes": 731
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"media_type": "application/json",
|
|
324
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ALTResurrectionRecord.schema.json",
|
|
301
325
|
"sha256": "056f0dbedff224fcfb904bf6db57d0ed1c609a3cf51db58a1b0119ef86470cca",
|
|
302
326
|
"size_bytes": 3875
|
|
303
327
|
},
|
|
304
328
|
{
|
|
305
329
|
"media_type": "application/json",
|
|
306
|
-
"path": "schemas/ASIProxyTargetContract.schema.json",
|
|
330
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ASIProxyTargetContract.schema.json",
|
|
307
331
|
"sha256": "585faeffffd2488d520a796b79cd608ce99a380f72763bfce0e9855e5bf72b15",
|
|
308
332
|
"size_bytes": 1197
|
|
309
333
|
},
|
|
310
334
|
{
|
|
311
335
|
"media_type": "application/json",
|
|
312
|
-
"path": "schemas/
|
|
336
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ASIProxyThresholdSpec.schema.json",
|
|
337
|
+
"sha256": "68190b1e5e58ccb8f6d5a3e322faedeb04efa67c10c15e06a00dca659158a6e2",
|
|
338
|
+
"size_bytes": 2054
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"media_type": "application/json",
|
|
342
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ASIProxyThresholdStatus.schema.json",
|
|
343
|
+
"sha256": "3a6899adf8c5ec5431df51bddd6d4a7a679c00a4a71244d158728ca22716bdb3",
|
|
344
|
+
"size_bytes": 14023
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"media_type": "application/json",
|
|
348
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AttentionBudgetLedger.schema.json",
|
|
349
|
+
"sha256": "61ffb7a530869dd4419371e641b6fd10164efe157d0282667a1b30c307a1038d",
|
|
350
|
+
"size_bytes": 939
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"media_type": "application/json",
|
|
354
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AttestationRecord.schema.json",
|
|
313
355
|
"sha256": "74c3d7b7aac3d5bbeedf6fea650d3eaec5809f63ed08ff0a80980c6f30efe724",
|
|
314
356
|
"size_bytes": 1422
|
|
315
357
|
},
|
|
316
358
|
{
|
|
317
359
|
"media_type": "application/json",
|
|
318
|
-
"path": "schemas/
|
|
319
|
-
"sha256": "
|
|
320
|
-
"size_bytes":
|
|
360
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AutocatalyticClosureReport.schema.json",
|
|
361
|
+
"sha256": "4bafe29e0fe6190673fb45213ef71ee3f9b758d6910b734758234112a1698497",
|
|
362
|
+
"size_bytes": 10014
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"media_type": "application/json",
|
|
366
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/AutocatalyticClosureWitness.schema.json",
|
|
367
|
+
"sha256": "b0df7720a5ad3fde212ab339fc6098fde897853f5da647e22b543fa4ea41a723",
|
|
368
|
+
"size_bytes": 1542
|
|
321
369
|
},
|
|
322
370
|
{
|
|
323
371
|
"media_type": "application/json",
|
|
324
|
-
"path": "schemas/BaselineRefreshCertificate.schema.json",
|
|
372
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/BaselineRefreshCertificate.schema.json",
|
|
325
373
|
"sha256": "a08d449b18dd57b0cdf13f32e07f31e47529a97869f59d11037beedaed842904",
|
|
326
374
|
"size_bytes": 4045
|
|
327
375
|
},
|
|
328
376
|
{
|
|
329
377
|
"media_type": "application/json",
|
|
330
|
-
"path": "schemas/
|
|
378
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/BasinReachabilityProxy.schema.json",
|
|
379
|
+
"sha256": "a781bb674a42c66e32235a2981c0a84868a01c606948a01d16fd1bc4c37ad695",
|
|
380
|
+
"size_bytes": 480
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"media_type": "application/json",
|
|
384
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/BasinReachabilityReport.schema.json",
|
|
331
385
|
"sha256": "5eff1c26e8f2afb351b815552c6af0dba245f5a74685a2bcb330cf2a7d434244",
|
|
332
386
|
"size_bytes": 5601
|
|
333
387
|
},
|
|
334
388
|
{
|
|
335
389
|
"media_type": "application/json",
|
|
336
|
-
"path": "schemas/BottleneckCandidate.schema.json",
|
|
390
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/BottleneckCandidate.schema.json",
|
|
337
391
|
"sha256": "21be42eecd130f21ca27f855156c98b3728f466421a6527801d88d70e2149197",
|
|
338
392
|
"size_bytes": 2270
|
|
339
393
|
},
|
|
340
394
|
{
|
|
341
395
|
"media_type": "application/json",
|
|
342
|
-
"path": "schemas/
|
|
396
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/BottleneckClassDiagnosis.schema.json",
|
|
397
|
+
"sha256": "91b98dee81323a8f487b4868eaea276dfd83ad98a4070cc9ae9c8ff4902de855",
|
|
398
|
+
"size_bytes": 2704
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"media_type": "application/json",
|
|
402
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/BottleneckIntervention.schema.json",
|
|
343
403
|
"sha256": "59ea929185392d56816289e674ef6ed6028cf6a5deb9235148b76f4503f44ffe",
|
|
344
404
|
"size_bytes": 3617
|
|
345
405
|
},
|
|
346
406
|
{
|
|
347
407
|
"media_type": "application/json",
|
|
348
|
-
"path": "schemas/
|
|
408
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/BottleneckInversionCandidate.schema.json",
|
|
409
|
+
"sha256": "ad60868da064499c2330360b901b7ef104362ad822c272560541571993b8540c",
|
|
410
|
+
"size_bytes": 6444
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"media_type": "application/json",
|
|
414
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/BottleneckInversionPlan.schema.json",
|
|
349
415
|
"sha256": "57abd1d41c5642c09c2201de59eb9bc2a0030355d9750294d278e99acfb0e317",
|
|
350
416
|
"size_bytes": 5103
|
|
351
417
|
},
|
|
352
418
|
{
|
|
353
419
|
"media_type": "application/json",
|
|
354
|
-
"path": "schemas/
|
|
420
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/BottleneckInversionReport.schema.json",
|
|
421
|
+
"sha256": "0dae816e916344542d1f83b3cecf35ccebfd46a7c5f6f20c548492f2e86fdac3",
|
|
422
|
+
"size_bytes": 13206
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"media_type": "application/json",
|
|
426
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/BottleneckWitnessReport.schema.json",
|
|
355
427
|
"sha256": "65bdbd689cf9c66a6d3bc2e6ab601fafdc9f3c5c4cd374cbc40e932a4dc2034d",
|
|
356
428
|
"size_bytes": 2834
|
|
357
429
|
},
|
|
358
430
|
{
|
|
359
431
|
"media_type": "application/json",
|
|
360
|
-
"path": "schemas/BoundaryGeneratorRecord.schema.json",
|
|
432
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/BoundaryGeneratorRecord.schema.json",
|
|
361
433
|
"sha256": "84b92099db600511f21b1746de5c66638a25e6d30847bbfa834bd04471beadc0",
|
|
362
434
|
"size_bytes": 1132
|
|
363
435
|
},
|
|
364
436
|
{
|
|
365
437
|
"media_type": "application/json",
|
|
366
|
-
"path": "schemas/BoundaryScriptRecord.schema.json",
|
|
438
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/BoundaryScriptRecord.schema.json",
|
|
367
439
|
"sha256": "d187af1cf2e4f64ce8975d31f3ad2c718f37bfb278734fbeb860ee4459ccd60a",
|
|
368
440
|
"size_bytes": 573
|
|
369
441
|
},
|
|
370
442
|
{
|
|
371
443
|
"media_type": "application/json",
|
|
372
|
-
"path": "schemas/BudgetedToleranceScheduler.schema.json",
|
|
444
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/BudgetedToleranceScheduler.schema.json",
|
|
373
445
|
"sha256": "6a51a5e9e80e5e640d4c22cd5cb709926046139d11d055b43e7e20814ad39700",
|
|
374
446
|
"size_bytes": 1226
|
|
375
447
|
},
|
|
376
448
|
{
|
|
377
449
|
"media_type": "application/json",
|
|
378
|
-
"path": "schemas/bundle.schema.json",
|
|
379
|
-
"sha256": "
|
|
380
|
-
"size_bytes":
|
|
450
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/bundle.schema.json",
|
|
451
|
+
"sha256": "1eea96f633e26386f317f8177b701c3cd20b3bf8e96b4256de2f77e34fc77923",
|
|
452
|
+
"size_bytes": 3222456
|
|
381
453
|
},
|
|
382
454
|
{
|
|
383
455
|
"media_type": "application/json",
|
|
384
|
-
"path": "schemas/CalibrationCertificate.schema.json",
|
|
456
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CalibrationCertificate.schema.json",
|
|
385
457
|
"sha256": "2e394da829c2b34ee81544d093d119676afb415ac9faaa07eb6035b654764938",
|
|
386
458
|
"size_bytes": 5850
|
|
387
459
|
},
|
|
388
460
|
{
|
|
389
461
|
"media_type": "application/json",
|
|
390
|
-
"path": "schemas/CanonicalImplementationReadinessReport.schema.json",
|
|
462
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CanonicalImplementationReadinessReport.schema.json",
|
|
391
463
|
"sha256": "dfe9887d40cfdcfd0dd8a38c2eb7b65c0c2f6a6a774ca8369083286cd7b56191",
|
|
392
464
|
"size_bytes": 7789
|
|
393
465
|
},
|
|
394
466
|
{
|
|
395
467
|
"media_type": "application/json",
|
|
396
|
-
"path": "schemas/CanonicalManifest.schema.json",
|
|
468
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CanonicalManifest.schema.json",
|
|
397
469
|
"sha256": "7ac61d19dc538211faca2161aa5e3797dc7e9d1b8fbf9a277df3e8fd0b14682e",
|
|
398
470
|
"size_bytes": 2043
|
|
399
471
|
},
|
|
400
472
|
{
|
|
401
473
|
"media_type": "application/json",
|
|
402
|
-
"path": "schemas/CanonicalManifestRecord.schema.json",
|
|
474
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CanonicalManifestRecord.schema.json",
|
|
403
475
|
"sha256": "c26ade2c8c432386a876501b46337d9bb2e0671f0f9531686b325346a67681a5",
|
|
404
476
|
"size_bytes": 1152
|
|
405
477
|
},
|
|
406
478
|
{
|
|
407
479
|
"media_type": "application/json",
|
|
408
|
-
"path": "schemas/CanonicalTheorySnapshotSummary.schema.json",
|
|
480
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CanonicalTheorySnapshotSummary.schema.json",
|
|
409
481
|
"sha256": "2cfa648c960c9eca06e93157b5381e7b734b3f93938dc74755d6d33e9750e9f7",
|
|
410
482
|
"size_bytes": 2260
|
|
411
483
|
},
|
|
412
484
|
{
|
|
413
485
|
"media_type": "application/json",
|
|
414
|
-
"path": "schemas/CapabilityBasinContract.schema.json",
|
|
486
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CapabilityBasinContract.schema.json",
|
|
415
487
|
"sha256": "3cc942d9f122f88d4fc455c16666de690f4ba6e6ca22e9fa68ab1464602e5802",
|
|
416
488
|
"size_bytes": 1294
|
|
417
489
|
},
|
|
418
490
|
{
|
|
419
491
|
"media_type": "application/json",
|
|
420
|
-
"path": "schemas/
|
|
492
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CapabilityExpressionPath.schema.json",
|
|
493
|
+
"sha256": "a951a70f6ceac040f86a33b4a84dc4a6d0873335f067544b5e5f59af6e7b006e",
|
|
494
|
+
"size_bytes": 937
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"media_type": "application/json",
|
|
498
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CapabilityPacketCandidate.schema.json",
|
|
421
499
|
"sha256": "f6ed9f187ddf31cb79a0837ca956d72b00acd5832d8f93201df0a7548d52ae03",
|
|
422
500
|
"size_bytes": 5363
|
|
423
501
|
},
|
|
424
502
|
{
|
|
425
503
|
"media_type": "application/json",
|
|
426
|
-
"path": "schemas/CapabilityPacketRegistry.schema.json",
|
|
504
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CapabilityPacketRegistry.schema.json",
|
|
427
505
|
"sha256": "0190599e1d9b23c61c2d3586535093d2b8085b8e4b2297ef8520b04d028b90d9",
|
|
428
506
|
"size_bytes": 10800
|
|
429
507
|
},
|
|
430
508
|
{
|
|
431
509
|
"media_type": "application/json",
|
|
432
|
-
"path": "schemas/CapabilityStateVector.schema.json",
|
|
510
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CapabilityStateVector.schema.json",
|
|
433
511
|
"sha256": "d132e7928d9f2d0ef4e373e5ae40662afbed73d076ec11c0eabdd82b9b2b7578",
|
|
434
512
|
"size_bytes": 3961
|
|
435
513
|
},
|
|
436
514
|
{
|
|
437
515
|
"media_type": "application/json",
|
|
438
|
-
"path": "schemas/
|
|
516
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CapitalToPathContribution.schema.json",
|
|
517
|
+
"sha256": "f0b20adbcc5bfe74965d382d2a9d33600aae02e64e50a5c80e289801e630d8e5",
|
|
518
|
+
"size_bytes": 1173
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"media_type": "application/json",
|
|
522
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CascadeResidualPotential.schema.json",
|
|
439
523
|
"sha256": "373241f14b7b1bef206772431c510edc3510c85fd706bb4203a308dd8ff169d4",
|
|
440
524
|
"size_bytes": 666
|
|
441
525
|
},
|
|
442
526
|
{
|
|
443
527
|
"media_type": "application/json",
|
|
444
|
-
"path": "schemas/CertificateCompilerRecord.schema.json",
|
|
528
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CertificateCompilerRecord.schema.json",
|
|
445
529
|
"sha256": "e98fd57908a7750741d3d487084ccda33b7610cbbf3718b6b00992e487570ab7",
|
|
446
530
|
"size_bytes": 1784
|
|
447
531
|
},
|
|
448
532
|
{
|
|
449
533
|
"media_type": "application/json",
|
|
450
|
-
"path": "schemas/CertificateFamily.schema.json",
|
|
534
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CertificateFamily.schema.json",
|
|
451
535
|
"sha256": "f5e3f887aa1b96181ce42010fab8cee5e02f00458bb9fa2ff23dc62caa2df3ae",
|
|
452
536
|
"size_bytes": 9427
|
|
453
537
|
},
|
|
454
538
|
{
|
|
455
539
|
"media_type": "application/json",
|
|
456
|
-
"path": "schemas/CertificateRoute.schema.json",
|
|
540
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CertificateRoute.schema.json",
|
|
457
541
|
"sha256": "c4dd5b836b9e9fe1910034e73b97ae7319474cfaeb6908c1990ccb3364dda197",
|
|
458
542
|
"size_bytes": 2905
|
|
459
543
|
},
|
|
460
544
|
{
|
|
461
545
|
"media_type": "application/json",
|
|
462
|
-
"path": "schemas/CertifiedAbstractionCapital.schema.json",
|
|
546
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CertifiedAbstractionCapital.schema.json",
|
|
463
547
|
"sha256": "f33705a5f438009f9e7b775bf558b13f28e84c100fae75f3e1172a1df78b2a38",
|
|
464
548
|
"size_bytes": 3745
|
|
465
549
|
},
|
|
466
550
|
{
|
|
467
551
|
"media_type": "application/json",
|
|
468
|
-
"path": "schemas/CheckerContext.schema.json",
|
|
552
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CheckerContext.schema.json",
|
|
469
553
|
"sha256": "b890f22bd1f8dce39f91ca5753e18a0de5ca8ea6963362de616eed4850c5328e",
|
|
470
554
|
"size_bytes": 6336
|
|
471
555
|
},
|
|
472
556
|
{
|
|
473
557
|
"media_type": "application/json",
|
|
474
|
-
"path": "schemas/CheckResult.schema.json",
|
|
558
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CheckResult.schema.json",
|
|
475
559
|
"sha256": "9b76ac6a9b9f142a2c35e080b42a8b063eb2fb6aff9ab463dddac057e7b1dfda",
|
|
476
560
|
"size_bytes": 8191
|
|
477
561
|
},
|
|
478
562
|
{
|
|
479
563
|
"media_type": "application/json",
|
|
480
|
-
"path": "schemas/ClosedLoopAgentIteration.schema.json",
|
|
564
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ClosedLoopAgentIteration.schema.json",
|
|
481
565
|
"sha256": "79626c9bf41bacb2a644efc7aa6bb8eea0b69054a6d77c1c14533c6bb6a21d99",
|
|
482
566
|
"size_bytes": 26457
|
|
483
567
|
},
|
|
484
568
|
{
|
|
485
569
|
"media_type": "application/json",
|
|
486
|
-
"path": "schemas/
|
|
570
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ClosureAbstentionReason.schema.json",
|
|
571
|
+
"sha256": "ae5e65c8f1cab353295c19287104c281b5fe77e60813e5979187adeb2253e1b7",
|
|
572
|
+
"size_bytes": 458
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"media_type": "application/json",
|
|
576
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ClosureCertificateCandidate.schema.json",
|
|
577
|
+
"sha256": "2551c361426dbf2194469b1403357bcc39c917f836c5aa6b00b2518a81fe6eb6",
|
|
578
|
+
"size_bytes": 2448
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"media_type": "application/json",
|
|
582
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ClosureDefect.schema.json",
|
|
583
|
+
"sha256": "ab3dfb07fe2773b14a63e16c608aec8bf5ae9a232248002ba2c006a95c86098a",
|
|
584
|
+
"size_bytes": 552
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"media_type": "application/json",
|
|
588
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ClosureSupportHyperpath.schema.json",
|
|
589
|
+
"sha256": "eb4bb9031562cc405be724e6841b467418a9b8d929f8d974c714fff82aa848b5",
|
|
590
|
+
"size_bytes": 859
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"media_type": "application/json",
|
|
594
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CollectivePhaseAbstentionReport.schema.json",
|
|
595
|
+
"sha256": "3aa88f0aa00316b7ed33ffda0672dde56cb3811c882223a340e394bd61edf84a",
|
|
596
|
+
"size_bytes": 16223
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"media_type": "application/json",
|
|
600
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CollectivePhaseCertificate.schema.json",
|
|
487
601
|
"sha256": "62abf30a4e439dbea8342bddf1644efb106378fa6a88b58baab0df7640e0a57f",
|
|
488
602
|
"size_bytes": 35971
|
|
489
603
|
},
|
|
490
604
|
{
|
|
491
605
|
"media_type": "application/json",
|
|
492
|
-
"path": "schemas/
|
|
606
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CollectivePhaseCertificateCandidate.schema.json",
|
|
607
|
+
"sha256": "7c0000f9417c547d5fe6fd98279d76ee852b9c63b537b3f22cdbf818d45bb292",
|
|
608
|
+
"size_bytes": 18670
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"media_type": "application/json",
|
|
612
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CommercialReadinessSummary.schema.json",
|
|
493
613
|
"sha256": "177440e784d1fd416e508f468b9db06e88576964ee1609172f13832ce994d135",
|
|
494
614
|
"size_bytes": 3329
|
|
495
615
|
},
|
|
496
616
|
{
|
|
497
617
|
"media_type": "application/json",
|
|
498
|
-
"path": "schemas/ConfidenceLedger.schema.json",
|
|
618
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ConfidenceLedger.schema.json",
|
|
499
619
|
"sha256": "31db79dc4cc06e7e692818565ce0d536414fcf0de3e3c34f53493c860280d0e9",
|
|
500
620
|
"size_bytes": 546
|
|
501
621
|
},
|
|
502
622
|
{
|
|
503
623
|
"media_type": "application/json",
|
|
504
|
-
"path": "schemas/ContentAddressedEvidenceRef.schema.json",
|
|
624
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ContentAddressedEvidenceRef.schema.json",
|
|
505
625
|
"sha256": "78101eaceb93b77d5829edddd57645cddc08b26c25846e92f53949e88acfebba",
|
|
506
626
|
"size_bytes": 915
|
|
507
627
|
},
|
|
508
628
|
{
|
|
509
629
|
"media_type": "application/json",
|
|
510
|
-
"path": "schemas/ControlledTransition.schema.json",
|
|
630
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ControlledTransition.schema.json",
|
|
511
631
|
"sha256": "dfde19d50ab7ebdfd7020cedf62024564eb10f5d000d9c18a5fc84886746b63d",
|
|
512
632
|
"size_bytes": 2019
|
|
513
633
|
},
|
|
514
634
|
{
|
|
515
635
|
"media_type": "application/json",
|
|
516
|
-
"path": "schemas/
|
|
636
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CrossContextTransferWitness.schema.json",
|
|
637
|
+
"sha256": "4480e4e171d1cc748ac1d625492704b42814f268e0e8de5dcdf2657412d86f07",
|
|
638
|
+
"size_bytes": 1030
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"media_type": "application/json",
|
|
642
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/CryptographicAgentIdentity.schema.json",
|
|
517
643
|
"sha256": "88fbe91886d8c8dd86530773a38444482985102112864b29f336a256a5429bbb",
|
|
518
644
|
"size_bytes": 3899
|
|
519
645
|
},
|
|
520
646
|
{
|
|
521
647
|
"media_type": "application/json",
|
|
522
|
-
"path": "schemas/DiagnosticReservePolicy.schema.json",
|
|
648
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/DiagnosticReservePolicy.schema.json",
|
|
523
649
|
"sha256": "61650eb58ce02115dee03d14a711ab6107741ebb8fef5104c50a797e916d725c",
|
|
524
650
|
"size_bytes": 505
|
|
525
651
|
},
|
|
526
652
|
{
|
|
527
653
|
"media_type": "application/json",
|
|
528
|
-
"path": "schemas/
|
|
654
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/DiagnosticReserveReport.schema.json",
|
|
655
|
+
"sha256": "dcbc79ef1cb726c4ff4c1c09b52230d3bb9a94f4117ab2646953ed548ff78878",
|
|
656
|
+
"size_bytes": 2061
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"media_type": "application/json",
|
|
660
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/DischargeRouteBinding.schema.json",
|
|
529
661
|
"sha256": "bac125c1e7402a3682972128a1c981f7c333505574cfd5942c40b371de86d2c5",
|
|
530
662
|
"size_bytes": 2242
|
|
531
663
|
},
|
|
532
664
|
{
|
|
533
665
|
"media_type": "application/json",
|
|
534
|
-
"path": "schemas/DKWCertificate.schema.json",
|
|
666
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/DKWCertificate.schema.json",
|
|
535
667
|
"sha256": "36ecf9c120dd694a6eba61dae989da7fdd802d7bae6fa551368a4f9184c5ebda",
|
|
536
668
|
"size_bytes": 571
|
|
537
669
|
},
|
|
538
670
|
{
|
|
539
671
|
"media_type": "application/json",
|
|
540
|
-
"path": "schemas/DomainTypedSemiring.schema.json",
|
|
672
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/DomainTypedSemiring.schema.json",
|
|
541
673
|
"sha256": "da40263822321af344182b798b4ec929d31f36569617e6c904f5fba5148d6060",
|
|
542
674
|
"size_bytes": 1109
|
|
543
675
|
},
|
|
544
676
|
{
|
|
545
677
|
"media_type": "application/json",
|
|
546
|
-
"path": "schemas/DominanceWitness.schema.json",
|
|
678
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/DominanceWitness.schema.json",
|
|
547
679
|
"sha256": "1d54a06ba70fbf68dcf3f93e127f01f90fa49dfd2acff1f9298fddae50c031f7",
|
|
548
680
|
"size_bytes": 585
|
|
549
681
|
},
|
|
550
682
|
{
|
|
551
683
|
"media_type": "application/json",
|
|
552
|
-
"path": "schemas/
|
|
684
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/DownstreamSearchCostDelta.schema.json",
|
|
685
|
+
"sha256": "fb18f5195954c7821643820dfe65ec4d00ddd017c4d63304c4ef5aace9435d10",
|
|
686
|
+
"size_bytes": 995
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"media_type": "application/json",
|
|
690
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EcologyAutocatalyticClosureWitness.schema.json",
|
|
691
|
+
"sha256": "914c8d73c75ecfe06de5b86cd8ce27462b058d09ae74696085a2f52f5e5d67c5",
|
|
692
|
+
"size_bytes": 4304
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"media_type": "application/json",
|
|
696
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EdgeRelationVerificationReport.schema.json",
|
|
553
697
|
"sha256": "72b34858f5a2801c4aa0eebd307b1c35deae5525ddcbbdf5807d9b7d81535eb8",
|
|
554
698
|
"size_bytes": 3674
|
|
555
699
|
},
|
|
556
700
|
{
|
|
557
701
|
"media_type": "application/json",
|
|
558
|
-
"path": "schemas/EdgeRelationVerifierSpec.schema.json",
|
|
702
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EdgeRelationVerifierSpec.schema.json",
|
|
559
703
|
"sha256": "18f692c70bc2284a2bc0db92114ab694d88515d52eaaf74c267241a388fdb6b5",
|
|
560
704
|
"size_bytes": 1554
|
|
561
705
|
},
|
|
562
706
|
{
|
|
563
707
|
"media_type": "application/json",
|
|
564
|
-
"path": "schemas/EdgeWitness.schema.json",
|
|
708
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EdgeWitness.schema.json",
|
|
565
709
|
"sha256": "e303ef8fcf3b525411a03cccddf9a771a99990236ec4e178f37197e54803ef21",
|
|
566
710
|
"size_bytes": 1501
|
|
567
711
|
},
|
|
568
712
|
{
|
|
569
713
|
"media_type": "application/json",
|
|
570
|
-
"path": "schemas/EdgeWitnessCertificate.schema.json",
|
|
714
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EdgeWitnessCertificate.schema.json",
|
|
571
715
|
"sha256": "8819bb39414cd4e67568435fc92cfd7089e04a899347f83f6397025c6de2ab42",
|
|
572
716
|
"size_bytes": 4270
|
|
573
717
|
},
|
|
574
718
|
{
|
|
575
719
|
"media_type": "application/json",
|
|
576
|
-
"path": "schemas/
|
|
720
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EffectiveGraphResidualSummary.schema.json",
|
|
721
|
+
"sha256": "9da18b088f9c7a5edb9d5d6e9efc9b277cbbdaac9c5c720fe7c182c7e13d132b",
|
|
722
|
+
"size_bytes": 881
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"media_type": "application/json",
|
|
726
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EffectivePacketEdge.schema.json",
|
|
727
|
+
"sha256": "2ba38a5e3b8c74c1c1d5a675ffa9b9c3a00880c60945f5fb772e841a857a6863",
|
|
728
|
+
"size_bytes": 3359
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"media_type": "application/json",
|
|
732
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EffectivePacketEligibility.schema.json",
|
|
733
|
+
"sha256": "a2bea207a1f8ce238cc2b3d50c06bd0535d7496b59db5859a5254a9fedb9a241",
|
|
734
|
+
"size_bytes": 2121
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"media_type": "application/json",
|
|
738
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EffectivePacketGraph.schema.json",
|
|
739
|
+
"sha256": "87a92b34c227bf5d48f3762f0030cc82474e5420e5dc909c0c0292eecc95eb17",
|
|
740
|
+
"size_bytes": 12263
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"media_type": "application/json",
|
|
744
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EffectivePacketGraphBuildReport.schema.json",
|
|
745
|
+
"sha256": "22553cc40db32027d98de21f311eb07120d075219bdfcf7c3ba6f15251a8db20",
|
|
746
|
+
"size_bytes": 14170
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"media_type": "application/json",
|
|
750
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EffectivePacketNode.schema.json",
|
|
751
|
+
"sha256": "3674ff772fa0bf8a540f2288492f3d85e77f5e626159a86bc187dcf80b756ad1",
|
|
752
|
+
"size_bytes": 5255
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"media_type": "application/json",
|
|
756
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EProcessCertificate.schema.json",
|
|
577
757
|
"sha256": "7bb126988e869e439128c9259598dcf8112228032f996a7e7aee14c98fd38e2f",
|
|
578
758
|
"size_bytes": 413
|
|
579
759
|
},
|
|
580
760
|
{
|
|
581
761
|
"media_type": "application/json",
|
|
582
|
-
"path": "schemas/EvidenceArtifact.schema.json",
|
|
762
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EvidenceArtifact.schema.json",
|
|
583
763
|
"sha256": "3387eb6cac472f3eb10ff0ba2147a804875858c994686fe39683bab1e3b24565",
|
|
584
764
|
"size_bytes": 2235
|
|
585
765
|
},
|
|
586
766
|
{
|
|
587
767
|
"media_type": "application/json",
|
|
588
|
-
"path": "schemas/EvidenceEnvelopeStoreRecord.schema.json",
|
|
768
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EvidenceEnvelopeStoreRecord.schema.json",
|
|
589
769
|
"sha256": "07cb0e54058b494b9c3d0eabe4d387f3ac00ff0c82d0466113b5945c310735d1",
|
|
590
770
|
"size_bytes": 2207
|
|
591
771
|
},
|
|
592
772
|
{
|
|
593
773
|
"media_type": "application/json",
|
|
594
|
-
"path": "schemas/EvidencePolicy.schema.json",
|
|
774
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EvidencePolicy.schema.json",
|
|
595
775
|
"sha256": "a3e3b8bc5ab086e5aa2c4e445aada043c2a250d29dc3b06f0c7280a26b9defac",
|
|
596
776
|
"size_bytes": 1466
|
|
597
777
|
},
|
|
598
778
|
{
|
|
599
779
|
"media_type": "application/json",
|
|
600
|
-
"path": "schemas/EvidenceResolutionBatch.schema.json",
|
|
780
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EvidenceResolutionBatch.schema.json",
|
|
601
781
|
"sha256": "9284f298cd5122d6cd0a7e3383d4fe81d4c5a7b0f5966a4957bffeaeb84d1a1c",
|
|
602
782
|
"size_bytes": 8506
|
|
603
783
|
},
|
|
604
784
|
{
|
|
605
785
|
"media_type": "application/json",
|
|
606
|
-
"path": "schemas/EvidenceVerificationProfile.schema.json",
|
|
786
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/EvidenceVerificationProfile.schema.json",
|
|
607
787
|
"sha256": "2061aeb280d26808a35d53e4c1ff5d4d255c0b2aae527e7961087b8cfd3d7d20",
|
|
608
788
|
"size_bytes": 2037
|
|
609
789
|
},
|
|
610
790
|
{
|
|
611
791
|
"media_type": "application/json",
|
|
612
|
-
"path": "schemas/ExecutableALTCertificatePacket.schema.json",
|
|
792
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ExecutableALTCertificatePacket.schema.json",
|
|
613
793
|
"sha256": "2613362611bdf3c93f25ca39dc4c3272c6f652f6b82e9d6b833f834877803017",
|
|
614
794
|
"size_bytes": 39009
|
|
615
795
|
},
|
|
616
796
|
{
|
|
617
797
|
"media_type": "application/json",
|
|
618
|
-
"path": "schemas/
|
|
798
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ExecutableClosureWitness.schema.json",
|
|
799
|
+
"sha256": "dd7fabeea6bfb2b7378173748f58cc2ae0d002100f18bae0231cd98cff6e4f98",
|
|
800
|
+
"size_bytes": 957
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"media_type": "application/json",
|
|
804
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ExecutablePathDensityReport.schema.json",
|
|
805
|
+
"sha256": "d961c0bb569e4b2c2cf24102827974cc2eafede5fc6acf3cbab14806b381446b",
|
|
806
|
+
"size_bytes": 7526
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"media_type": "application/json",
|
|
810
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ExecutableTraceNormalForm.schema.json",
|
|
619
811
|
"sha256": "5cf25a21960a85f2f241e95e05afa76af53e4c88849e8b276186e1d4a614837d",
|
|
620
812
|
"size_bytes": 15637
|
|
621
813
|
},
|
|
622
814
|
{
|
|
623
815
|
"media_type": "application/json",
|
|
624
|
-
"path": "schemas/
|
|
816
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ExecutionAuthorityStatus.schema.json",
|
|
817
|
+
"sha256": "cf5d139856d49d21f4b2ee6d9354588af51174ef7f2ee608fb0293cfaeea7c1e",
|
|
818
|
+
"size_bytes": 602
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"media_type": "application/json",
|
|
822
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ExecutionAvailableHyperpath.schema.json",
|
|
823
|
+
"sha256": "a8527cfd1bcdc4db831f1d246b31480b1e34e5ed971906a85b44f6fe88dc034d",
|
|
824
|
+
"size_bytes": 4674
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"media_type": "application/json",
|
|
828
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ExecutionAvailablePathCertificate.schema.json",
|
|
625
829
|
"sha256": "31c32680bc0c2bfada452567df48b2949c21e01c248ed5abb0d2ef7a141438fc",
|
|
626
830
|
"size_bytes": 4597
|
|
627
831
|
},
|
|
628
832
|
{
|
|
629
833
|
"media_type": "application/json",
|
|
630
|
-
"path": "schemas/
|
|
834
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ExecutionPathDefect.schema.json",
|
|
835
|
+
"sha256": "cfd1fb27dcdba3974b9bfd6a0148c691f445ae0cd26fbfbe0256930f0fd43b61",
|
|
836
|
+
"size_bytes": 528
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
"media_type": "application/json",
|
|
840
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ExecutionPathWitness.schema.json",
|
|
841
|
+
"sha256": "c95f4292b64e9b23a5faf42d2ca7502186f4aa35bda7dd6febf90de03514ff31",
|
|
842
|
+
"size_bytes": 816
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"media_type": "application/json",
|
|
846
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ExternalCandidateClassification.schema.json",
|
|
631
847
|
"sha256": "5c54b6f6f6a9e4a50f28f468433c9be388552237407d26ba51a1eef2759e190c",
|
|
632
848
|
"size_bytes": 184
|
|
633
849
|
},
|
|
634
850
|
{
|
|
635
851
|
"media_type": "application/json",
|
|
636
|
-
"path": "schemas/ExternalObligationCatalog.schema.json",
|
|
852
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ExternalObligationCatalog.schema.json",
|
|
637
853
|
"sha256": "a605cb579d254fcb0d279815c28e459c517772efae5e6cd750c60490dd8ecfee",
|
|
638
854
|
"size_bytes": 5766
|
|
639
855
|
},
|
|
640
856
|
{
|
|
641
857
|
"media_type": "application/json",
|
|
642
|
-
"path": "schemas/ExternalVerifierHook.schema.json",
|
|
858
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ExternalVerifierHook.schema.json",
|
|
643
859
|
"sha256": "169dd7ef0d85a17185bdd82926a0fcab0abc2bef473bad1b6015da6f1c94b549",
|
|
644
860
|
"size_bytes": 3916
|
|
645
861
|
},
|
|
646
862
|
{
|
|
647
863
|
"media_type": "application/json",
|
|
648
|
-
"path": "schemas/
|
|
864
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/FalseLiquidityLoad.schema.json",
|
|
865
|
+
"sha256": "c3957bb5da35c4ee2cb62ee27d701b4feaf9b4cbe14b8d25749ebf213e43a152",
|
|
866
|
+
"size_bytes": 408
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"media_type": "application/json",
|
|
870
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/FiniteOrder.schema.json",
|
|
649
871
|
"sha256": "28b498603c5789d91c9c5c6ce5f3464c5f9e7d7c4ba134c622175d0f5bacdc8a",
|
|
650
872
|
"size_bytes": 667
|
|
651
873
|
},
|
|
652
874
|
{
|
|
653
875
|
"media_type": "application/json",
|
|
654
|
-
"path": "schemas/FinitePhaseControlCertificate.schema.json",
|
|
876
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/FinitePhaseControlCertificate.schema.json",
|
|
655
877
|
"sha256": "50d7dbbeb639ce113bcf935102d6a71a884e8a037d348c0d8e657535e326cb8e",
|
|
656
878
|
"size_bytes": 2377
|
|
657
879
|
},
|
|
658
880
|
{
|
|
659
881
|
"media_type": "application/json",
|
|
660
|
-
"path": "schemas/FiniteTraceLaw.schema.json",
|
|
882
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/FiniteTraceLaw.schema.json",
|
|
661
883
|
"sha256": "436dccf40c8694fd21cd9a896e7b02703049401821c9827832bf7de0851ad0e1",
|
|
662
884
|
"size_bytes": 563
|
|
663
885
|
},
|
|
664
886
|
{
|
|
665
887
|
"media_type": "application/json",
|
|
666
|
-
"path": "schemas/FixedPopulationLedger.schema.json",
|
|
888
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/FixedPopulationLedger.schema.json",
|
|
667
889
|
"sha256": "464e2f6da308dcb6c80d1069083ddf8f591855cb5ae1641c8f13d460e67b4c21",
|
|
668
890
|
"size_bytes": 6084
|
|
669
891
|
},
|
|
670
892
|
{
|
|
671
893
|
"media_type": "application/json",
|
|
672
|
-
"path": "schemas/FormationCostLedger.schema.json",
|
|
894
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/FormationCostLedger.schema.json",
|
|
673
895
|
"sha256": "1e87a94953ee2099713bf9986b430a26d308e075c3a5eb42eab7739095696b09",
|
|
674
896
|
"size_bytes": 2084
|
|
675
897
|
},
|
|
676
898
|
{
|
|
677
899
|
"media_type": "application/json",
|
|
678
|
-
"path": "schemas/FoundryControlDashboard.schema.json",
|
|
900
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/FoundryControlDashboard.schema.json",
|
|
679
901
|
"sha256": "cf3f044ba05315c06a9838af2bdc35d1fe5868b11184416b8e53042a3e893e10",
|
|
680
902
|
"size_bytes": 4672
|
|
681
903
|
},
|
|
682
904
|
{
|
|
683
905
|
"media_type": "application/json",
|
|
684
|
-
"path": "schemas/FoundryState.schema.json",
|
|
906
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/FoundryState.schema.json",
|
|
685
907
|
"sha256": "fe3e04ff2afd80464d28268e96b48f8073ce81a0df2c22394be8643cfb7a9a83",
|
|
686
908
|
"size_bytes": 47353
|
|
687
909
|
},
|
|
688
910
|
{
|
|
689
911
|
"media_type": "application/json",
|
|
690
|
-
"path": "schemas/FrontierDebtReport.schema.json",
|
|
912
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/FrontierDebtReport.schema.json",
|
|
691
913
|
"sha256": "eabebe1f980f2c73e4bb753ff01ad75bdd0ee2cd9c798b69300fe6b4d3851cd8",
|
|
692
914
|
"size_bytes": 2930
|
|
693
915
|
},
|
|
694
916
|
{
|
|
695
917
|
"media_type": "application/json",
|
|
696
|
-
"path": "schemas/FunctorLawCertificate.schema.json",
|
|
918
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/FunctorLawCertificate.schema.json",
|
|
697
919
|
"sha256": "2841a9c73b392e428cf2bac36b9c964798c21afa490fc8a1812ea1bdbdca6b26",
|
|
698
920
|
"size_bytes": 1888
|
|
699
921
|
},
|
|
700
922
|
{
|
|
701
923
|
"media_type": "application/json",
|
|
702
|
-
"path": "schemas/FusedGeometricComparisonCertificate.schema.json",
|
|
924
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/FusedGeometricComparisonCertificate.schema.json",
|
|
703
925
|
"sha256": "9c542f2d55a75a4b5b35046d9ed47d682fb8250388d28686d0ca80db9540d5cc",
|
|
704
926
|
"size_bytes": 1667
|
|
705
927
|
},
|
|
706
928
|
{
|
|
707
929
|
"media_type": "application/json",
|
|
708
|
-
"path": "schemas/FutureFreedomVector.schema.json",
|
|
930
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/FutureFreedomVector.schema.json",
|
|
709
931
|
"sha256": "61b64747198ec4a245e1d27c3a767951a61aabedce22786674798b4d251cd851",
|
|
710
932
|
"size_bytes": 1681
|
|
711
933
|
},
|
|
712
934
|
{
|
|
713
935
|
"media_type": "application/json",
|
|
714
|
-
"path": "schemas/GeneralIntakePolicy.schema.json",
|
|
715
|
-
"sha256": "
|
|
936
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/GeneralIntakePolicy.schema.json",
|
|
937
|
+
"sha256": "cd7b10a7f9a926b5009a9a8c89e44546f43859ebc1f09ed79d76912e64bc7d7a",
|
|
716
938
|
"size_bytes": 6865
|
|
717
939
|
},
|
|
718
940
|
{
|
|
719
941
|
"media_type": "application/json",
|
|
720
|
-
"path": "schemas/GeneralIntakePolicyDecision.schema.json",
|
|
942
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/GeneralIntakePolicyDecision.schema.json",
|
|
721
943
|
"sha256": "13ec7d210889a1762ab00f3b04961890493496aea5b2e3147bfb71e72857c6c3",
|
|
722
944
|
"size_bytes": 1843
|
|
723
945
|
},
|
|
724
946
|
{
|
|
725
947
|
"media_type": "application/json",
|
|
726
|
-
"path": "schemas/GeneralIntakeProfile.schema.json",
|
|
948
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/GeneralIntakeProfile.schema.json",
|
|
727
949
|
"sha256": "1f9e9f6a69dd4cabee10e01d3584e5a483093c090ff780078f45e5503681b571",
|
|
728
950
|
"size_bytes": 202
|
|
729
951
|
},
|
|
730
952
|
{
|
|
731
953
|
"media_type": "application/json",
|
|
732
|
-
"path": "schemas/GeneralIntakeReport.schema.json",
|
|
954
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/GeneralIntakeReport.schema.json",
|
|
733
955
|
"sha256": "74c9f50d2630bae6c5812129add00b3ea49dc9b49a8cb0bb1b66c62f4289f39f",
|
|
734
956
|
"size_bytes": 21366
|
|
735
957
|
},
|
|
736
958
|
{
|
|
737
959
|
"media_type": "application/json",
|
|
738
|
-
"path": "schemas/GeneralIntakeRuntimeBridgeReport.schema.json",
|
|
960
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/GeneralIntakeRuntimeBridgeReport.schema.json",
|
|
739
961
|
"sha256": "5aed88689a922aeb38556838b937ca72e3aee261cb0a84902d0971236fb8b658",
|
|
740
962
|
"size_bytes": 18798
|
|
741
963
|
},
|
|
742
964
|
{
|
|
743
965
|
"media_type": "application/json",
|
|
744
|
-
"path": "schemas/GeneralIntakeSource.schema.json",
|
|
966
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/GeneralIntakeSource.schema.json",
|
|
745
967
|
"sha256": "586056d3bb86aca632e4976cfe8c9b3328027bb0b16259f91bd0572b7704ac18",
|
|
746
968
|
"size_bytes": 1111
|
|
747
969
|
},
|
|
748
970
|
{
|
|
749
971
|
"media_type": "application/json",
|
|
750
|
-
"path": "schemas/GoodTuringCertificate.schema.json",
|
|
972
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/GoodTuringCertificate.schema.json",
|
|
751
973
|
"sha256": "903fa404079007fa5566a3c807d83e31ce8256cb768cf9b4893d25108daa5a98",
|
|
752
974
|
"size_bytes": 589
|
|
753
975
|
},
|
|
754
976
|
{
|
|
755
977
|
"media_type": "application/json",
|
|
756
|
-
"path": "schemas/HazardEnvelopeCertificate.schema.json",
|
|
978
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/HazardEnvelopeCertificate.schema.json",
|
|
757
979
|
"sha256": "e86249ffa31b744213e106795ec9584639d06b642f74de80f3539ec448525185",
|
|
758
980
|
"size_bytes": 4409
|
|
759
981
|
},
|
|
760
982
|
{
|
|
761
983
|
"media_type": "application/json",
|
|
762
|
-
"path": "schemas/HiddenCapabilityInjectionReport.schema.json",
|
|
984
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/HiddenCapabilityInjectionReport.schema.json",
|
|
763
985
|
"sha256": "c6ce1d009cd22c2dedcf2083b29649303b0e87db21525dab1bd62bbff50c4614",
|
|
764
986
|
"size_bytes": 4785
|
|
765
987
|
},
|
|
766
988
|
{
|
|
767
989
|
"media_type": "application/json",
|
|
768
|
-
"path": "schemas/IdentityContributionStatus.schema.json",
|
|
990
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/IdentityContributionStatus.schema.json",
|
|
769
991
|
"sha256": "5735243f7aba2f17af46be0ea5e8d3a244719046f0bdbf00c2dae4e8ffcb9e75",
|
|
770
992
|
"size_bytes": 179
|
|
771
993
|
},
|
|
772
994
|
{
|
|
773
995
|
"media_type": "application/json",
|
|
774
|
-
"path": "schemas/IdentityTrustProfile.schema.json",
|
|
996
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/IdentityTrustProfile.schema.json",
|
|
775
997
|
"sha256": "242ca618f84b6d453a149e105990fb869168687a3aac3ba100f30c14f6db954f",
|
|
776
998
|
"size_bytes": 193
|
|
777
999
|
},
|
|
778
1000
|
{
|
|
779
1001
|
"media_type": "application/json",
|
|
780
|
-
"path": "schemas/ImplementationMaturity.schema.json",
|
|
1002
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ImplementationMaturity.schema.json",
|
|
781
1003
|
"sha256": "a734b832fd7493fcfc341938f771d65573d50cdf44c5a09e60818054332c0ec8",
|
|
782
1004
|
"size_bytes": 700
|
|
783
1005
|
},
|
|
784
1006
|
{
|
|
785
1007
|
"media_type": "application/json",
|
|
786
|
-
"path": "schemas/IndependenceCertificate.schema.json",
|
|
1008
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/IndependenceCertificate.schema.json",
|
|
787
1009
|
"sha256": "b8844ffa4f5ea87b16d8d70a748d429be39e072b2bcfdaf563d530894055fdcd",
|
|
788
1010
|
"size_bytes": 883
|
|
789
1011
|
},
|
|
790
1012
|
{
|
|
791
1013
|
"media_type": "application/json",
|
|
792
|
-
"path": "schemas/InnerViabilityKernel.schema.json",
|
|
1014
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/InnerViabilityKernel.schema.json",
|
|
793
1015
|
"sha256": "4a17162a078d97524276210a8b4506b112ceb2a0684a40a33286bb27b2a17a32",
|
|
794
1016
|
"size_bytes": 882
|
|
795
1017
|
},
|
|
796
1018
|
{
|
|
797
1019
|
"media_type": "application/json",
|
|
798
|
-
"path": "schemas/IntakeProvenanceRecord.schema.json",
|
|
1020
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/IntakeProvenanceRecord.schema.json",
|
|
799
1021
|
"sha256": "2e4ad34c46d3d29946a23a592733ad23e461ce16f0bd421c03054f72bf48d34f",
|
|
800
1022
|
"size_bytes": 4210
|
|
801
1023
|
},
|
|
802
1024
|
{
|
|
803
1025
|
"media_type": "application/json",
|
|
804
|
-
"path": "schemas/InterventionCandidate.schema.json",
|
|
1026
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/InterventionCandidate.schema.json",
|
|
805
1027
|
"sha256": "ea55d40b57029fc8e09d71503b63d57cb888bd7abd5a7648a0e74a3cddfc9037",
|
|
806
1028
|
"size_bytes": 6186
|
|
807
1029
|
},
|
|
808
1030
|
{
|
|
809
1031
|
"media_type": "application/json",
|
|
810
|
-
"path": "schemas/
|
|
1032
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/InversionCertificate.schema.json",
|
|
1033
|
+
"sha256": "58d1304292a8bea4c80b27ac8cf1778a719bb82925cf9530a67f40c94130ea97",
|
|
1034
|
+
"size_bytes": 1309
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"media_type": "application/json",
|
|
1038
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/Judgment.schema.json",
|
|
811
1039
|
"sha256": "ad54e4230d989e05fa4231043c613394370e341b65928473f1641a05b49da2bc",
|
|
812
1040
|
"size_bytes": 8287
|
|
813
1041
|
},
|
|
814
1042
|
{
|
|
815
1043
|
"media_type": "application/json",
|
|
816
|
-
"path": "schemas/LatticeWitness.schema.json",
|
|
1044
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/LatticeWitness.schema.json",
|
|
817
1045
|
"sha256": "09a7482b5b9c0731caafd06af843b5140d238a0a6bc1e014d280a9eb699a0291",
|
|
818
1046
|
"size_bytes": 1393
|
|
819
1047
|
},
|
|
820
1048
|
{
|
|
821
1049
|
"media_type": "application/json",
|
|
822
|
-
"path": "schemas/LedgerCoordinate.schema.json",
|
|
1050
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/LedgerCoordinate.schema.json",
|
|
823
1051
|
"sha256": "1426b7a4f218fe86e7f9b7b4314808bfeaebd94813bbfcb28476cee03dcddb08",
|
|
824
1052
|
"size_bytes": 1540
|
|
825
1053
|
},
|
|
826
1054
|
{
|
|
827
1055
|
"media_type": "application/json",
|
|
828
|
-
"path": "schemas/LifecycleCostBounds.schema.json",
|
|
1056
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/LifecycleCostBounds.schema.json",
|
|
829
1057
|
"sha256": "747acd43f79fa3704da0e6992fb72e0cc0891ab499335ad0db9646c58fffba09",
|
|
830
1058
|
"size_bytes": 1362
|
|
831
1059
|
},
|
|
832
1060
|
{
|
|
833
1061
|
"media_type": "application/json",
|
|
834
|
-
"path": "schemas/LiquidityCertificate.schema.json",
|
|
1062
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/LiquidityCertificate.schema.json",
|
|
835
1063
|
"sha256": "3339f3cd7893170593b70385fce902c9b44ed815876c08629078a274dcef1af7",
|
|
836
1064
|
"size_bytes": 27889
|
|
837
1065
|
},
|
|
838
1066
|
{
|
|
839
1067
|
"media_type": "application/json",
|
|
840
|
-
"path": "schemas/
|
|
1068
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/LiquidityToClosureContribution.schema.json",
|
|
1069
|
+
"sha256": "8dc72b8952069eb2efab6a836df59dbe0a1939eaad02d142c326f1c36430ac06",
|
|
1070
|
+
"size_bytes": 1139
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"media_type": "application/json",
|
|
1074
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/MartingaleBlockResidual.schema.json",
|
|
841
1075
|
"sha256": "2f6e00646bb229cc8cc9ec11d6c7f101c15007877c121ad20b5ab344c7f38039",
|
|
842
1076
|
"size_bytes": 674
|
|
843
1077
|
},
|
|
844
1078
|
{
|
|
845
1079
|
"media_type": "application/json",
|
|
846
|
-
"path": "schemas/MartingaleDeficiencyCertificate.schema.json",
|
|
1080
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/MartingaleDeficiencyCertificate.schema.json",
|
|
847
1081
|
"sha256": "1ed9b4c1a15044e268d763eaf1e438102d568f963bb2c021383351ae506cb085",
|
|
848
1082
|
"size_bytes": 1766
|
|
849
1083
|
},
|
|
850
1084
|
{
|
|
851
1085
|
"media_type": "application/json",
|
|
852
|
-
"path": "schemas/MechanismCubeCertificate.schema.json",
|
|
1086
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/MechanismCubeCertificate.schema.json",
|
|
853
1087
|
"sha256": "e80def2c4041ec950de0c5898fdbd1aef0fa582fd4485f85d50dbcaf7f88ab8b",
|
|
854
1088
|
"size_bytes": 2202
|
|
855
1089
|
},
|
|
856
1090
|
{
|
|
857
1091
|
"media_type": "application/json",
|
|
858
|
-
"path": "schemas/
|
|
1092
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/MinimalEnablingCondition.schema.json",
|
|
1093
|
+
"sha256": "d5af25bf62c14172aa85da4b019da32d855b741ccd7925a77268083547daac5f",
|
|
1094
|
+
"size_bytes": 1047
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"media_type": "application/json",
|
|
1098
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/MissionValidityCertificate.schema.json",
|
|
859
1099
|
"sha256": "11d94881adaf2e2318a2ab55855bbdc8c8b4d0039b81ba21464c241d1eff8494",
|
|
860
1100
|
"size_bytes": 3417
|
|
861
1101
|
},
|
|
862
1102
|
{
|
|
863
1103
|
"media_type": "application/json",
|
|
864
|
-
"path": "schemas/MonoidRecord.schema.json",
|
|
1104
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/MonoidRecord.schema.json",
|
|
865
1105
|
"sha256": "8634ec274dbf03e34977ec6b8b8b398f5b9e730a1af6c6ee53c9ee7c19f2ace3",
|
|
866
1106
|
"size_bytes": 575
|
|
867
1107
|
},
|
|
868
1108
|
{
|
|
869
1109
|
"media_type": "application/json",
|
|
870
|
-
"path": "schemas/MonotoneMap.schema.json",
|
|
1110
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/MonotoneMap.schema.json",
|
|
871
1111
|
"sha256": "78ac4dd080bf85256f8772d876f2b6c5432f5365a6d25aafa3be0adbf6bd9b94",
|
|
872
1112
|
"size_bytes": 1317
|
|
873
1113
|
},
|
|
874
1114
|
{
|
|
875
1115
|
"media_type": "application/json",
|
|
876
|
-
"path": "schemas/NegativeLiquidityCertificate.schema.json",
|
|
1116
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/NegativeLiquidityCertificate.schema.json",
|
|
877
1117
|
"sha256": "3b685a5e251daab39cfff31f57bb4ea800397ccd48d38f13926f876d39f08766",
|
|
878
1118
|
"size_bytes": 4007
|
|
879
1119
|
},
|
|
880
1120
|
{
|
|
881
1121
|
"media_type": "application/json",
|
|
882
|
-
"path": "schemas/NonPromotionPolicy.schema.json",
|
|
1122
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/NonPromotionPolicy.schema.json",
|
|
883
1123
|
"sha256": "75dc7590aed8e8cd373cd242cede4c3b32cee8588369dd1bd4a89a7c67ff8bc1",
|
|
884
1124
|
"size_bytes": 890
|
|
885
1125
|
},
|
|
886
1126
|
{
|
|
887
1127
|
"media_type": "application/json",
|
|
888
|
-
"path": "schemas/ObligationRule.schema.json",
|
|
1128
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ObligationRule.schema.json",
|
|
889
1129
|
"sha256": "24506c1ba31e25294a629554ca2fde6914e2bd05041bcbede3618826ac6b38e5",
|
|
890
1130
|
"size_bytes": 1229
|
|
891
1131
|
},
|
|
892
1132
|
{
|
|
893
1133
|
"media_type": "application/json",
|
|
894
|
-
"path": "schemas/ObligationSet.schema.json",
|
|
1134
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ObligationSet.schema.json",
|
|
895
1135
|
"sha256": "18d4d34c539615194a397c2cccec54030c1e715389d8a60ecd581bc3b1db5f7e",
|
|
896
1136
|
"size_bytes": 5617
|
|
897
1137
|
},
|
|
898
1138
|
{
|
|
899
1139
|
"media_type": "application/json",
|
|
900
|
-
"path": "schemas/ObligationTrace.schema.json",
|
|
1140
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ObligationTrace.schema.json",
|
|
901
1141
|
"sha256": "f53aa2e44d0fc868e37c9c5021c3c669de4bda321fd90d0b5c49ebad16e8a482",
|
|
902
1142
|
"size_bytes": 3543
|
|
903
1143
|
},
|
|
904
1144
|
{
|
|
905
1145
|
"media_type": "application/json",
|
|
906
|
-
"path": "schemas/ObservationWindow.schema.json",
|
|
1146
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ObservationWindow.schema.json",
|
|
907
1147
|
"sha256": "1a58e24d196c536c5d3370031d6f3fa4c9b324488b180046936e926986e2703d",
|
|
908
1148
|
"size_bytes": 904
|
|
909
1149
|
},
|
|
910
1150
|
{
|
|
911
1151
|
"media_type": "application/json",
|
|
912
|
-
"path": "schemas/ObservedTraceProjection.schema.json",
|
|
1152
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ObservedTraceProjection.schema.json",
|
|
913
1153
|
"sha256": "b08d6084b485e2a703d89c5de209cb8da238d1e1a2feae28e5d73974f79286fc",
|
|
914
1154
|
"size_bytes": 1201
|
|
915
1155
|
},
|
|
916
1156
|
{
|
|
917
1157
|
"media_type": "application/json",
|
|
918
|
-
"path": "schemas/OccupationLedger.schema.json",
|
|
1158
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/OccupationLedger.schema.json",
|
|
919
1159
|
"sha256": "2dac5b9270c3d30d77e5c04c8850bc13612cca39fb899822ea0bb0e4918474e0",
|
|
920
1160
|
"size_bytes": 709
|
|
921
1161
|
},
|
|
922
1162
|
{
|
|
923
1163
|
"media_type": "application/json",
|
|
924
|
-
"path": "schemas/OperationalCheck.schema.json",
|
|
1164
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/OperationalCheck.schema.json",
|
|
925
1165
|
"sha256": "5756d7985184182c1dbc4f9d910de1002c757e46a01c11043524359382dc03a5",
|
|
926
1166
|
"size_bytes": 565
|
|
927
1167
|
},
|
|
928
1168
|
{
|
|
929
1169
|
"media_type": "application/json",
|
|
930
|
-
"path": "schemas/OperationalReadinessReport.schema.json",
|
|
1170
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/OperationalReadinessReport.schema.json",
|
|
931
1171
|
"sha256": "fef4212a46c75a74c1deabf9ad1f1512f0a7f051123bebed4ca0b0c512c3e181",
|
|
932
1172
|
"size_bytes": 5792
|
|
933
1173
|
},
|
|
934
1174
|
{
|
|
935
1175
|
"media_type": "application/json",
|
|
936
|
-
"path": "schemas/OperatorAdoptionPacket.schema.json",
|
|
1176
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/OperatorAdoptionPacket.schema.json",
|
|
937
1177
|
"sha256": "956d22bcb729878a99502eff60096e02f59ac43e96d5c621d185e0ae03ffa217",
|
|
938
1178
|
"size_bytes": 8605
|
|
939
1179
|
},
|
|
940
1180
|
{
|
|
941
1181
|
"media_type": "application/json",
|
|
942
|
-
"path": "schemas/OpportunityMeasureContract.schema.json",
|
|
1182
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/OpportunityMeasureContract.schema.json",
|
|
943
1183
|
"sha256": "b681aa85c5e7c07fb6249052b94208b4d90ccceb0d49eb62319bb262d8bc7ef1",
|
|
944
1184
|
"size_bytes": 3633
|
|
945
1185
|
},
|
|
946
1186
|
{
|
|
947
1187
|
"media_type": "application/json",
|
|
948
|
-
"path": "schemas/OrderedPotentialCone.schema.json",
|
|
1188
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/OrderedPotentialCone.schema.json",
|
|
949
1189
|
"sha256": "c919c9f71d5448502eb9438a7117187c27b5ad4621f7b5d5ba92e2098ea7d9ee",
|
|
950
1190
|
"size_bytes": 2776
|
|
951
1191
|
},
|
|
952
1192
|
{
|
|
953
1193
|
"media_type": "application/json",
|
|
954
|
-
"path": "schemas/PacketCapitalLineage.schema.json",
|
|
1194
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PacketCapitalLineage.schema.json",
|
|
955
1195
|
"sha256": "5f6c90b4c300e529bb59dd45aefbbd93f0430d69911bf71b454e71604d116dbb",
|
|
956
1196
|
"size_bytes": 1866
|
|
957
1197
|
},
|
|
958
1198
|
{
|
|
959
1199
|
"media_type": "application/json",
|
|
960
|
-
"path": "schemas/
|
|
1200
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PacketContributionStatus.schema.json",
|
|
1201
|
+
"sha256": "e24210bb99854ea26de153fc6184ed45e8c2adaab4349153de3e081f29e25397",
|
|
1202
|
+
"size_bytes": 800
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
"media_type": "application/json",
|
|
1206
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PacketExchangeEnvelope.schema.json",
|
|
961
1207
|
"sha256": "aebf643e1aa59b318d05b34d45d35ccf9ab99a52082bc95ca7a5f36bd53ee166",
|
|
962
1208
|
"size_bytes": 4899
|
|
963
1209
|
},
|
|
964
1210
|
{
|
|
965
1211
|
"media_type": "application/json",
|
|
966
|
-
"path": "schemas/PacketImportInspectionReport.schema.json",
|
|
1212
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PacketImportInspectionReport.schema.json",
|
|
967
1213
|
"sha256": "829d5deb0f02afe92354b21d92414ca07336075368401501055a3d0186eb5322",
|
|
968
1214
|
"size_bytes": 1510
|
|
969
1215
|
},
|
|
970
1216
|
{
|
|
971
1217
|
"media_type": "application/json",
|
|
972
|
-
"path": "schemas/PacketIngestionReport.schema.json",
|
|
1218
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PacketIngestionReport.schema.json",
|
|
973
1219
|
"sha256": "b60b160cd0268c08d8a7aaba3951a44ad8861ad6b39d712a82971c079ace92f1",
|
|
974
1220
|
"size_bytes": 16002
|
|
975
1221
|
},
|
|
976
1222
|
{
|
|
977
1223
|
"media_type": "application/json",
|
|
978
|
-
"path": "schemas/PacketLineageDigest.schema.json",
|
|
1224
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PacketLineageDigest.schema.json",
|
|
979
1225
|
"sha256": "91681c2ec67791b64d396a2b90e390dde9fc4c73f79519e14c2fc94c7abd7471",
|
|
980
1226
|
"size_bytes": 1515
|
|
981
1227
|
},
|
|
982
1228
|
{
|
|
983
1229
|
"media_type": "application/json",
|
|
984
|
-
"path": "schemas/PacketMergeReport.schema.json",
|
|
1230
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PacketMergeReport.schema.json",
|
|
985
1231
|
"sha256": "70c4b0c2de0d0b2ea7a5edf5680e91e7281d3a9a54ca7bcab56ec4bf46b17d2c",
|
|
986
1232
|
"size_bytes": 7220
|
|
987
1233
|
},
|
|
988
1234
|
{
|
|
989
1235
|
"media_type": "application/json",
|
|
990
|
-
"path": "schemas/PacketPromotionPolicy.schema.json",
|
|
1236
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PacketPromotionPolicy.schema.json",
|
|
991
1237
|
"sha256": "cfb8df669a13973ff301360c0119974cbedc14dbcbe065185cd9719d4f7aef3a",
|
|
992
1238
|
"size_bytes": 1338
|
|
993
1239
|
},
|
|
994
1240
|
{
|
|
995
1241
|
"media_type": "application/json",
|
|
996
|
-
"path": "schemas/PacketPromotionReport.schema.json",
|
|
1242
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PacketPromotionReport.schema.json",
|
|
997
1243
|
"sha256": "fe417962da1b902c40de3115fb983b25d20a1a540e9489fd219c3da6bf743fbc",
|
|
998
1244
|
"size_bytes": 8800
|
|
999
1245
|
},
|
|
1000
1246
|
{
|
|
1001
1247
|
"media_type": "application/json",
|
|
1002
|
-
"path": "schemas/
|
|
1248
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PacketQuarantineDecision.schema.json",
|
|
1249
|
+
"sha256": "24ad6167184c0adcf58cbc267da76990e66fc2b2fab215ffe3d42f27412aa90b",
|
|
1250
|
+
"size_bytes": 988
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"media_type": "application/json",
|
|
1254
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PacketRejection.schema.json",
|
|
1003
1255
|
"sha256": "7db2be2e8ea9976b46ed958e1d66e3c067217d2486b39a9d604067ce958ef148",
|
|
1004
1256
|
"size_bytes": 3738
|
|
1005
1257
|
},
|
|
1006
1258
|
{
|
|
1007
1259
|
"media_type": "application/json",
|
|
1008
|
-
"path": "schemas/PhaseAccelerationBenchmarkReport.schema.json",
|
|
1260
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseAccelerationBenchmarkReport.schema.json",
|
|
1009
1261
|
"sha256": "7201c92ec59504b6fab28ab13a2e3e4adcca989f44cdc09b15388bb7d847bda9",
|
|
1010
1262
|
"size_bytes": 2577
|
|
1011
1263
|
},
|
|
1012
1264
|
{
|
|
1013
1265
|
"media_type": "application/json",
|
|
1014
|
-
"path": "schemas/PhaseAccelerationPlan.schema.json",
|
|
1266
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseAccelerationPlan.schema.json",
|
|
1015
1267
|
"sha256": "e31db7c867699e59cdcf1e43421047e66ff5ae0457ba4ca6576bc66c87511cd9",
|
|
1016
1268
|
"size_bytes": 116378
|
|
1017
1269
|
},
|
|
1018
1270
|
{
|
|
1019
1271
|
"media_type": "application/json",
|
|
1020
|
-
"path": "schemas/PhaseAccelerationRequest.schema.json",
|
|
1272
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseAccelerationRequest.schema.json",
|
|
1021
1273
|
"sha256": "ac810f95b63679cb6c2ebd7abaea2c46f011f5107ccc7dd97b936da94597edd0",
|
|
1022
1274
|
"size_bytes": 139545
|
|
1023
1275
|
},
|
|
1024
1276
|
{
|
|
1025
1277
|
"media_type": "application/json",
|
|
1026
|
-
"path": "schemas/PhaseAccelerationScore.schema.json",
|
|
1278
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseAccelerationScore.schema.json",
|
|
1027
1279
|
"sha256": "d0624a3a0f3b440b570aaf2b38ef8bfba702f884e71c384787ac9a96a170cfdc",
|
|
1028
1280
|
"size_bytes": 1562
|
|
1029
1281
|
},
|
|
1030
1282
|
{
|
|
1031
1283
|
"media_type": "application/json",
|
|
1032
|
-
"path": "schemas/PhaseBenchmarkCaseResult.schema.json",
|
|
1284
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseBenchmarkCaseResult.schema.json",
|
|
1033
1285
|
"sha256": "c19ce7ecc183a5f1c8f51ca6207f015755787a97c1aafb5528ad17dbbce1d318",
|
|
1034
1286
|
"size_bytes": 4037
|
|
1035
1287
|
},
|
|
1036
1288
|
{
|
|
1037
1289
|
"media_type": "application/json",
|
|
1038
|
-
"path": "schemas/PhaseBenchmarkSuiteReport.schema.json",
|
|
1290
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseBenchmarkSuiteReport.schema.json",
|
|
1039
1291
|
"sha256": "b423ceddc1b8d9ad1505a2768689cd8240044e0e4a578170ead95aa0832e12b5",
|
|
1040
1292
|
"size_bytes": 6017
|
|
1041
1293
|
},
|
|
1042
1294
|
{
|
|
1043
1295
|
"media_type": "application/json",
|
|
1044
|
-
"path": "schemas/PhaseBenchmarkTask.schema.json",
|
|
1296
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseBenchmarkTask.schema.json",
|
|
1045
1297
|
"sha256": "e16e37a2a62b047b07cb3dfa2f980ddd196be766b1bdc27370d9c4a3936e3058",
|
|
1046
1298
|
"size_bytes": 804
|
|
1047
1299
|
},
|
|
1048
1300
|
{
|
|
1049
1301
|
"media_type": "application/json",
|
|
1050
|
-
"path": "schemas/
|
|
1302
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseCertificateDefect.schema.json",
|
|
1303
|
+
"sha256": "569a1c649b932ab0ca64d064afd4f46a660f06dd9e9f45fea66cd40e11019a0b",
|
|
1304
|
+
"size_bytes": 669
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
"media_type": "application/json",
|
|
1308
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseComponentGap.schema.json",
|
|
1051
1309
|
"sha256": "70fcf8205010acac5a31f38dc6f84cddfdc6ffc9058656ba93d54de72981598c",
|
|
1052
1310
|
"size_bytes": 955
|
|
1053
1311
|
},
|
|
1054
1312
|
{
|
|
1055
1313
|
"media_type": "application/json",
|
|
1056
|
-
"path": "schemas/
|
|
1314
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseComponentObservation.schema.json",
|
|
1315
|
+
"sha256": "7665876b4e1f15c61f8abd7cd7f6bd28d3d845aed6ff1d1e7510fe58dc625a07",
|
|
1316
|
+
"size_bytes": 864
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
"media_type": "application/json",
|
|
1320
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseControlAction.schema.json",
|
|
1057
1321
|
"sha256": "ea153622c8b4b0fafc0119784ae420b44e67e1cac0a62ff52b51eb19ebd1b3fc",
|
|
1058
1322
|
"size_bytes": 1648
|
|
1059
1323
|
},
|
|
1060
1324
|
{
|
|
1061
1325
|
"media_type": "application/json",
|
|
1062
|
-
"path": "schemas/PhaseControlAuditSummary.schema.json",
|
|
1326
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseControlAuditSummary.schema.json",
|
|
1063
1327
|
"sha256": "90f0db6ceb029705e9c93db86d64e9cf7a3e1280d20cad527d151ad8983b63da",
|
|
1064
1328
|
"size_bytes": 3654
|
|
1065
1329
|
},
|
|
1066
1330
|
{
|
|
1067
1331
|
"media_type": "application/json",
|
|
1068
|
-
"path": "schemas/PhaseControlEnvelope.schema.json",
|
|
1332
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseControlEnvelope.schema.json",
|
|
1069
1333
|
"sha256": "8d10435e7b15fcb02ba793053a2e53c0bd9191a13f5ab744876b626548a22d33",
|
|
1070
1334
|
"size_bytes": 1130
|
|
1071
1335
|
},
|
|
1072
1336
|
{
|
|
1073
1337
|
"media_type": "application/json",
|
|
1074
|
-
"path": "schemas/PhaseControlObjective.schema.json",
|
|
1338
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseControlObjective.schema.json",
|
|
1075
1339
|
"sha256": "6d2f82a61bac184fcf03aa3c25aaf372438473651101dd5ceb1feec1873eb5c0",
|
|
1076
1340
|
"size_bytes": 2378
|
|
1077
1341
|
},
|
|
1078
1342
|
{
|
|
1079
1343
|
"media_type": "application/json",
|
|
1080
|
-
"path": "schemas/PhaseControlPlan.schema.json",
|
|
1344
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseControlPlan.schema.json",
|
|
1081
1345
|
"sha256": "c0ab689b957c81ca07434b036ebe36b3aab76f34472a605b2e69b737d0a735f8",
|
|
1082
1346
|
"size_bytes": 9009
|
|
1083
1347
|
},
|
|
1084
1348
|
{
|
|
1085
1349
|
"media_type": "application/json",
|
|
1086
|
-
"path": "schemas/PhaseControlRunReport.schema.json",
|
|
1350
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseControlRunReport.schema.json",
|
|
1087
1351
|
"sha256": "96465a6549d17dea17d03b4ea3b2811f96af409b0bb349f26a052e3331e9901a",
|
|
1088
1352
|
"size_bytes": 10401
|
|
1089
1353
|
},
|
|
1090
1354
|
{
|
|
1091
1355
|
"media_type": "application/json",
|
|
1092
|
-
"path": "schemas/PhaseControlState.schema.json",
|
|
1356
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseControlState.schema.json",
|
|
1093
1357
|
"sha256": "010e7853ac6d102e5a5fa447a4c11612eb2fdbf2d33c8fc104eaf54842a899cb",
|
|
1094
1358
|
"size_bytes": 9022
|
|
1095
1359
|
},
|
|
1096
1360
|
{
|
|
1097
1361
|
"media_type": "application/json",
|
|
1098
|
-
"path": "schemas/PhaseDashboardReport.schema.json",
|
|
1362
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseDashboardReport.schema.json",
|
|
1099
1363
|
"sha256": "28cf0eafee987c398b611222a60408baf4f665c61fa1c360df0ea9f3402ec1fb",
|
|
1100
1364
|
"size_bytes": 6237
|
|
1101
1365
|
},
|
|
1102
1366
|
{
|
|
1103
1367
|
"media_type": "application/json",
|
|
1104
|
-
"path": "schemas/PhaseGapVector.schema.json",
|
|
1368
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseGapVector.schema.json",
|
|
1105
1369
|
"sha256": "918c53bdfd0311189e1c3198ad0b9a5284b5159fd272a0f5dc25a228e78e99f6",
|
|
1106
1370
|
"size_bytes": 2347
|
|
1107
1371
|
},
|
|
1108
1372
|
{
|
|
1109
1373
|
"media_type": "application/json",
|
|
1110
|
-
"path": "schemas/
|
|
1374
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseLabEvent.schema.json",
|
|
1375
|
+
"sha256": "a2ded015066ada08a661497cf4c613b409282e1a731172acaa35170b21f71751",
|
|
1376
|
+
"size_bytes": 2664
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
"media_type": "application/json",
|
|
1380
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseLabExportManifest.schema.json",
|
|
1381
|
+
"sha256": "56d1c81a576f7c7edbb464feeb51290954e8be96699ac21e72c84d57db5a8492",
|
|
1382
|
+
"size_bytes": 2974
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
"media_type": "application/json",
|
|
1386
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseLabIngestReport.schema.json",
|
|
1387
|
+
"sha256": "83bf36d034b8f7aa1ec17969b7e98c5b90642ad0f4aaac8919d041d8708c675b",
|
|
1388
|
+
"size_bytes": 8613
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"media_type": "application/json",
|
|
1392
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseLabStoreManifest.schema.json",
|
|
1393
|
+
"sha256": "49a93f0e70fbf2563c113010e8b8062e1a910cdbe6d0c634874371955562368b",
|
|
1394
|
+
"size_bytes": 1527
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
"media_type": "application/json",
|
|
1398
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseLabWindowIndex.schema.json",
|
|
1399
|
+
"sha256": "d78c1123d0f4e8816621dec5823648bb21ed5ba975a7d91616a230fb82a3d2f9",
|
|
1400
|
+
"size_bytes": 1732
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"media_type": "application/json",
|
|
1404
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseObservationReport.schema.json",
|
|
1111
1405
|
"sha256": "73d9dad33b69460167bac24b3f2b73488986a884e36a758569deb5ee463ea5e7",
|
|
1112
1406
|
"size_bytes": 8453
|
|
1113
1407
|
},
|
|
1114
1408
|
{
|
|
1115
1409
|
"media_type": "application/json",
|
|
1116
|
-
"path": "schemas/
|
|
1410
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseThresholdStatus.schema.json",
|
|
1411
|
+
"sha256": "f90430576987684aba1f7b8c71724a82f63faa34bd151eab82c7af73046863de",
|
|
1412
|
+
"size_bytes": 1128
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
"media_type": "application/json",
|
|
1416
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseTrajectoryReport.schema.json",
|
|
1117
1417
|
"sha256": "ed0a7b121afb3ab70758c5c3d45c53cb663eaf6a75a99c728444e1e613882e85",
|
|
1118
1418
|
"size_bytes": 119059
|
|
1119
1419
|
},
|
|
1120
1420
|
{
|
|
1121
1421
|
"media_type": "application/json",
|
|
1122
|
-
"path": "schemas/
|
|
1422
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseWindow.schema.json",
|
|
1423
|
+
"sha256": "266c26bd47867ab32dc3765454abea577ea235007e442d137923056b1364a59d",
|
|
1424
|
+
"size_bytes": 600
|
|
1425
|
+
},
|
|
1426
|
+
{
|
|
1427
|
+
"media_type": "application/json",
|
|
1428
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseWindowComparison.schema.json",
|
|
1429
|
+
"sha256": "f096c21069bbde086af0807b7496666c7bfe7a31efc585b59d0a3a48b41fdb41",
|
|
1430
|
+
"size_bytes": 1514
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"media_type": "application/json",
|
|
1434
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PhaseWindowObservation.schema.json",
|
|
1435
|
+
"sha256": "9bda12bd7a9fde6a7319f3577fde4a89195ca829904bb216074e17107cc5f316",
|
|
1436
|
+
"size_bytes": 8953
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
"media_type": "application/json",
|
|
1440
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PopulationRuntimeStepReport.schema.json",
|
|
1123
1441
|
"sha256": "06154d9e06fd2b1cfe211492e206008a4459c966ff758401948962aabe0c4e54",
|
|
1124
1442
|
"size_bytes": 134368
|
|
1125
1443
|
},
|
|
1126
1444
|
{
|
|
1127
1445
|
"media_type": "application/json",
|
|
1128
|
-
"path": "schemas/PortabilityConformanceReport.schema.json",
|
|
1446
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PortabilityConformanceReport.schema.json",
|
|
1129
1447
|
"sha256": "04ca4fb6cec363c86dd3546c8d167a68b3f6393fe5202748e93598c579f89568",
|
|
1130
1448
|
"size_bytes": 2327
|
|
1131
1449
|
},
|
|
1132
1450
|
{
|
|
1133
1451
|
"media_type": "application/json",
|
|
1134
|
-
"path": "schemas/PortabilitySchemaBundle.schema.json",
|
|
1452
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PortabilitySchemaBundle.schema.json",
|
|
1135
1453
|
"sha256": "76b93d3902558c59541612fa1084bc9fb3b2db6d95bb9533b0c8ab6e135c5f62",
|
|
1136
1454
|
"size_bytes": 541
|
|
1137
1455
|
},
|
|
1138
1456
|
{
|
|
1139
1457
|
"media_type": "application/json",
|
|
1140
|
-
"path": "schemas/
|
|
1458
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PostInversionAuditPlan.schema.json",
|
|
1459
|
+
"sha256": "4c4afbf328726928386f4c213a7e4911e4b3b91aa06d683e49e768c600845927",
|
|
1460
|
+
"size_bytes": 832
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
"media_type": "application/json",
|
|
1464
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ProblemSolvingTrace.schema.json",
|
|
1141
1465
|
"sha256": "c25a79238689847b90a8c54c5514da98aaee45ac406b254cace5341f303750b1",
|
|
1142
1466
|
"size_bytes": 3573
|
|
1143
1467
|
},
|
|
1144
1468
|
{
|
|
1145
1469
|
"media_type": "application/json",
|
|
1146
|
-
"path": "schemas/ProcessGrammarRecord.schema.json",
|
|
1470
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ProcessGrammarRecord.schema.json",
|
|
1147
1471
|
"sha256": "bcdacb9841b393bffd76b3f31eb9e8b4de8926699eb55e54a7fa0cd993c959a9",
|
|
1148
1472
|
"size_bytes": 1149
|
|
1149
1473
|
},
|
|
1150
1474
|
{
|
|
1151
1475
|
"media_type": "application/json",
|
|
1152
|
-
"path": "schemas/ProductionReadinessProfile.schema.json",
|
|
1476
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ProductionReadinessProfile.schema.json",
|
|
1153
1477
|
"sha256": "913a9ab0d2399d37c38c24a8cec8f5d01c29f671c0725192e9bb2331d54d31fd",
|
|
1154
1478
|
"size_bytes": 1033
|
|
1155
1479
|
},
|
|
1156
1480
|
{
|
|
1157
1481
|
"media_type": "application/json",
|
|
1158
|
-
"path": "schemas/
|
|
1482
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ProductiveClosureWitness.schema.json",
|
|
1483
|
+
"sha256": "5519db0acd237ef9ccef5c3ca60c1ce26b75b6ea5f2c4be6e2381558c56fbfbe",
|
|
1484
|
+
"size_bytes": 976
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
"media_type": "application/json",
|
|
1488
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ProductOrder.schema.json",
|
|
1159
1489
|
"sha256": "01a0375ade13c7194f721a745af4ecd6417f2bf69f7aa401b16d918ff0a6d208",
|
|
1160
1490
|
"size_bytes": 1219
|
|
1161
1491
|
},
|
|
1162
1492
|
{
|
|
1163
1493
|
"media_type": "application/json",
|
|
1164
|
-
"path": "schemas/ProjectionAudit.schema.json",
|
|
1494
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ProjectionAudit.schema.json",
|
|
1165
1495
|
"sha256": "da8eaa71d0270de6193e42e7c97aa03d622a6a43857f0eb8f71fc4aa2cc5e5d4",
|
|
1166
1496
|
"size_bytes": 1384
|
|
1167
1497
|
},
|
|
1168
1498
|
{
|
|
1169
1499
|
"media_type": "application/json",
|
|
1170
|
-
"path": "schemas/ProofObligation.schema.json",
|
|
1500
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ProofObligation.schema.json",
|
|
1171
1501
|
"sha256": "5e3a6615e7abe79f7f5d205afe0ab37d147e9c27c7fc28ce7b6ef37deb36b79d",
|
|
1172
1502
|
"size_bytes": 4599
|
|
1173
1503
|
},
|
|
1174
1504
|
{
|
|
1175
1505
|
"media_type": "application/json",
|
|
1176
|
-
"path": "schemas/ProtocolFrameDigest.schema.json",
|
|
1506
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ProtocolFrameDigest.schema.json",
|
|
1177
1507
|
"sha256": "1b271a189afe625e4dd084c9ed9b1d0e2ce1f8f7c05894512fe8c3206f5bda94",
|
|
1178
1508
|
"size_bytes": 2022
|
|
1179
1509
|
},
|
|
1180
1510
|
{
|
|
1181
1511
|
"media_type": "application/json",
|
|
1182
|
-
"path": "schemas/ProtocolFunctorCertificate.schema.json",
|
|
1512
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ProtocolFunctorCertificate.schema.json",
|
|
1183
1513
|
"sha256": "ce8acda61b04b3f90768140c098643b4b08a8e85fe045993fd4f157d23994426",
|
|
1184
1514
|
"size_bytes": 2005
|
|
1185
1515
|
},
|
|
1186
1516
|
{
|
|
1187
1517
|
"media_type": "application/json",
|
|
1188
|
-
"path": "schemas/ProtocolObject.schema.json",
|
|
1518
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ProtocolObject.schema.json",
|
|
1189
1519
|
"sha256": "3600e7de6a80880323c9e3de28208135bcea073c2ed36f216023e4fdc795ff7c",
|
|
1190
1520
|
"size_bytes": 905
|
|
1191
1521
|
},
|
|
1192
1522
|
{
|
|
1193
1523
|
"media_type": "application/json",
|
|
1194
|
-
"path": "schemas/ProtocolRelativeBenchmarkMetric.schema.json",
|
|
1524
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ProtocolRelativeBenchmarkMetric.schema.json",
|
|
1195
1525
|
"sha256": "3a2adf886156f7d2e5c294a4f96e2d64d21cf06edb758f2bc8c06d55a854eb1e",
|
|
1196
1526
|
"size_bytes": 848
|
|
1197
1527
|
},
|
|
1198
1528
|
{
|
|
1199
1529
|
"media_type": "application/json",
|
|
1200
|
-
"path": "schemas/ProvenanceManifest.schema.json",
|
|
1201
|
-
"sha256": "
|
|
1530
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ProvenanceManifest.schema.json",
|
|
1531
|
+
"sha256": "63d061ba0ddb0eb75ee459eb3779413085707cff82fb247def5b082531c6848d",
|
|
1202
1532
|
"size_bytes": 5000
|
|
1203
1533
|
},
|
|
1204
1534
|
{
|
|
1205
1535
|
"media_type": "application/json",
|
|
1206
|
-
"path": "schemas/ProvenanceManifestEntry.schema.json",
|
|
1536
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ProvenanceManifestEntry.schema.json",
|
|
1207
1537
|
"sha256": "3686617df996b3f375ec5d9a94e580c87acdb3af7ee0e702f73658791a2b33e0",
|
|
1208
1538
|
"size_bytes": 593
|
|
1209
1539
|
},
|
|
1210
1540
|
{
|
|
1211
1541
|
"media_type": "application/json",
|
|
1212
|
-
"path": "schemas/PsiDashboard.schema.json",
|
|
1542
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PsiDashboard.schema.json",
|
|
1213
1543
|
"sha256": "c08ee080ffb5028cf0614e2d7f4c5ca922df822e786b86eb3453e6d46115c230",
|
|
1214
1544
|
"size_bytes": 5289
|
|
1215
1545
|
},
|
|
1216
1546
|
{
|
|
1217
1547
|
"media_type": "application/json",
|
|
1218
|
-
"path": "schemas/PullbackGluingWitness.schema.json",
|
|
1548
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/PullbackGluingWitness.schema.json",
|
|
1219
1549
|
"sha256": "c1194e15f2177e02ab45faa9d8ad5e46b04ec811485adcc5c7163f772f8ac1fa",
|
|
1220
1550
|
"size_bytes": 867
|
|
1221
1551
|
},
|
|
1222
1552
|
{
|
|
1223
1553
|
"media_type": "application/json",
|
|
1224
|
-
"path": "schemas/QuarantineLedger.schema.json",
|
|
1554
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/QuarantineLedger.schema.json",
|
|
1225
1555
|
"sha256": "84afde3deb7183c5361e076eb965d6713ab0a48f0a2f9851baf2470b531cbc38",
|
|
1226
1556
|
"size_bytes": 646
|
|
1227
1557
|
},
|
|
1228
1558
|
{
|
|
1229
1559
|
"media_type": "application/json",
|
|
1230
|
-
"path": "schemas/
|
|
1560
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/QueueOccupationReport.schema.json",
|
|
1561
|
+
"sha256": "cc96483c2fb8d4369f47638c03fc8d76d56df35d47a361f8c2561e432c8318bf",
|
|
1562
|
+
"size_bytes": 3883
|
|
1563
|
+
},
|
|
1564
|
+
{
|
|
1565
|
+
"media_type": "application/json",
|
|
1566
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/QueueRebalancePlan.schema.json",
|
|
1567
|
+
"sha256": "129c29dc09633e97380324c92f81229e86a79e66a6a88b345af4b255292329e6",
|
|
1568
|
+
"size_bytes": 2588
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
"media_type": "application/json",
|
|
1572
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ReachableMassRecursionCertificate.schema.json",
|
|
1231
1573
|
"sha256": "f1a3cc1661551fa8903341a9cea115818177caf372baaafbbc7794ec7625d12a",
|
|
1232
1574
|
"size_bytes": 2957
|
|
1233
1575
|
},
|
|
1234
1576
|
{
|
|
1235
1577
|
"media_type": "application/json",
|
|
1236
|
-
"path": "schemas/
|
|
1578
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ReceiverContextSupport.schema.json",
|
|
1579
|
+
"sha256": "60c99487a7875ac141f521891a39e32fbbb4fec00f7b755e87c4007ea347fe09",
|
|
1580
|
+
"size_bytes": 480
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
"media_type": "application/json",
|
|
1584
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ReceiverLiquidityLift.schema.json",
|
|
1585
|
+
"sha256": "88c48d4752b8c45da0b6ff461b6dbdac23454869961ce25bfd0d45e76b3e2973",
|
|
1586
|
+
"size_bytes": 1269
|
|
1587
|
+
},
|
|
1588
|
+
{
|
|
1589
|
+
"media_type": "application/json",
|
|
1590
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ReconstructionResidual.schema.json",
|
|
1237
1591
|
"sha256": "077cdddab7125183f5e596184e40032111d9c6598ac96893bd205c572a5d2116",
|
|
1238
1592
|
"size_bytes": 500
|
|
1239
1593
|
},
|
|
1240
1594
|
{
|
|
1241
1595
|
"media_type": "application/json",
|
|
1242
|
-
"path": "schemas/RefreshRule.schema.json",
|
|
1596
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RefreshRule.schema.json",
|
|
1243
1597
|
"sha256": "b26e00f07a445054597c2852be954737509ad9098ee9ac774666eb7a9f049276",
|
|
1244
1598
|
"size_bytes": 689
|
|
1245
1599
|
},
|
|
1246
1600
|
{
|
|
1247
1601
|
"media_type": "application/json",
|
|
1248
|
-
"path": "schemas/Registry.schema.json",
|
|
1602
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/Registry.schema.json",
|
|
1249
1603
|
"sha256": "0c44000efd218d1173de37e5b5889adcb49136b3d06f04f7db68042bab1d0b31",
|
|
1250
1604
|
"size_bytes": 5183
|
|
1251
1605
|
},
|
|
1252
1606
|
{
|
|
1253
1607
|
"media_type": "application/json",
|
|
1254
|
-
"path": "schemas/ReleaseArtifactManifest.schema.json",
|
|
1255
|
-
"sha256": "
|
|
1608
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ReleaseArtifactManifest.schema.json",
|
|
1609
|
+
"sha256": "4e47fa5aa094b74d4aca640ee12d39b020055d35209e0eb49141e27bf86876aa",
|
|
1256
1610
|
"size_bytes": 1495
|
|
1257
1611
|
},
|
|
1258
1612
|
{
|
|
1259
1613
|
"media_type": "application/json",
|
|
1260
|
-
"path": "schemas/ReproductionMatrixCertificate.schema.json",
|
|
1614
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ReproductionMatrixCertificate.schema.json",
|
|
1261
1615
|
"sha256": "a120505b3f5f5956df7c7bbb5e367ed65ac0713d904743dfb80ea4e556a6902b",
|
|
1262
1616
|
"size_bytes": 4422
|
|
1263
1617
|
},
|
|
1264
1618
|
{
|
|
1265
1619
|
"media_type": "application/json",
|
|
1266
|
-
"path": "schemas/ResidualCarryForwardReport.schema.json",
|
|
1620
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ResidualCarryForwardReport.schema.json",
|
|
1267
1621
|
"sha256": "b424fc4180107b33f0a0d164b82a1a8313e29f95ad7dbad41c017130b0016013",
|
|
1268
1622
|
"size_bytes": 1266
|
|
1269
1623
|
},
|
|
1270
1624
|
{
|
|
1271
1625
|
"media_type": "application/json",
|
|
1272
|
-
"path": "schemas/ResourceCalendarRecord.schema.json",
|
|
1626
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ResourceCalendarRecord.schema.json",
|
|
1273
1627
|
"sha256": "a4ba5f2646385b70b61f7b2fbcab27538208eafcba2a06d65365dad0efa56cd6",
|
|
1274
1628
|
"size_bytes": 1449
|
|
1275
1629
|
},
|
|
1276
1630
|
{
|
|
1277
1631
|
"media_type": "application/json",
|
|
1278
|
-
"path": "schemas/ResourceEnvelope.schema.json",
|
|
1632
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ResourceEnvelope.schema.json",
|
|
1279
1633
|
"sha256": "3db53b4b75c4266fd85fba9df96c43e7fb2ad41683c629d5bcb482ffa803f832",
|
|
1280
1634
|
"size_bytes": 968
|
|
1281
1635
|
},
|
|
1282
1636
|
{
|
|
1283
1637
|
"media_type": "application/json",
|
|
1284
|
-
"path": "schemas/ResourceMatchedBaselineConfig.schema.json",
|
|
1638
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ResourceMatchedBaselineConfig.schema.json",
|
|
1285
1639
|
"sha256": "27f86d341b0080b388c6f6b254a997dbc6fab3e7ec2c3e81d7e2cb3ddf6decd8",
|
|
1286
1640
|
"size_bytes": 2133
|
|
1287
1641
|
},
|
|
1288
1642
|
{
|
|
1289
1643
|
"media_type": "application/json",
|
|
1290
|
-
"path": "schemas/
|
|
1644
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ReversibleSalienceSovereigntyCertificate.schema.json",
|
|
1645
|
+
"sha256": "ffff60b5f39bb9abb14ceb98dd89046f9029ae24ecc7580b5503a1204594b294",
|
|
1646
|
+
"size_bytes": 1210
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
"media_type": "application/json",
|
|
1650
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RiskBudgetLedger.schema.json",
|
|
1291
1651
|
"sha256": "fb339e3f96581f7c4491c52a93d2b508bdff3574203feedc16dc7e2ce71597c9",
|
|
1292
1652
|
"size_bytes": 399
|
|
1293
1653
|
},
|
|
1294
1654
|
{
|
|
1295
1655
|
"media_type": "application/json",
|
|
1296
|
-
"path": "schemas/RobotsDecision.schema.json",
|
|
1656
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RobotsDecision.schema.json",
|
|
1297
1657
|
"sha256": "ea1e297d37692a78da1c859e1d7f1a8e750b11e7f1529aced5f86a5c645dd590",
|
|
1298
1658
|
"size_bytes": 1136
|
|
1299
1659
|
},
|
|
1300
1660
|
{
|
|
1301
1661
|
"media_type": "application/json",
|
|
1302
|
-
"path": "schemas/
|
|
1662
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RollbackOrDeactivationPlan.schema.json",
|
|
1663
|
+
"sha256": "180f7dfe1b461f190940e9bd2ab5be924f24ab1e1ef762cc9f42f81c0dfe385c",
|
|
1664
|
+
"size_bytes": 844
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
"media_type": "application/json",
|
|
1668
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RootFinalityCertificate.schema.json",
|
|
1303
1669
|
"sha256": "816f7212eaaa7d310c8ad976c8ace4130bef2a0b86bfe83cf0318395246aa47d",
|
|
1304
1670
|
"size_bytes": 4332
|
|
1305
1671
|
},
|
|
1306
1672
|
{
|
|
1307
1673
|
"media_type": "application/json",
|
|
1308
|
-
"path": "schemas/RouteExecutionBatch.schema.json",
|
|
1674
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RouteExecutionBatch.schema.json",
|
|
1309
1675
|
"sha256": "b31fbfe10823081e17f32fee530da65afb5f6d26d3e1e5fb77af5ff50223f41a",
|
|
1310
1676
|
"size_bytes": 23130
|
|
1311
1677
|
},
|
|
1312
1678
|
{
|
|
1313
1679
|
"media_type": "application/json",
|
|
1314
|
-
"path": "schemas/RouteExecutionRequest.schema.json",
|
|
1680
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RouteExecutionRequest.schema.json",
|
|
1315
1681
|
"sha256": "bbdd5f980e29277f609ac59c35bb06f6ac62351395ca06412994e5db56c0c110",
|
|
1316
1682
|
"size_bytes": 1962
|
|
1317
1683
|
},
|
|
1318
1684
|
{
|
|
1319
1685
|
"media_type": "application/json",
|
|
1320
|
-
"path": "schemas/RuntimeActionResult.schema.json",
|
|
1686
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeActionResult.schema.json",
|
|
1321
1687
|
"sha256": "ea7b31861b8ec2070d962bca9ff2350f8a1de4e39b7795a9cbf3547555cdf23b",
|
|
1322
1688
|
"size_bytes": 19717
|
|
1323
1689
|
},
|
|
1324
1690
|
{
|
|
1325
1691
|
"media_type": "application/json",
|
|
1326
|
-
"path": "schemas/RuntimeComparisonReport.schema.json",
|
|
1692
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeComparisonReport.schema.json",
|
|
1327
1693
|
"sha256": "fe992d4802266f9d770e7b85b4706667fc03005170c9b27f4f6a80b22be42d3b",
|
|
1328
1694
|
"size_bytes": 97046
|
|
1329
1695
|
},
|
|
1330
1696
|
{
|
|
1331
1697
|
"media_type": "application/json",
|
|
1332
|
-
"path": "schemas/RuntimeEvent.schema.json",
|
|
1698
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeEvent.schema.json",
|
|
1333
1699
|
"sha256": "d60d9d7a1d0ea455de8ad0c8cf9e6dae5ba3f7e46abdc56605fa9f828af6589c",
|
|
1334
1700
|
"size_bytes": 3132
|
|
1335
1701
|
},
|
|
1336
1702
|
{
|
|
1337
1703
|
"media_type": "application/json",
|
|
1338
|
-
"path": "schemas/RuntimeEventLog.schema.json",
|
|
1704
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeEventLog.schema.json",
|
|
1339
1705
|
"sha256": "532065400b320a9814c6ccef8ab16496b6350591c5fe15ccf213b6a602f800e9",
|
|
1340
1706
|
"size_bytes": 3815
|
|
1341
1707
|
},
|
|
1342
1708
|
{
|
|
1343
1709
|
"media_type": "application/json",
|
|
1344
|
-
"path": "schemas/RuntimeExecutionReport.schema.json",
|
|
1710
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeExecutionReport.schema.json",
|
|
1345
1711
|
"sha256": "b4ba0c4b8328e419c26deb9ff49ef9edead4e124cead654f9c34cf833997cc19",
|
|
1346
1712
|
"size_bytes": 21586
|
|
1347
1713
|
},
|
|
1348
1714
|
{
|
|
1349
1715
|
"media_type": "application/json",
|
|
1350
|
-
"path": "schemas/RuntimeExecutorPolicy.schema.json",
|
|
1716
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeExecutorPolicy.schema.json",
|
|
1351
1717
|
"sha256": "5f8a679f3adb01effb0d6500011454bc4893b6dfe64c83b8e6dd169c739c865c",
|
|
1352
1718
|
"size_bytes": 1507
|
|
1353
1719
|
},
|
|
1354
1720
|
{
|
|
1355
1721
|
"media_type": "application/json",
|
|
1356
|
-
"path": "schemas/RuntimeHealthReport.schema.json",
|
|
1722
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeHealthReport.schema.json",
|
|
1357
1723
|
"sha256": "299a876c9bcc96777a8d6d3abd7265a89fe16776ef292faf1ec6818fa5b104c7",
|
|
1358
1724
|
"size_bytes": 3823
|
|
1359
1725
|
},
|
|
1360
1726
|
{
|
|
1361
1727
|
"media_type": "application/json",
|
|
1362
|
-
"path": "schemas/RuntimeIdentityContext.schema.json",
|
|
1728
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeIdentityContext.schema.json",
|
|
1363
1729
|
"sha256": "8cac32732e8d69d2f13e797cea4b2c1dd07b6c0723b6c67bbb49b92480bd1ecb",
|
|
1364
1730
|
"size_bytes": 12066
|
|
1365
1731
|
},
|
|
1366
1732
|
{
|
|
1367
1733
|
"media_type": "application/json",
|
|
1368
|
-
"path": "schemas/RuntimeRunReport.schema.json",
|
|
1734
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeRunReport.schema.json",
|
|
1369
1735
|
"sha256": "65c8381ce58c834f6a7c39e4acaa39ca2fdfcec16d4901d3efa14a82e8e2330c",
|
|
1370
1736
|
"size_bytes": 91824
|
|
1371
1737
|
},
|
|
1372
1738
|
{
|
|
1373
1739
|
"media_type": "application/json",
|
|
1374
|
-
"path": "schemas/RuntimeServiceSettings.schema.json",
|
|
1740
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeServiceSettings.schema.json",
|
|
1375
1741
|
"sha256": "d382d2ab36c11a21416af07b3dc4097669a051c42819d9c7e71967478981817a",
|
|
1376
1742
|
"size_bytes": 1171
|
|
1377
1743
|
},
|
|
1378
1744
|
{
|
|
1379
1745
|
"media_type": "application/json",
|
|
1380
|
-
"path": "schemas/RuntimeState.schema.json",
|
|
1746
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeState.schema.json",
|
|
1381
1747
|
"sha256": "d840be62c6f716dd77f5118a12a92900d989c9d9a9b140b5db6bb5bbc512874f",
|
|
1382
1748
|
"size_bytes": 35946
|
|
1383
1749
|
},
|
|
1384
1750
|
{
|
|
1385
1751
|
"media_type": "application/json",
|
|
1386
|
-
"path": "schemas/RuntimeStepInput.schema.json",
|
|
1752
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeStepInput.schema.json",
|
|
1387
1753
|
"sha256": "63f73423570d84573057a1814ad3fb19b1ee0c92752b3023e32bfa5a2b9439ce",
|
|
1388
1754
|
"size_bytes": 16832
|
|
1389
1755
|
},
|
|
1390
1756
|
{
|
|
1391
1757
|
"media_type": "application/json",
|
|
1392
|
-
"path": "schemas/RuntimeStepReport.schema.json",
|
|
1758
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeStepReport.schema.json",
|
|
1393
1759
|
"sha256": "1e22794309e74485896fd53332c96cbeb0f2483fd97bd449ef24f4c6241f389f",
|
|
1394
1760
|
"size_bytes": 86515
|
|
1395
1761
|
},
|
|
1396
1762
|
{
|
|
1397
1763
|
"media_type": "application/json",
|
|
1398
|
-
"path": "schemas/RuntimeStoreRecord.schema.json",
|
|
1764
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeStoreRecord.schema.json",
|
|
1399
1765
|
"sha256": "9f8f46c1b92922f027e92f7025fa14d8df6c659e85c13d044dc2a904b186f714",
|
|
1400
1766
|
"size_bytes": 2398
|
|
1401
1767
|
},
|
|
1402
1768
|
{
|
|
1403
1769
|
"media_type": "application/json",
|
|
1404
|
-
"path": "schemas/RuntimeStoreSnapshot.schema.json",
|
|
1770
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/RuntimeStoreSnapshot.schema.json",
|
|
1405
1771
|
"sha256": "c693115ac6df6b3c2dc34089e14e2cc879115cd7a64dd227e67df7c61bc39e94",
|
|
1406
1772
|
"size_bytes": 126109
|
|
1407
1773
|
},
|
|
1408
1774
|
{
|
|
1409
1775
|
"media_type": "application/json",
|
|
1410
|
-
"path": "schemas/SafePhaseAction.schema.json",
|
|
1776
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SafePhaseAction.schema.json",
|
|
1411
1777
|
"sha256": "388bf1bf933279b6335686fab1959151abba57fac3d21f8b8a8998f0e9f7b620",
|
|
1412
1778
|
"size_bytes": 2022
|
|
1413
1779
|
},
|
|
1414
1780
|
{
|
|
1415
1781
|
"media_type": "application/json",
|
|
1416
|
-
"path": "schemas/
|
|
1782
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SalienceObstructionDiagnosis.schema.json",
|
|
1783
|
+
"sha256": "f83cdb93ee61c219358c3b89c50ed4ed0c84443593a85569dd70a8a8c17b3e12",
|
|
1784
|
+
"size_bytes": 1172
|
|
1785
|
+
},
|
|
1786
|
+
{
|
|
1787
|
+
"media_type": "application/json",
|
|
1788
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SalienceObstructionLoad.schema.json",
|
|
1789
|
+
"sha256": "7c4c0b8a5958d25effe65f659f55075acd05700c248d219156b95056a0de198c",
|
|
1790
|
+
"size_bytes": 401
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
"media_type": "application/json",
|
|
1794
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SalienceQueueRecord.schema.json",
|
|
1417
1795
|
"sha256": "7311f3c5e7e72af41d47b317659797809449912a336352b375f8639a637c1a89",
|
|
1418
1796
|
"size_bytes": 6972
|
|
1419
1797
|
},
|
|
1420
1798
|
{
|
|
1421
1799
|
"media_type": "application/json",
|
|
1422
|
-
"path": "schemas/SalienceScheduleReport.schema.json",
|
|
1800
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SalienceScheduleReport.schema.json",
|
|
1423
1801
|
"sha256": "562a1945736f70a7e61204a2554d7f73123d9b3bd687f5fb12f2e44f6fd6ee72",
|
|
1424
1802
|
"size_bytes": 10792
|
|
1425
1803
|
},
|
|
1426
1804
|
{
|
|
1427
1805
|
"media_type": "application/json",
|
|
1428
|
-
"path": "schemas/SalienceSchedulingDecision.schema.json",
|
|
1806
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SalienceSchedulingDecision.schema.json",
|
|
1429
1807
|
"sha256": "5ab7c7ede7a949538c59d278e42b00002c928220f71229021d94dabc1d57def4",
|
|
1430
1808
|
"size_bytes": 3812
|
|
1431
1809
|
},
|
|
1432
1810
|
{
|
|
1433
1811
|
"media_type": "application/json",
|
|
1434
|
-
"path": "schemas/SBOMManifest.schema.json",
|
|
1435
|
-
"sha256": "
|
|
1812
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SBOMManifest.schema.json",
|
|
1813
|
+
"sha256": "a78ab3f72306679dee48e866484fc2162bbed4c9d61991e7d3dbaf438834c37b",
|
|
1436
1814
|
"size_bytes": 1474
|
|
1437
1815
|
},
|
|
1438
1816
|
{
|
|
1439
1817
|
"media_type": "application/json",
|
|
1440
|
-
"path": "schemas/SchemaBundleDigest.schema.json",
|
|
1818
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SchemaBundleDigest.schema.json",
|
|
1441
1819
|
"sha256": "d3f575b0748600365b62b98b49766827e49bf972ab1dd315e722e39d25e4b2a2",
|
|
1442
1820
|
"size_bytes": 1306
|
|
1443
1821
|
},
|
|
1444
1822
|
{
|
|
1445
1823
|
"media_type": "application/json",
|
|
1446
|
-
"path": "schemas/ScriptGroundMetricCertificate.schema.json",
|
|
1824
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ScriptGroundMetricCertificate.schema.json",
|
|
1447
1825
|
"sha256": "4314fc1653a0cd6d056ef07231f9b8777074d21a127c320a5f6120466adc444e",
|
|
1448
1826
|
"size_bytes": 948
|
|
1449
1827
|
},
|
|
1450
1828
|
{
|
|
1451
1829
|
"media_type": "application/json",
|
|
1452
|
-
"path": "schemas/SelectiveCUPCertificate.schema.json",
|
|
1830
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SelectiveCUPCertificate.schema.json",
|
|
1453
1831
|
"sha256": "36279fb18328700aaf18674ca9bf2a39d8a9a9a647d3613c48dbbb99aef33e09",
|
|
1454
1832
|
"size_bytes": 9736
|
|
1455
1833
|
},
|
|
1456
1834
|
{
|
|
1457
1835
|
"media_type": "application/json",
|
|
1458
|
-
"path": "schemas/
|
|
1836
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SemanticEdgeEvidence.schema.json",
|
|
1837
|
+
"sha256": "5f174d696551b45d5ab1636b1c4075130226ae70af1af9baea31f572db36fbb0",
|
|
1838
|
+
"size_bytes": 891
|
|
1839
|
+
},
|
|
1840
|
+
{
|
|
1841
|
+
"media_type": "application/json",
|
|
1842
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SettlementReturnRAFCertificate.schema.json",
|
|
1459
1843
|
"sha256": "53e08ba2ab1f2d7dc7566c5f5c61c68134e88548be2f750622d76dc7d7b0a1ee",
|
|
1460
1844
|
"size_bytes": 2958
|
|
1461
1845
|
},
|
|
1462
1846
|
{
|
|
1463
1847
|
"media_type": "application/json",
|
|
1464
|
-
"path": "schemas/SinkhornCertificate.schema.json",
|
|
1848
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SinkhornCertificate.schema.json",
|
|
1465
1849
|
"sha256": "0409d9b97a2981be5dca988bdf9f667e9e67ac997a93dee526febdd1826662fe",
|
|
1466
1850
|
"size_bytes": 1049
|
|
1467
1851
|
},
|
|
1468
1852
|
{
|
|
1469
1853
|
"media_type": "application/json",
|
|
1470
|
-
"path": "schemas/SnapshotAttribution.schema.json",
|
|
1854
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SnapshotAttribution.schema.json",
|
|
1471
1855
|
"sha256": "404d6d6e98ed1155aa93065af89f6d180696b83339f56368286e29ba8d67cfdf",
|
|
1472
1856
|
"size_bytes": 1224
|
|
1473
1857
|
},
|
|
1474
1858
|
{
|
|
1475
1859
|
"media_type": "application/json",
|
|
1476
|
-
"path": "schemas/SnapshotCatalog.schema.json",
|
|
1860
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SnapshotCatalog.schema.json",
|
|
1477
1861
|
"sha256": "ec95922654f465a4a2d2b76530a78f155b27a870196c37fdbe59d9f2167686b2",
|
|
1478
1862
|
"size_bytes": 12106
|
|
1479
1863
|
},
|
|
1480
1864
|
{
|
|
1481
1865
|
"media_type": "application/json",
|
|
1482
|
-
"path": "schemas/SplitCertificate.schema.json",
|
|
1866
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SplitCertificate.schema.json",
|
|
1483
1867
|
"sha256": "63488feaa23fc513f08e7d1ed1a9e887b4aac5dbce54a82b6e9ee726e3427969",
|
|
1484
1868
|
"size_bytes": 857
|
|
1485
1869
|
},
|
|
1486
1870
|
{
|
|
1487
1871
|
"media_type": "application/json",
|
|
1488
|
-
"path": "schemas/SQOTTheorySnapshot.schema.json",
|
|
1872
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SQOTTheorySnapshot.schema.json",
|
|
1489
1873
|
"sha256": "126dabb88462742ce0abea34468c3947aa535af411e7a1bd19d57b03ceb6be4d",
|
|
1490
1874
|
"size_bytes": 1101
|
|
1491
1875
|
},
|
|
1492
1876
|
{
|
|
1493
1877
|
"media_type": "application/json",
|
|
1494
|
-
"path": "schemas/StatusAlgebraRecord.schema.json",
|
|
1878
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/StatusAlgebraRecord.schema.json",
|
|
1495
1879
|
"sha256": "66bbcfcd5bb3e7a6ebca48c17e1d70175f1eef9660b86b728afb6f052b7df517",
|
|
1496
1880
|
"size_bytes": 764
|
|
1497
1881
|
},
|
|
1498
1882
|
{
|
|
1499
1883
|
"media_type": "application/json",
|
|
1500
|
-
"path": "schemas/StoppedEvidenceSheafCertificate.schema.json",
|
|
1884
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/StoppedEvidenceSheafCertificate.schema.json",
|
|
1501
1885
|
"sha256": "600223cb7b1c46281af4f3450bca274ca4f58109f7dd57b8905b6b6df155f0c9",
|
|
1502
1886
|
"size_bytes": 2721
|
|
1503
1887
|
},
|
|
1504
1888
|
{
|
|
1505
1889
|
"media_type": "application/json",
|
|
1506
|
-
"path": "schemas/StrictTexParseReport.schema.json",
|
|
1890
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/StrictTexParseReport.schema.json",
|
|
1507
1891
|
"sha256": "08d91f76930eb05f3f981654494d1fcbbb006176f5b482849c8ea388458800cb",
|
|
1508
1892
|
"size_bytes": 1505
|
|
1509
1893
|
},
|
|
1510
1894
|
{
|
|
1511
1895
|
"media_type": "application/json",
|
|
1512
|
-
"path": "schemas/SybilResistanceLedger.schema.json",
|
|
1896
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SybilResistanceLedger.schema.json",
|
|
1513
1897
|
"sha256": "2da0b55bfe312c80a1805ddf5867eb9913be73b1ca8704a4d4d228aca6703257",
|
|
1514
1898
|
"size_bytes": 10113
|
|
1515
1899
|
},
|
|
1516
1900
|
{
|
|
1517
1901
|
"media_type": "application/json",
|
|
1518
|
-
"path": "schemas/SybilResistancePolicy.schema.json",
|
|
1902
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/SybilResistancePolicy.schema.json",
|
|
1519
1903
|
"sha256": "ef4f4412f901464810077305ede5812f48ee092b04932267ff0437f744eae283",
|
|
1520
1904
|
"size_bytes": 4326
|
|
1521
1905
|
},
|
|
1522
1906
|
{
|
|
1523
1907
|
"media_type": "application/json",
|
|
1524
|
-
"path": "schemas/TelemetryCostCertificate.schema.json",
|
|
1908
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TelemetryCostCertificate.schema.json",
|
|
1525
1909
|
"sha256": "8789cbfc06eda339a80333c2aaa808f7134afcf7291928c4296a648e3a691d8a",
|
|
1526
1910
|
"size_bytes": 3917
|
|
1527
1911
|
},
|
|
1528
1912
|
{
|
|
1529
1913
|
"media_type": "application/json",
|
|
1530
|
-
"path": "schemas/TexGrammarDiagnostic.schema.json",
|
|
1914
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TexGrammarDiagnostic.schema.json",
|
|
1531
1915
|
"sha256": "1be7dd42aee72ce533c9c2a55139905add19cca134f336aeb832e9e93954171d",
|
|
1532
1916
|
"size_bytes": 771
|
|
1533
1917
|
},
|
|
1534
1918
|
{
|
|
1535
1919
|
"media_type": "application/json",
|
|
1536
|
-
"path": "schemas/TheoryAuditReport.schema.json",
|
|
1920
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TheoryAuditReport.schema.json",
|
|
1537
1921
|
"sha256": "aabc630ead66bc98769756e798e0f4baf3f30383c545175de4624585a4cc71c7",
|
|
1538
1922
|
"size_bytes": 15749
|
|
1539
1923
|
},
|
|
1540
1924
|
{
|
|
1541
1925
|
"media_type": "application/json",
|
|
1542
|
-
"path": "schemas/TheoryAuditSuiteReport.schema.json",
|
|
1926
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TheoryAuditSuiteReport.schema.json",
|
|
1543
1927
|
"sha256": "4f81a872922544ac81127d5f8985b66d3dc479a7291436867cb6adad98943c32",
|
|
1544
1928
|
"size_bytes": 19233
|
|
1545
1929
|
},
|
|
1546
1930
|
{
|
|
1547
1931
|
"media_type": "application/json",
|
|
1548
|
-
"path": "schemas/TheoryFidelityReport.schema.json",
|
|
1932
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TheoryFidelityReport.schema.json",
|
|
1549
1933
|
"sha256": "5b364b1acff25bd94529e3319f29d9291fc69339a56bac5ad83305f6a8affe21",
|
|
1550
1934
|
"size_bytes": 2341
|
|
1551
1935
|
},
|
|
1552
1936
|
{
|
|
1553
1937
|
"media_type": "application/json",
|
|
1554
|
-
"path": "schemas/TheoryImplementationRecord.schema.json",
|
|
1938
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TheoryImplementationRecord.schema.json",
|
|
1555
1939
|
"sha256": "953a2d728b4dc71cf2a7f67effa574614d6432867199a694b09f79a2dcda9f6a",
|
|
1556
1940
|
"size_bytes": 4235
|
|
1557
1941
|
},
|
|
1558
1942
|
{
|
|
1559
1943
|
"media_type": "application/json",
|
|
1560
|
-
"path": "schemas/TheorySnapshot.schema.json",
|
|
1944
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TheorySnapshot.schema.json",
|
|
1561
1945
|
"sha256": "bcf403d3fe505c09ade9d6f3eafc4bdf405cce967f8a781f59b1fb35f83934f4",
|
|
1562
1946
|
"size_bytes": 11183
|
|
1563
1947
|
},
|
|
1564
1948
|
{
|
|
1565
1949
|
"media_type": "application/json",
|
|
1566
|
-
"path": "schemas/TheorySnapshotItem.schema.json",
|
|
1950
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TheorySnapshotItem.schema.json",
|
|
1567
1951
|
"sha256": "e19e9218f746c5efcbe7320e0d65fd3f5e5666a5970a7152836d86f80c0a5597",
|
|
1568
1952
|
"size_bytes": 1245
|
|
1569
1953
|
},
|
|
1570
1954
|
{
|
|
1571
1955
|
"media_type": "application/json",
|
|
1572
|
-
"path": "schemas/TokenLineage.schema.json",
|
|
1956
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TokenLineage.schema.json",
|
|
1573
1957
|
"sha256": "81704a6148e7987d92bd09dc6185d4b2232287c0e8983d9a6f6557a87fc06c1a",
|
|
1574
1958
|
"size_bytes": 1534
|
|
1575
1959
|
},
|
|
1576
1960
|
{
|
|
1577
1961
|
"media_type": "application/json",
|
|
1578
|
-
"path": "schemas/ToleranceAllocationCertificate.schema.json",
|
|
1962
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ToleranceAllocationCertificate.schema.json",
|
|
1579
1963
|
"sha256": "7d82dcd61520c32624b4bec749c2b58984005ac2b804117f47932e78a7e4085f",
|
|
1580
1964
|
"size_bytes": 1264
|
|
1581
1965
|
},
|
|
1582
1966
|
{
|
|
1583
1967
|
"media_type": "application/json",
|
|
1584
|
-
"path": "schemas/
|
|
1968
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TraceAdapterReport.schema.json",
|
|
1969
|
+
"sha256": "cacd6eaea35328aadec736e02f553da6440b75f4f64cea842c271bfa861a6dd8",
|
|
1970
|
+
"size_bytes": 10648
|
|
1971
|
+
},
|
|
1972
|
+
{
|
|
1973
|
+
"media_type": "application/json",
|
|
1974
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TraceFrontierDebt.schema.json",
|
|
1975
|
+
"sha256": "fa6051f6cbfc5cd76874f8a0e0e57a7cc9bd7f595547708979f0d5e54fa68477",
|
|
1976
|
+
"size_bytes": 1010
|
|
1977
|
+
},
|
|
1978
|
+
{
|
|
1979
|
+
"media_type": "application/json",
|
|
1980
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TraceNormalForm.schema.json",
|
|
1981
|
+
"sha256": "d4c52954e61319ae83fd60925ba5eac39f2c5e21205ce8666c065c014568d6ff",
|
|
1982
|
+
"size_bytes": 4613
|
|
1983
|
+
},
|
|
1984
|
+
{
|
|
1985
|
+
"media_type": "application/json",
|
|
1986
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TraceNormalizationCertificate.schema.json",
|
|
1585
1987
|
"sha256": "e815dc444303e9b1e5bddb6f4350accd1b768a6c459d551da3acf0171c956769",
|
|
1586
1988
|
"size_bytes": 1563
|
|
1587
1989
|
},
|
|
1588
1990
|
{
|
|
1589
1991
|
"media_type": "application/json",
|
|
1590
|
-
"path": "schemas/TraceSufficiencyCertificate.schema.json",
|
|
1992
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TraceSufficiencyCertificate.schema.json",
|
|
1591
1993
|
"sha256": "a883c40142f2de38e204bf47e18154c42d71bd5f55cf244a73edbb61c6e14387",
|
|
1592
1994
|
"size_bytes": 3780
|
|
1593
1995
|
},
|
|
1594
1996
|
{
|
|
1595
1997
|
"media_type": "application/json",
|
|
1596
|
-
"path": "schemas/
|
|
1998
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TraceToleranceLedger.schema.json",
|
|
1999
|
+
"sha256": "f51238ba7702143f606297313507d09b47603cc7339d43fd20106a349879073b",
|
|
2000
|
+
"size_bytes": 672
|
|
2001
|
+
},
|
|
2002
|
+
{
|
|
2003
|
+
"media_type": "application/json",
|
|
2004
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TransportCertificate.schema.json",
|
|
1597
2005
|
"sha256": "760743aa05d17a934e1a1f28411c461cdb7740d3561d502afc0781391048e900",
|
|
1598
2006
|
"size_bytes": 4104
|
|
1599
2007
|
},
|
|
1600
2008
|
{
|
|
1601
2009
|
"media_type": "application/json",
|
|
1602
|
-
"path": "schemas/TRCCompileResult.schema.json",
|
|
2010
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TRCCompileResult.schema.json",
|
|
1603
2011
|
"sha256": "459931c46d10804f39226b43608245e938fe87c25bad96f0cd53208d61f57c25",
|
|
1604
2012
|
"size_bytes": 5613
|
|
1605
2013
|
},
|
|
1606
2014
|
{
|
|
1607
2015
|
"media_type": "application/json",
|
|
1608
|
-
"path": "schemas/TRCStateRecord.schema.json",
|
|
2016
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TRCStateRecord.schema.json",
|
|
1609
2017
|
"sha256": "1f3b0322e15e61cc7b575db3c9e30c657afdc5a49a93f90f597955fa71e5449c",
|
|
1610
2018
|
"size_bytes": 3464
|
|
1611
2019
|
},
|
|
1612
2020
|
{
|
|
1613
2021
|
"media_type": "application/json",
|
|
1614
|
-
"path": "schemas/
|
|
2022
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TypedActionBoundary.schema.json",
|
|
2023
|
+
"sha256": "1632b736c499b20708f24612dbad24a8d1f7d511574dac1970f6b62a4a895533",
|
|
2024
|
+
"size_bytes": 1297
|
|
2025
|
+
},
|
|
2026
|
+
{
|
|
2027
|
+
"media_type": "application/json",
|
|
2028
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TypedAgentTrace.schema.json",
|
|
2029
|
+
"sha256": "9a5ddf0917e82d8a3c80a7d557568823ba2ca75440cc7fba0e4a1c0cdec82e4e",
|
|
2030
|
+
"size_bytes": 8529
|
|
2031
|
+
},
|
|
2032
|
+
{
|
|
2033
|
+
"media_type": "application/json",
|
|
2034
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TypedToolCallTrace.schema.json",
|
|
2035
|
+
"sha256": "0f85399d82979bb4f07b7f43a10766316ecc1b5de659c4d78a0fe1d9eb6f7a5b",
|
|
2036
|
+
"size_bytes": 1710
|
|
2037
|
+
},
|
|
2038
|
+
{
|
|
2039
|
+
"media_type": "application/json",
|
|
2040
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/TypedTraceTransducerRecord.schema.json",
|
|
1615
2041
|
"sha256": "475c05373b1203d4501de3d27b9112e3af0f2882e8a11aad23a23aaf74e43af3",
|
|
1616
2042
|
"size_bytes": 1314
|
|
1617
2043
|
},
|
|
1618
2044
|
{
|
|
1619
2045
|
"media_type": "application/json",
|
|
1620
|
-
"path": "schemas/ValueBridgeReport.schema.json",
|
|
2046
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/ValueBridgeReport.schema.json",
|
|
1621
2047
|
"sha256": "6306ccad7933a8f4bc4c44f49e8417a0ec25b408499e9a3c04104ed161b63445",
|
|
1622
2048
|
"size_bytes": 3187
|
|
1623
2049
|
},
|
|
1624
2050
|
{
|
|
1625
2051
|
"media_type": "application/json",
|
|
1626
|
-
"path": "schemas/VectorCompatibleFamily.schema.json",
|
|
2052
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/VectorCompatibleFamily.schema.json",
|
|
1627
2053
|
"sha256": "92b0727216ca83f875794e95183c07c6e1092e779ffba7a47a055c2551458251",
|
|
1628
2054
|
"size_bytes": 8296
|
|
1629
2055
|
},
|
|
1630
2056
|
{
|
|
1631
2057
|
"media_type": "application/json",
|
|
1632
|
-
"path": "schemas/
|
|
2058
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/VerificationQueuePressure.schema.json",
|
|
2059
|
+
"sha256": "31f1de6c75a24a8ec1bb60f003f44d56dc32e137dd2f692b2ba3a86c9ef18f86",
|
|
2060
|
+
"size_bytes": 909
|
|
2061
|
+
},
|
|
2062
|
+
{
|
|
2063
|
+
"media_type": "application/json",
|
|
2064
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/VerificationThroughputReport.schema.json",
|
|
1633
2065
|
"sha256": "fc938108cc068c3b0bb3cea3c1c72d0b1ab87e1a876d27333e5bd043ab0177e6",
|
|
1634
2066
|
"size_bytes": 1573
|
|
1635
2067
|
},
|
|
1636
2068
|
{
|
|
1637
2069
|
"media_type": "application/json",
|
|
1638
|
-
"path": "schemas/
|
|
2070
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/VerificationThroughputWindow.schema.json",
|
|
2071
|
+
"sha256": "768972c7ad57e864135d6ffd10fa6164d35e627bb295b849713c25e8f28ac263",
|
|
2072
|
+
"size_bytes": 436
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
"media_type": "application/json",
|
|
2076
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/VerifiedCapabilityPacket.schema.json",
|
|
1639
2077
|
"sha256": "006a5f1d19aeeeb815e2a7d0c1a7ccc7279f628d24c246acefd90a7224629446",
|
|
1640
2078
|
"size_bytes": 5666
|
|
1641
2079
|
},
|
|
1642
2080
|
{
|
|
1643
2081
|
"media_type": "application/json",
|
|
1644
|
-
"path": "schemas/VerifierEvidenceEnvelope.schema.json",
|
|
2082
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/VerifierEvidenceEnvelope.schema.json",
|
|
1645
2083
|
"sha256": "370ed357da0fd2dd77b37baa86cd6678fcbd7cf15339cb141c475516b78b6594",
|
|
1646
2084
|
"size_bytes": 4157
|
|
1647
2085
|
},
|
|
1648
2086
|
{
|
|
1649
2087
|
"media_type": "application/json",
|
|
1650
|
-
"path": "schemas/VerifierResolution.schema.json",
|
|
2088
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/VerifierResolution.schema.json",
|
|
1651
2089
|
"sha256": "ac06fe51fad6211cec9bc11859ddfbffeabfe24689d00a7fb4ab2d6dd43863bf",
|
|
1652
2090
|
"size_bytes": 6302
|
|
1653
2091
|
},
|
|
1654
2092
|
{
|
|
1655
2093
|
"media_type": "application/json",
|
|
1656
|
-
"path": "schemas/
|
|
2094
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/WasteLoad.schema.json",
|
|
2095
|
+
"sha256": "972e932cc7181279faa06b84f5834d8c1478f42f09adace7f708290ca8af6eb1",
|
|
2096
|
+
"size_bytes": 409
|
|
2097
|
+
},
|
|
2098
|
+
{
|
|
2099
|
+
"media_type": "application/json",
|
|
2100
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/WebDiscoveryReport.schema.json",
|
|
1657
2101
|
"sha256": "95a85e4595499c83f1e016f31e0819740231b8d2ea01160f4373e7aa13a5f089",
|
|
1658
2102
|
"size_bytes": 16379
|
|
1659
2103
|
},
|
|
1660
2104
|
{
|
|
1661
2105
|
"media_type": "application/json",
|
|
1662
|
-
"path": "schemas/WebFetchPolicy.schema.json",
|
|
1663
|
-
"sha256": "
|
|
2106
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/WebFetchPolicy.schema.json",
|
|
2107
|
+
"sha256": "16362e4a59108589832d049e0c5253e2d7d3fbc447a9fb86789cbc296f77140a",
|
|
1664
2108
|
"size_bytes": 3530
|
|
1665
2109
|
},
|
|
1666
2110
|
{
|
|
1667
2111
|
"media_type": "application/json",
|
|
1668
|
-
"path": "schemas/WebFetchReport.schema.json",
|
|
2112
|
+
"path": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5/WebFetchReport.schema.json",
|
|
1669
2113
|
"sha256": "82c6c7d8ebb32873e52f22c3114b877ed02e5150e43841377044568b2b0cb2c7",
|
|
1670
2114
|
"size_bytes": 3048
|
|
1671
2115
|
}
|
|
1672
2116
|
],
|
|
1673
|
-
"schema_dir": "schemas"
|
|
2117
|
+
"schema_dir": "pic-py050-schemas-f88f053f65804c2bace9969ce3c956e5"
|
|
1674
2118
|
}
|