Skip to content

Commit ab1e8ca

Browse files
committed
Fix SonarCloud findings
1 parent 255d07c commit ab1e8ca

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

changelog.d/89.added.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Extend `experiment-run-v1` as the canonical run provenance record for EXP-710, EXP-720, and EXP-722. Run records now include required traceability links from capture specs to raw evidence, derived measures, and claims, plus realized-form disclosures for processor/backend/operator choices that were not fully authored in the scenario or task. ADR-065 and the formal experiment-core spec document the boundary; generated schemas, fixtures, and contract tests enforce the new provenance surface.
1+
Extend `experiment-run-v1` as the canonical run provenance record for EXP-710, EXP-720, and EXP-722. Run records now include required traceability links from capture specs to raw evidence, derived measures, and claims, plus realized-form disclosures for processor/backend/operator choices that were not fully authored in the scenario or task. ADR-065 and the formal experiment-core spec document the boundary; generated schemas, fixtures, and contract tests enforce the new provenance surface. Reference de-duplication now also tolerates constrained experiment reference models that omit optional digest, path, or subject fields.

implementations/python/packages/aces_contracts/contracts.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3607,7 +3607,9 @@ def __get_pydantic_json_schema__(
36073607
"realized-form-disclosure-substantive",
36083608
"Every realized-form disclosure must name a realized reference or value summary and use the right "
36093609
"processor/backend realization authority for processor-realized and backend-realized concerns.",
3610-
validator="aces_contracts.contracts.ExperimentRealizedFormDisclosureModel._validate_realized_form_disclosure",
3610+
validator=(
3611+
"aces_contracts.contracts.ExperimentRealizedFormDisclosureModel._validate_realized_form_disclosure"
3612+
),
36113613
inputs=[{"contract_id": "experiment-run-v1", "instance_path": "#/realized_form_disclosures"}],
36123614
)
36133615
return json_schema

0 commit comments

Comments
 (0)