30e63d6cb5
---ci--- phase: 5 milestone: v1.0 status: complete ---/ci--- Two reference contracts under contracts/examples/ demonstrating how developers can use the open-ended inputs: map (D-021) to carry environment + ownership + business context + deployment knobs + operational flags. 29 keys each. - contract-commodity-price-feed-prod.yaml: passing pipeline (POLICY_PASS, score 0.90, all 5 L1s applied) - contract-regulatory-reporting-violation.yaml: Act 4 trigger (public-ingress: true -> POLICY_VIOLATION:PUBLIC_INGRESS -> score 0.40 < 0.50 gate -> Dev rejects) Both validated end-to-end: yaml load, policy_checker, confidence_signal, mock_executor (passing contract only). state.json captures all 29 input keys.
55 lines
1.8 KiB
YAML
55 lines
1.8 KiB
YAML
# Elaborate developer contract — regulatory reporting (with policy violation).
|
|
#
|
|
# Same schema as the price-feed example, but with public-ingress: true,
|
|
# which triggers Act 4: the policy_checker fails, the confidence_signal
|
|
# drops to 0.40, the 0.50 gate halts the pipeline in Dev, and the
|
|
# rejection appears on the evidence timeline.
|
|
#
|
|
# Commit this to acdl-contracts as contract.yaml to reproduce Act 4:
|
|
# git add contract.yaml && git commit -m "feat: deploy regulatory reporting" && git push
|
|
|
|
stack: l2-regulatory-reporting
|
|
|
|
inputs:
|
|
# --- Environment + ownership ---
|
|
environment: prod
|
|
owner: compliance-and-controls-team
|
|
team: regulatory-reporting-desk
|
|
cost_center: CC-CMP-9902
|
|
change_ticket: CHG-2026-07-21-118
|
|
business_owner: compliance@jccapital.xyz
|
|
oncall_email: sre-regulatory@example.com
|
|
sla_tier: T0
|
|
business_hours: "24x7"
|
|
data_classification: confidential
|
|
|
|
# --- Regulatory context ---
|
|
regulator: FERC
|
|
filing_frequency: monthly
|
|
filing_deadline_day_of_month: "15"
|
|
reporting_period: 2026-Q3
|
|
jurisdiction: US-Federal
|
|
legal_hold: "false"
|
|
|
|
# --- Deployment knobs ---
|
|
replicas: "2"
|
|
cpu_request: "1000m"
|
|
memory_request: "2Gi"
|
|
autoscale_min: "2"
|
|
autoscale_max: "4"
|
|
log_retention_days: "365"
|
|
archive_retention_days: "2555"
|
|
enable_encryption_at_rest: "true"
|
|
enable_kms_rotation: "true"
|
|
|
|
# --- Operational flags ---
|
|
enable_canary: "false"
|
|
enable_pagerduty: "true"
|
|
enable_cost_alerts: "true"
|
|
cost_alert_threshold_usd: "1000"
|
|
|
|
# POLICY VIOLATION — this is the Act 4 trigger.
|
|
# The policy_checker.py will emit: POLICY_VIOLATION:PUBLIC_INGRESS
|
|
# The confidence_signal.py will return: {"score": 0.40, "reason": "POLICY_VIOLATION:PUBLIC_INGRESS"}
|
|
# The 0.50 gate halts the pipeline in Dev; mock_executor never runs.
|
|
public-ingress: true |