SybilGambleyyu commited on
Commit
f0c7758
·
verified ·
1 Parent(s): f4e2543

Release WCAB 0.2.0

Browse files

Upgrade to schema v2 with a deterministic structured Table scope-expansion case, plus refreshed fixtures, catalogue, schema, and validation record.

README.md CHANGED
@@ -22,7 +22,7 @@ configs:
22
  # Workbook Change Assurance Benchmark (WCAB)
23
 
24
  WCAB is an open, deterministic benchmark for tools that review changes to
25
- Excel workbooks. Each of its 16 synthetic cases supplies a baseline workbook,
26
  a candidate workbook, explicit observable change facts, a reference review
27
  disposition, and documented coverage boundaries.
28
 
@@ -37,7 +37,8 @@ WCAB targets spreadsheet-change assurance: whether a diff tool, policy gate,
37
  static analyzer, or editing agent preserves material review evidence when a
38
  workbook changes. The current cases include formula-to-value replacements,
39
  reference drift, input propagation, external references, named ranges,
40
- controls, calculation state, cycles, structural changes, and a small
 
41
  multi-workbook portfolio.
42
 
43
  The benchmark does **not** evaluate Excel formula execution or claim that
 
22
  # Workbook Change Assurance Benchmark (WCAB)
23
 
24
  WCAB is an open, deterministic benchmark for tools that review changes to
25
+ Excel workbooks. Each of its 17 synthetic cases supplies a baseline workbook,
26
  a candidate workbook, explicit observable change facts, a reference review
27
  disposition, and documented coverage boundaries.
28
 
 
37
  static analyzer, or editing agent preserves material review evidence when a
38
  workbook changes. The current cases include formula-to-value replacements,
39
  reference drift, input propagation, external references, named ranges,
40
+ controls, calculation state, cycles, structural changes (including an Excel
41
+ Table scope expansion with unchanged structured-reference text), and a small
42
  multi-workbook portfolio.
43
 
44
  The benchmark does **not** evaluate Excel formula execution or claim that
RESEARCH.md CHANGED
@@ -41,3 +41,14 @@ WCAB's result is intentionally narrower than a claim of Excel semantic
41
  equivalence. It provides checkable change facts and static dependency lower
42
  bounds. A tool that cannot handle a case must report a coverage gap; it cannot
43
  turn a missing observation into an "allow" result.
 
 
 
 
 
 
 
 
 
 
 
 
41
  equivalence. It provides checkable change facts and static dependency lower
42
  bounds. A tool that cannot handle a case must report a coverage gap; it cannot
43
  turn a missing observation into an "allow" result.
44
+
45
+ ## Structured-reference scope expansion
46
+
47
+ Microsoft documents that a structured reference combines a Table and column
48
+ name, and that the reference adjusts when data is added to or removed from the
49
+ Table. Its [structured-reference guidance](https://support.microsoft.com/en-us/excel/using-structured-references-with-excel-tables)
50
+ also shows formulas outside a Table that refer to Table data. This creates a
51
+ change-review case that ordinary formula text comparison misses: the stored
52
+ formula can remain unchanged while the Table's stored range grows. WCAB schema
53
+ version 2 therefore adds a generated Table-expansion case that checks those
54
+ observable facts without evaluating a formula or asserting a result value.
docs/schema.md CHANGED
@@ -1,9 +1,13 @@
1
- # WCAB truth schema, version 1
2
 
3
  Every case has one `truth.json`. It is public metadata for an original,
4
  generated fixture; it never relies on a private workbook or an external data
5
  source.
6
 
 
 
 
 
7
  ```json
8
  {
9
  "schema_version": 1,
@@ -44,6 +48,7 @@ Facts are observed directly from the fixture files by `wcab validate`.
44
  | `structural_formula_rewrite` | `baseline`, `candidate` | Declared before/after formula locations and text exist. This is an annotation, not a general proof of equivalence. |
45
  | `portfolio_value_changed` | `workbook`, `sheet`, `cell` | A literal value differs between paired portfolio members. |
46
  | `portfolio_external_reference` | `workbook`, `sheet`, `cell`, `target_workbook` | The local portfolio model contains the declared external workbook reference. |
 
47
 
48
  ## Static impact lower bounds
49
 
 
1
+ # WCAB truth schema, version 2
2
 
3
  Every case has one `truth.json`. It is public metadata for an original,
4
  generated fixture; it never relies on a private workbook or an external data
5
  source.
6
 
7
+ Version 2 adds `structured_table_scope_changed`, which captures the stored
8
+ Excel Table range changing while a dependent structured-reference formula keeps
9
+ the same text. Version 1 remains available in the immutable v0.1.1 release.
10
+
11
  ```json
12
  {
13
  "schema_version": 1,
 
48
  | `structural_formula_rewrite` | `baseline`, `candidate` | Declared before/after formula locations and text exist. This is an annotation, not a general proof of equivalence. |
49
  | `portfolio_value_changed` | `workbook`, `sheet`, `cell` | A literal value differs between paired portfolio members. |
50
  | `portfolio_external_reference` | `workbook`, `sheet`, `cell`, `target_workbook` | The local portfolio model contains the declared external workbook reference. |
51
+ | `structured_table_scope_changed` | `table_sheet`, `table`, `baseline_ref`, `candidate_ref`, `formula_sheet`, `formula_cell` | A stored Excel Table range changes while the declared formula remains textually unchanged and retains a reference to that table. |
52
 
53
  ## Static impact lower bounds
54
 
docs/validation.md CHANGED
@@ -1,8 +1,8 @@
1
  # Validation record
2
 
3
- This record describes the WCAB 0.1 validation run performed on 2026-08-01 and
4
- its 0.1.1 distribution supplement on 2026-08-02. It is reproducible from this
5
- repository; no network service or private workbook is required.
6
 
7
  ## Fixture integrity
8
 
@@ -27,28 +27,28 @@ wcab validate --fixtures fixtures
27
 
28
  Results:
29
 
30
- - 16 cases: 15 paired-workbook cases and one directory portfolio case.
31
- - 18 observable truth facts: 11 `block` and five `review` dispositions.
32
- - 50 workbook and truth-manifest fixture files, plus one generated JSONL case
33
  catalogue, all generated from source.
34
- - Nine unit tests passed under both Python versions, including independent
35
  regeneration and byte-for-byte fixture-tree equality.
36
- - The fixture validator accepted all 16 cases.
37
 
38
  ## Distribution supplement
39
 
40
- The 0.1.1 release also builds a one-row-per-case `manifest.jsonl` catalogue.
41
- Each row retains the truth contract and includes byte counts and SHA-256
42
- digests for the workbooks it names.
43
 
44
  Commands:
45
 
46
  ```bash
47
  python -m build
48
- twine check dist/workbook_change_benchmark-0.1.1*
49
  python -m venv /tmp/wcab-wheel-test
50
  /tmp/wcab-wheel-test/bin/python -m pip install \
51
- dist/workbook_change_benchmark-0.1.1-py3-none-any.whl
52
  /tmp/wcab-wheel-test/bin/wcab validate --fixtures fixtures
53
  /tmp/wcab-wheel-test/bin/wcab manifest --fixtures fixtures --output /tmp/manifest.jsonl
54
  cmp fixtures/manifest.jsonl /tmp/manifest.jsonl
@@ -57,9 +57,9 @@ cmp fixtures/manifest.jsonl /tmp/manifest.jsonl
57
  Results:
58
 
59
  - The source distribution and universal wheel passed `twine check`.
60
- - A fresh Python 3.12 wheel installation validated all 16 fixtures and emitted
61
  byte-identical JSONL output.
62
- - The full nine-test suite, lint, and format checks passed under the supported
63
  local Python versions (3.12 and 3.13).
64
 
65
  ## FormulaFence reference adapter
@@ -73,8 +73,11 @@ wcab formulafence --fixtures fixtures --strict
73
 
74
  Results:
75
 
76
- - All 17 currently mappable diff/portfolio facts were observed.
77
- - No mapped fact was missed across all 16 cases.
 
 
 
78
  - Five targeted lint expectations were observed: copied-formula interruption
79
  (`FF082`), conditional-aggregate range shape (`FF093`), explicitly unlocked
80
  formula cell (`FF085`), incomplete manual calculation (`FF086`), and static
 
1
  # Validation record
2
 
3
+ This record describes the WCAB 0.2.0 / schema-version-2 validation run on
4
+ 2026-08-02. It is reproducible from this repository; no network service or
5
+ private workbook is required.
6
 
7
  ## Fixture integrity
8
 
 
27
 
28
  Results:
29
 
30
+ - 17 cases: 16 paired-workbook cases and one directory portfolio case.
31
+ - 19 observable truth facts: 12 `block` and five `review` dispositions.
32
+ - 53 workbook and truth-manifest fixture files, plus one generated JSONL case
33
  catalogue, all generated from source.
34
+ - Eleven unit tests passed under both Python versions, including independent
35
  regeneration and byte-for-byte fixture-tree equality.
36
+ - The fixture validator accepted all 17 cases.
37
 
38
  ## Distribution supplement
39
 
40
+ The 0.2.0 release builds a one-row-per-case `manifest.jsonl` catalogue. Each
41
+ row retains the schema-version-2 truth contract and includes byte counts and
42
+ SHA-256 digests for the workbooks it names.
43
 
44
  Commands:
45
 
46
  ```bash
47
  python -m build
48
+ twine check dist/workbook_change_benchmark-0.2.0*
49
  python -m venv /tmp/wcab-wheel-test
50
  /tmp/wcab-wheel-test/bin/python -m pip install \
51
+ dist/workbook_change_benchmark-0.2.0-py3-none-any.whl
52
  /tmp/wcab-wheel-test/bin/wcab validate --fixtures fixtures
53
  /tmp/wcab-wheel-test/bin/wcab manifest --fixtures fixtures --output /tmp/manifest.jsonl
54
  cmp fixtures/manifest.jsonl /tmp/manifest.jsonl
 
57
  Results:
58
 
59
  - The source distribution and universal wheel passed `twine check`.
60
+ - A fresh Python 3.12 wheel installation validated all 17 fixtures and emitted
61
  byte-identical JSONL output.
62
+ - The full eleven-test suite, lint, and format checks passed under the supported
63
  local Python versions (3.12 and 3.13).
64
 
65
  ## FormulaFence reference adapter
 
73
 
74
  Results:
75
 
76
+ - All 18 currently mappable diff/portfolio facts were observed.
77
+ - No mapped fact was missed across all 17 cases.
78
+ - The schema-version-2 structured Table scope case was observed as a
79
+ `table_definition_changed` diff, even though its summary formula text stays
80
+ unchanged.
81
  - Five targeted lint expectations were observed: copied-formula interruption
82
  (`FF082`), conditional-aggregate range shape (`FF093`), explicitly unlocked
83
  formula cell (`FF085`), incomplete manual calculation (`FF086`), and static
fixtures/finance/defined_name_redirect/truth.json CHANGED
@@ -12,7 +12,7 @@
12
  "id": "finance.defined_name_redirect",
13
  "must_reach": [],
14
  "review_expectation": "block",
15
- "schema_version": 1,
16
  "title": "A named rate redirects to a different assumption",
17
  "topology": "pair"
18
  }
 
12
  "id": "finance.defined_name_redirect",
13
  "must_reach": [],
14
  "review_expectation": "block",
15
+ "schema_version": 2,
16
  "title": "A named rate redirects to a different assumption",
17
  "topology": "pair"
18
  }
fixtures/finance/external_formula_reference/truth.json CHANGED
@@ -18,7 +18,7 @@
18
  "id": "finance.external_formula_reference",
19
  "must_reach": [],
20
  "review_expectation": "block",
21
- "schema_version": 1,
22
  "title": "An internal driver is replaced by an external workbook reference",
23
  "topology": "pair"
24
  }
 
18
  "id": "finance.external_formula_reference",
19
  "must_reach": [],
20
  "review_expectation": "block",
21
+ "schema_version": 2,
22
  "title": "An internal driver is replaced by an external workbook reference",
23
  "topology": "pair"
24
  }
fixtures/finance/formula_to_value/truth.json CHANGED
@@ -38,7 +38,7 @@
38
  }
39
  ],
40
  "review_expectation": "block",
41
- "schema_version": 1,
42
  "title": "Revenue formula is replaced with a hard-coded value",
43
  "topology": "pair"
44
  }
 
38
  }
39
  ],
40
  "review_expectation": "block",
41
+ "schema_version": 2,
42
  "title": "Revenue formula is replaced with a hard-coded value",
43
  "topology": "pair"
44
  }
fixtures/finance/input_value_change/truth.json CHANGED
@@ -42,7 +42,7 @@
42
  }
43
  ],
44
  "review_expectation": "review",
45
- "schema_version": 1,
46
  "title": "Approved input changes and propagates into outputs",
47
  "topology": "pair"
48
  }
 
42
  }
43
  ],
44
  "review_expectation": "review",
45
+ "schema_version": 2,
46
  "title": "Approved input changes and propagates into outputs",
47
  "topology": "pair"
48
  }
fixtures/finance/wrong_period_reference/truth.json CHANGED
@@ -34,7 +34,7 @@
34
  }
35
  ],
36
  "review_expectation": "block",
37
- "schema_version": 1,
38
  "title": "Revenue formula uses a prior-period units reference",
39
  "topology": "pair"
40
  }
 
34
  }
35
  ],
36
  "review_expectation": "block",
37
+ "schema_version": 2,
38
  "title": "Revenue formula uses a prior-period units reference",
39
  "topology": "pair"
40
  }
fixtures/governance/formula_cell_unlocked/truth.json CHANGED
@@ -13,7 +13,7 @@
13
  "id": "governance.formula_cell_unlocked",
14
  "must_reach": [],
15
  "review_expectation": "block",
16
- "schema_version": 1,
17
  "title": "A protected calculated cell is explicitly unlocked",
18
  "topology": "pair"
19
  }
 
13
  "id": "governance.formula_cell_unlocked",
14
  "must_reach": [],
15
  "review_expectation": "block",
16
+ "schema_version": 2,
17
  "title": "A protected calculated cell is explicitly unlocked",
18
  "topology": "pair"
19
  }
fixtures/governance/hidden_sheet_revealed/truth.json CHANGED
@@ -14,7 +14,7 @@
14
  "id": "governance.hidden_sheet_revealed",
15
  "must_reach": [],
16
  "review_expectation": "review",
17
- "schema_version": 1,
18
  "title": "A hidden review-control sheet is made visible",
19
  "topology": "pair"
20
  }
 
14
  "id": "governance.hidden_sheet_revealed",
15
  "must_reach": [],
16
  "review_expectation": "review",
17
+ "schema_version": 2,
18
  "title": "A hidden review-control sheet is made visible",
19
  "topology": "pair"
20
  }
fixtures/governance/manual_calculation_incomplete/truth.json CHANGED
@@ -11,7 +11,7 @@
11
  "id": "governance.manual_calculation_incomplete",
12
  "must_reach": [],
13
  "review_expectation": "block",
14
- "schema_version": 1,
15
  "title": "A formula workbook records incomplete manual calculation",
16
  "topology": "pair"
17
  }
 
11
  "id": "governance.manual_calculation_incomplete",
12
  "must_reach": [],
13
  "review_expectation": "block",
14
+ "schema_version": 2,
15
  "title": "A formula workbook records incomplete manual calculation",
16
  "topology": "pair"
17
  }
fixtures/governance/static_cycle_introduced/truth.json CHANGED
@@ -21,7 +21,7 @@
21
  "id": "governance.static_cycle_introduced",
22
  "must_reach": [],
23
  "review_expectation": "block",
24
- "schema_version": 1,
25
  "title": "Two direct formulas form a static cycle",
26
  "topology": "pair"
27
  }
 
21
  "id": "governance.static_cycle_introduced",
22
  "must_reach": [],
23
  "review_expectation": "block",
24
+ "schema_version": 2,
25
  "title": "Two direct formulas form a static cycle",
26
  "topology": "pair"
27
  }
fixtures/manifest.jsonl CHANGED
@@ -1,16 +1,17 @@
1
- {"baseline_files":[{"bytes":7042,"path":"finance/defined_name_redirect/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7042,"path":"finance/defined_name_redirect/candidate.xlsx","sha256":"2bb3cc9080f5c1eeda8ecf34abeae4ea56fd53fa5ad5949ded6162727875d226"}],"case_path":"finance/defined_name_redirect","coverage":["The assertion compares the defined-name destination; name resolution beyond this fixture is out of scope."],"facts":[{"kind":"defined_name_changed","name":"DiscountRate"}],"family":"finance","id":"finance.defined_name_redirect","must_reach":[],"review_expectation":"block","schema_version":1,"title":"A named rate redirects to a different assumption","topology":"pair"}
2
- {"baseline_files":[{"bytes":7042,"path":"finance/external_formula_reference/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7065,"path":"finance/external_formula_reference/candidate.xlsx","sha256":"410fd472583c68f3d1dbbe9b0a7034bfb5e6f7792fd269b29ae0081072d33230"}],"case_path":"finance/external_formula_reference","coverage":["The external workbook is intentionally absent and must not be opened by a benchmark tool."],"facts":[{"cell":"C8","kind":"formula_changed","sheet":"Summary"},{"cell":"C8","kind":"external_formula_added","sheet":"Summary"}],"family":"finance","id":"finance.external_formula_reference","must_reach":[],"review_expectation":"block","schema_version":1,"title":"An internal driver is replaced by an external workbook reference","topology":"pair"}
3
- {"baseline_files":[{"bytes":7042,"path":"finance/formula_to_value/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7047,"path":"finance/formula_to_value/candidate.xlsx","sha256":"0e61888bdce02d825f69cff256ae2a5d4951ee8d6c4f55b0b15cdceb1ee3097d"}],"case_path":"finance/formula_to_value","coverage":["Static dependency lower bound; numerical recalculation is out of scope."],"facts":[{"cell":"C8","kind":"formula_to_value","sheet":"Revenue"}],"family":"finance","id":"finance.formula_to_value","must_reach":[{"source":{"cell":"C8","sheet":"Revenue"},"targets":[{"cell":"C10","sheet":"Revenue"},{"cell":"C5","sheet":"Summary"},{"cell":"C6","sheet":"Summary"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":1,"title":"Revenue formula is replaced with a hard-coded value","topology":"pair"}
4
- {"baseline_files":[{"bytes":7042,"path":"finance/input_value_change/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7041,"path":"finance/input_value_change/candidate.xlsx","sha256":"99d8c9c80f1313cef1f0773d6cd901d4a1c4aa91f315809e70af69ee0a9ff9ed"}],"case_path":"finance/input_value_change","coverage":["An input change is not inherently an error; it remains material review evidence."],"facts":[{"cell":"C2","kind":"value_changed","sheet":"Assumptions"}],"family":"finance","id":"finance.input_value_change","must_reach":[{"source":{"cell":"C2","sheet":"Assumptions"},"targets":[{"cell":"C5","sheet":"Revenue"},{"cell":"C8","sheet":"Revenue"},{"cell":"C10","sheet":"Revenue"},{"cell":"C6","sheet":"Summary"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"review","schema_version":1,"title":"Approved input changes and propagates into outputs","topology":"pair"}
5
- {"baseline_files":[{"bytes":7042,"path":"finance/wrong_period_reference/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7040,"path":"finance/wrong_period_reference/candidate.xlsx","sha256":"56b500755ec0ab68129acb7b9a7ffaf774c626b308a3ecaed0ab131cb68e949e"}],"case_path":"finance/wrong_period_reference","coverage":["The benchmark asserts the reference drift, not the business correctness of every formula."],"facts":[{"cell":"C8","kind":"formula_changed","sheet":"Revenue"}],"family":"finance","id":"finance.wrong_period_reference","must_reach":[{"source":{"cell":"C8","sheet":"Revenue"},"targets":[{"cell":"C10","sheet":"Revenue"},{"cell":"C5","sheet":"Summary"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":1,"title":"Revenue formula uses a prior-period units reference","topology":"pair"}
6
- {"baseline_files":[{"bytes":5599,"path":"governance/formula_cell_unlocked/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5639,"path":"governance/formula_cell_unlocked/candidate.xlsx","sha256":"d1d4c078606e2940c7ad5ac04bb634f20e34296eba91cef33e38757a268a9d35"}],"case_path":"governance/formula_cell_unlocked","coverage":["This is a direct cell-protection assertion; style inheritance and allowed edit ranges are out of scope."],"facts":[{"cell":"D10","kind":"formula_cell_unlocked","sheet":"Controls"}],"family":"governance","id":"governance.formula_cell_unlocked","must_reach":[],"review_expectation":"block","schema_version":1,"title":"A protected calculated cell is explicitly unlocked","topology":"pair"}
7
- {"baseline_files":[{"bytes":5599,"path":"governance/hidden_sheet_revealed/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5594,"path":"governance/hidden_sheet_revealed/candidate.xlsx","sha256":"6f4d0cb90949de429d8d93d496d95c75e6adcb4d1abce1115d71bba5a3be3fa2"}],"case_path":"governance/hidden_sheet_revealed","coverage":["Visibility is an observable workbook control; cell content is not part of this assertion."],"facts":[{"baseline_state":"hidden","candidate_state":"visible","kind":"sheet_visibility_changed","sheet":"ReviewControls"}],"family":"governance","id":"governance.hidden_sheet_revealed","must_reach":[],"review_expectation":"review","schema_version":1,"title":"A hidden review-control sheet is made visible","topology":"pair"}
8
- {"baseline_files":[{"bytes":5599,"path":"governance/manual_calculation_incomplete/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5618,"path":"governance/manual_calculation_incomplete/candidate.xlsx","sha256":"1a136225c99e8d98c4e7465f7544459a6188f4889606920b498177b8783c85e9"}],"case_path":"governance/manual_calculation_incomplete","coverage":["Calculation metadata is evidence of save state, not proof that any cached result is wrong."],"facts":[{"kind":"manual_calculation_incomplete"}],"family":"governance","id":"governance.manual_calculation_incomplete","must_reach":[],"review_expectation":"block","schema_version":1,"title":"A formula workbook records incomplete manual calculation","topology":"pair"}
9
- {"baseline_files":[{"bytes":5599,"path":"governance/static_cycle_introduced/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5596,"path":"governance/static_cycle_introduced/candidate.xlsx","sha256":"086d420690d81e6fd79146bf1e721fd28f71bdf292bf927566ffbc2ce08d7b5d"}],"case_path":"governance/static_cycle_introduced","coverage":["The cycle is direct and static; iterative calculation settings and dynamic references are out of scope."],"facts":[{"cells":[{"cell":"D10","sheet":"Controls"},{"cell":"D11","sheet":"Controls"}],"kind":"static_cycle_introduced"}],"family":"governance","id":"governance.static_cycle_introduced","must_reach":[],"review_expectation":"block","schema_version":1,"title":"Two direct formulas form a static cycle","topology":"pair"}
10
- {"baseline_files":[{"bytes":5465,"path":"operations/conditional_formatting_removed/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5360,"path":"operations/conditional_formatting_removed/candidate.xlsx","sha256":"5fc314f650112546d6c372c8fe7be280ccb56bf717967c4fd135c80b2f659a87"}],"case_path":"operations/conditional_formatting_removed","coverage":["The benchmark observes the control removal but does not judge the intended visual design."],"facts":[{"baseline_count":1,"candidate_count":0,"kind":"conditional_formatting_count_changed","sheet":"Operations"}],"family":"operations","id":"operations.conditional_formatting_removed","must_reach":[],"review_expectation":"review","schema_version":1,"title":"A material exception highlight is removed","topology":"pair"}
11
- {"baseline_files":[{"bytes":5465,"path":"operations/copied_formula_interruption/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5460,"path":"operations/copied_formula_interruption/candidate.xlsx","sha256":"8894418de3a7915a7b9d3ab5c71395fe79a02d0c805b494874d02613104a2835"}],"case_path":"operations/copied_formula_interruption","coverage":["Immediate formula peers provide the copied-block context; no formula execution is required."],"facts":[{"cell":"F7","kind":"formula_to_value","sheet":"Operations"}],"family":"operations","id":"operations.copied_formula_interruption","must_reach":[],"review_expectation":"block","schema_version":1,"title":"One copied margin formula is replaced by a manual number","topology":"pair"}
12
- {"baseline_files":[{"bytes":5465,"path":"operations/data_validation_removed/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5329,"path":"operations/data_validation_removed/candidate.xlsx","sha256":"aea8e9f34825c521b82a6bca2990faa11f60db8fee4f87628e908bdb71965e77"}],"case_path":"operations/data_validation_removed","coverage":["The contract observes validation presence, not whether a future user enters an invalid value."],"facts":[{"baseline_count":1,"candidate_count":0,"kind":"data_validation_count_changed","sheet":"Operations"}],"family":"operations","id":"operations.data_validation_removed","must_reach":[],"review_expectation":"block","schema_version":1,"title":"Input validation is removed from an operational tracker","topology":"pair"}
13
- {"baseline_files":[{"bytes":5465,"path":"operations/sumifs_range_shape/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5469,"path":"operations/sumifs_range_shape/candidate.xlsx","sha256":"618613d92e354f3e7ccc7ef07d4c33f0f1b6ffeccbbd9e3f68e0b54c6dffb7c2"}],"case_path":"operations/sumifs_range_shape","coverage":["The range-shape defect is deliberately static and does not require evaluating SUMIFS."],"facts":[{"cell":"H6","kind":"formula_changed","sheet":"Operations"}],"family":"operations","id":"operations.sumifs_range_shape","must_reach":[],"review_expectation":"block","schema_version":1,"title":"A conditional aggregate has mismatched static ranges","topology":"pair"}
14
- {"baseline_files":[{"bytes":4931,"path":"portfolio/external_driver_value_change/baseline/drivers.xlsx","sha256":"c2e6b4e9b2d70578ffd55df2de557107c55cf699fd1f94b54516c2f2854d3c99"},{"bytes":4996,"path":"portfolio/external_driver_value_change/baseline/model.xlsx","sha256":"7f253818e74ca955160ac3bbcfa4c7c25537f677fe157f9e2e30457c159ff21a"}],"candidate_files":[{"bytes":4931,"path":"portfolio/external_driver_value_change/candidate/drivers.xlsx","sha256":"0de0551f28366457c428b24b073074821576ea226841d5dd6f40c1d67c97c552"},{"bytes":4996,"path":"portfolio/external_driver_value_change/candidate/model.xlsx","sha256":"7f253818e74ca955160ac3bbcfa4c7c25537f677fe157f9e2e30457c159ff21a"}],"case_path":"portfolio/external_driver_value_change","coverage":["The target workbook is present only as a local sibling; no network or filesystem path resolution is permitted."],"facts":[{"cell":"B2","kind":"portfolio_value_changed","sheet":"Inputs","workbook":"drivers.xlsx"},{"cell":"B2","kind":"portfolio_external_reference","sheet":"Summary","target_workbook":"drivers.xlsx","workbook":"model.xlsx"}],"family":"portfolio","id":"portfolio.external_driver_value_change","must_reach":[],"review_expectation":"review","schema_version":1,"title":"An upstream workbook driver changes while a downstream workbook consumes it","topology":"portfolio"}
15
- {"baseline_files":[{"bytes":5444,"path":"structural/formula_rewrite_after_column_insert/baseline.xlsx","sha256":"fdb943445413906a89a7d2f130479c76d4832d9d5fe5e29f48e14a20e179ef77"}],"candidate_files":[{"bytes":5470,"path":"structural/formula_rewrite_after_column_insert/candidate.xlsx","sha256":"2557635a4d87da56f488709390d1c6fdef754228549d3d9bf19a74ef8882df72"}],"case_path":"structural/formula_rewrite_after_column_insert","coverage":["The fixture declares equivalent logical input positions but does not prove general Excel semantic equivalence."],"facts":[{"baseline":{"cell":"D5","formula":"=B5*C5","sheet":"Model"},"candidate":{"cell":"E5","formula":"=B5*D5","sheet":"Model"},"kind":"structural_formula_rewrite"}],"family":"structural","id":"structural.formula_rewrite_after_column_insert","must_reach":[],"review_expectation":"review","schema_version":1,"title":"A column insertion rewrites formulas while retaining the declared inputs","topology":"pair"}
16
- {"baseline_files":[{"bytes":6362,"path":"structural/three_d_scope_expansion/baseline.xlsx","sha256":"996184604d06c937442b23d6d1ac734b9b0bf70020beb1c4c0bfe8d182cf4f3d"}],"candidate_files":[{"bytes":6854,"path":"structural/three_d_scope_expansion/candidate.xlsx","sha256":"c6314f68590654b117141422dc90a5570d34030ac47be579c2f716bc4d150fde"}],"case_path":"structural/three_d_scope_expansion","coverage":["The formula text is intentionally unchanged; the observable risk is tab-order scope."],"facts":[{"after_sheet":"Jan","before_sheet":"Feb","formula_cell":"B5","formula_sheet":"Summary","inserted_sheet":"FebAdjustment","kind":"three_d_scope_changed"}],"family":"structural","id":"structural.three_d_scope_expansion","must_reach":[],"review_expectation":"block","schema_version":1,"title":"A new period silently enters an unchanged 3-D formula span","topology":"pair"}
 
 
1
+ {"baseline_files":[{"bytes":7042,"path":"finance/defined_name_redirect/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7042,"path":"finance/defined_name_redirect/candidate.xlsx","sha256":"2bb3cc9080f5c1eeda8ecf34abeae4ea56fd53fa5ad5949ded6162727875d226"}],"case_path":"finance/defined_name_redirect","coverage":["The assertion compares the defined-name destination; name resolution beyond this fixture is out of scope."],"facts":[{"kind":"defined_name_changed","name":"DiscountRate"}],"family":"finance","id":"finance.defined_name_redirect","must_reach":[],"review_expectation":"block","schema_version":2,"title":"A named rate redirects to a different assumption","topology":"pair"}
2
+ {"baseline_files":[{"bytes":7042,"path":"finance/external_formula_reference/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7065,"path":"finance/external_formula_reference/candidate.xlsx","sha256":"410fd472583c68f3d1dbbe9b0a7034bfb5e6f7792fd269b29ae0081072d33230"}],"case_path":"finance/external_formula_reference","coverage":["The external workbook is intentionally absent and must not be opened by a benchmark tool."],"facts":[{"cell":"C8","kind":"formula_changed","sheet":"Summary"},{"cell":"C8","kind":"external_formula_added","sheet":"Summary"}],"family":"finance","id":"finance.external_formula_reference","must_reach":[],"review_expectation":"block","schema_version":2,"title":"An internal driver is replaced by an external workbook reference","topology":"pair"}
3
+ {"baseline_files":[{"bytes":7042,"path":"finance/formula_to_value/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7047,"path":"finance/formula_to_value/candidate.xlsx","sha256":"0e61888bdce02d825f69cff256ae2a5d4951ee8d6c4f55b0b15cdceb1ee3097d"}],"case_path":"finance/formula_to_value","coverage":["Static dependency lower bound; numerical recalculation is out of scope."],"facts":[{"cell":"C8","kind":"formula_to_value","sheet":"Revenue"}],"family":"finance","id":"finance.formula_to_value","must_reach":[{"source":{"cell":"C8","sheet":"Revenue"},"targets":[{"cell":"C10","sheet":"Revenue"},{"cell":"C5","sheet":"Summary"},{"cell":"C6","sheet":"Summary"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":2,"title":"Revenue formula is replaced with a hard-coded value","topology":"pair"}
4
+ {"baseline_files":[{"bytes":7042,"path":"finance/input_value_change/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7041,"path":"finance/input_value_change/candidate.xlsx","sha256":"99d8c9c80f1313cef1f0773d6cd901d4a1c4aa91f315809e70af69ee0a9ff9ed"}],"case_path":"finance/input_value_change","coverage":["An input change is not inherently an error; it remains material review evidence."],"facts":[{"cell":"C2","kind":"value_changed","sheet":"Assumptions"}],"family":"finance","id":"finance.input_value_change","must_reach":[{"source":{"cell":"C2","sheet":"Assumptions"},"targets":[{"cell":"C5","sheet":"Revenue"},{"cell":"C8","sheet":"Revenue"},{"cell":"C10","sheet":"Revenue"},{"cell":"C6","sheet":"Summary"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"review","schema_version":2,"title":"Approved input changes and propagates into outputs","topology":"pair"}
5
+ {"baseline_files":[{"bytes":7042,"path":"finance/wrong_period_reference/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7040,"path":"finance/wrong_period_reference/candidate.xlsx","sha256":"56b500755ec0ab68129acb7b9a7ffaf774c626b308a3ecaed0ab131cb68e949e"}],"case_path":"finance/wrong_period_reference","coverage":["The benchmark asserts the reference drift, not the business correctness of every formula."],"facts":[{"cell":"C8","kind":"formula_changed","sheet":"Revenue"}],"family":"finance","id":"finance.wrong_period_reference","must_reach":[{"source":{"cell":"C8","sheet":"Revenue"},"targets":[{"cell":"C10","sheet":"Revenue"},{"cell":"C5","sheet":"Summary"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":2,"title":"Revenue formula uses a prior-period units reference","topology":"pair"}
6
+ {"baseline_files":[{"bytes":5599,"path":"governance/formula_cell_unlocked/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5639,"path":"governance/formula_cell_unlocked/candidate.xlsx","sha256":"d1d4c078606e2940c7ad5ac04bb634f20e34296eba91cef33e38757a268a9d35"}],"case_path":"governance/formula_cell_unlocked","coverage":["This is a direct cell-protection assertion; style inheritance and allowed edit ranges are out of scope."],"facts":[{"cell":"D10","kind":"formula_cell_unlocked","sheet":"Controls"}],"family":"governance","id":"governance.formula_cell_unlocked","must_reach":[],"review_expectation":"block","schema_version":2,"title":"A protected calculated cell is explicitly unlocked","topology":"pair"}
7
+ {"baseline_files":[{"bytes":5599,"path":"governance/hidden_sheet_revealed/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5594,"path":"governance/hidden_sheet_revealed/candidate.xlsx","sha256":"6f4d0cb90949de429d8d93d496d95c75e6adcb4d1abce1115d71bba5a3be3fa2"}],"case_path":"governance/hidden_sheet_revealed","coverage":["Visibility is an observable workbook control; cell content is not part of this assertion."],"facts":[{"baseline_state":"hidden","candidate_state":"visible","kind":"sheet_visibility_changed","sheet":"ReviewControls"}],"family":"governance","id":"governance.hidden_sheet_revealed","must_reach":[],"review_expectation":"review","schema_version":2,"title":"A hidden review-control sheet is made visible","topology":"pair"}
8
+ {"baseline_files":[{"bytes":5599,"path":"governance/manual_calculation_incomplete/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5618,"path":"governance/manual_calculation_incomplete/candidate.xlsx","sha256":"1a136225c99e8d98c4e7465f7544459a6188f4889606920b498177b8783c85e9"}],"case_path":"governance/manual_calculation_incomplete","coverage":["Calculation metadata is evidence of save state, not proof that any cached result is wrong."],"facts":[{"kind":"manual_calculation_incomplete"}],"family":"governance","id":"governance.manual_calculation_incomplete","must_reach":[],"review_expectation":"block","schema_version":2,"title":"A formula workbook records incomplete manual calculation","topology":"pair"}
9
+ {"baseline_files":[{"bytes":5599,"path":"governance/static_cycle_introduced/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5596,"path":"governance/static_cycle_introduced/candidate.xlsx","sha256":"086d420690d81e6fd79146bf1e721fd28f71bdf292bf927566ffbc2ce08d7b5d"}],"case_path":"governance/static_cycle_introduced","coverage":["The cycle is direct and static; iterative calculation settings and dynamic references are out of scope."],"facts":[{"cells":[{"cell":"D10","sheet":"Controls"},{"cell":"D11","sheet":"Controls"}],"kind":"static_cycle_introduced"}],"family":"governance","id":"governance.static_cycle_introduced","must_reach":[],"review_expectation":"block","schema_version":2,"title":"Two direct formulas form a static cycle","topology":"pair"}
10
+ {"baseline_files":[{"bytes":5465,"path":"operations/conditional_formatting_removed/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5360,"path":"operations/conditional_formatting_removed/candidate.xlsx","sha256":"5fc314f650112546d6c372c8fe7be280ccb56bf717967c4fd135c80b2f659a87"}],"case_path":"operations/conditional_formatting_removed","coverage":["The benchmark observes the control removal but does not judge the intended visual design."],"facts":[{"baseline_count":1,"candidate_count":0,"kind":"conditional_formatting_count_changed","sheet":"Operations"}],"family":"operations","id":"operations.conditional_formatting_removed","must_reach":[],"review_expectation":"review","schema_version":2,"title":"A material exception highlight is removed","topology":"pair"}
11
+ {"baseline_files":[{"bytes":5465,"path":"operations/copied_formula_interruption/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5460,"path":"operations/copied_formula_interruption/candidate.xlsx","sha256":"8894418de3a7915a7b9d3ab5c71395fe79a02d0c805b494874d02613104a2835"}],"case_path":"operations/copied_formula_interruption","coverage":["Immediate formula peers provide the copied-block context; no formula execution is required."],"facts":[{"cell":"F7","kind":"formula_to_value","sheet":"Operations"}],"family":"operations","id":"operations.copied_formula_interruption","must_reach":[],"review_expectation":"block","schema_version":2,"title":"One copied margin formula is replaced by a manual number","topology":"pair"}
12
+ {"baseline_files":[{"bytes":5465,"path":"operations/data_validation_removed/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5329,"path":"operations/data_validation_removed/candidate.xlsx","sha256":"aea8e9f34825c521b82a6bca2990faa11f60db8fee4f87628e908bdb71965e77"}],"case_path":"operations/data_validation_removed","coverage":["The contract observes validation presence, not whether a future user enters an invalid value."],"facts":[{"baseline_count":1,"candidate_count":0,"kind":"data_validation_count_changed","sheet":"Operations"}],"family":"operations","id":"operations.data_validation_removed","must_reach":[],"review_expectation":"block","schema_version":2,"title":"Input validation is removed from an operational tracker","topology":"pair"}
13
+ {"baseline_files":[{"bytes":5465,"path":"operations/sumifs_range_shape/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5469,"path":"operations/sumifs_range_shape/candidate.xlsx","sha256":"618613d92e354f3e7ccc7ef07d4c33f0f1b6ffeccbbd9e3f68e0b54c6dffb7c2"}],"case_path":"operations/sumifs_range_shape","coverage":["The range-shape defect is deliberately static and does not require evaluating SUMIFS."],"facts":[{"cell":"H6","kind":"formula_changed","sheet":"Operations"}],"family":"operations","id":"operations.sumifs_range_shape","must_reach":[],"review_expectation":"block","schema_version":2,"title":"A conditional aggregate has mismatched static ranges","topology":"pair"}
14
+ {"baseline_files":[{"bytes":4931,"path":"portfolio/external_driver_value_change/baseline/drivers.xlsx","sha256":"c2e6b4e9b2d70578ffd55df2de557107c55cf699fd1f94b54516c2f2854d3c99"},{"bytes":4996,"path":"portfolio/external_driver_value_change/baseline/model.xlsx","sha256":"7f253818e74ca955160ac3bbcfa4c7c25537f677fe157f9e2e30457c159ff21a"}],"candidate_files":[{"bytes":4931,"path":"portfolio/external_driver_value_change/candidate/drivers.xlsx","sha256":"0de0551f28366457c428b24b073074821576ea226841d5dd6f40c1d67c97c552"},{"bytes":4996,"path":"portfolio/external_driver_value_change/candidate/model.xlsx","sha256":"7f253818e74ca955160ac3bbcfa4c7c25537f677fe157f9e2e30457c159ff21a"}],"case_path":"portfolio/external_driver_value_change","coverage":["The target workbook is present only as a local sibling; no network or filesystem path resolution is permitted."],"facts":[{"cell":"B2","kind":"portfolio_value_changed","sheet":"Inputs","workbook":"drivers.xlsx"},{"cell":"B2","kind":"portfolio_external_reference","sheet":"Summary","target_workbook":"drivers.xlsx","workbook":"model.xlsx"}],"family":"portfolio","id":"portfolio.external_driver_value_change","must_reach":[],"review_expectation":"review","schema_version":2,"title":"An upstream workbook driver changes while a downstream workbook consumes it","topology":"portfolio"}
15
+ {"baseline_files":[{"bytes":5444,"path":"structural/formula_rewrite_after_column_insert/baseline.xlsx","sha256":"fdb943445413906a89a7d2f130479c76d4832d9d5fe5e29f48e14a20e179ef77"}],"candidate_files":[{"bytes":5470,"path":"structural/formula_rewrite_after_column_insert/candidate.xlsx","sha256":"2557635a4d87da56f488709390d1c6fdef754228549d3d9bf19a74ef8882df72"}],"case_path":"structural/formula_rewrite_after_column_insert","coverage":["The fixture declares equivalent logical input positions but does not prove general Excel semantic equivalence."],"facts":[{"baseline":{"cell":"D5","formula":"=B5*C5","sheet":"Model"},"candidate":{"cell":"E5","formula":"=B5*D5","sheet":"Model"},"kind":"structural_formula_rewrite"}],"family":"structural","id":"structural.formula_rewrite_after_column_insert","must_reach":[],"review_expectation":"review","schema_version":2,"title":"A column insertion rewrites formulas while retaining the declared inputs","topology":"pair"}
16
+ {"baseline_files":[{"bytes":6271,"path":"structural/structured_table_scope_expansion/baseline.xlsx","sha256":"1b6f467f5d81ebd9a2ec9d2c8592333b57b75bbc76d7128291f23833aeb40155"}],"candidate_files":[{"bytes":6298,"path":"structural/structured_table_scope_expansion/candidate.xlsx","sha256":"3cc867e141bc3174fd4dbf80747c7869ded02c8d175596b2690ddd5ec3c9d01b"}],"case_path":"structural/structured_table_scope_expansion","coverage":["The summary formula text intentionally remains unchanged; the observable risk is the stored Excel Table range.","The contract does not calculate the structured reference, apply filters, or infer table-total semantics."],"facts":[{"baseline_ref":"A1:D4","candidate_ref":"A1:D5","formula_cell":"B2","formula_sheet":"Summary","kind":"structured_table_scope_changed","table":"SalesLedger","table_sheet":"Ledger"}],"family":"structural","id":"structural.structured_table_scope_expansion","must_reach":[],"review_expectation":"block","schema_version":2,"title":"An Excel Table grows while a dependent structured reference stays unchanged","topology":"pair"}
17
+ {"baseline_files":[{"bytes":6362,"path":"structural/three_d_scope_expansion/baseline.xlsx","sha256":"996184604d06c937442b23d6d1ac734b9b0bf70020beb1c4c0bfe8d182cf4f3d"}],"candidate_files":[{"bytes":6854,"path":"structural/three_d_scope_expansion/candidate.xlsx","sha256":"c6314f68590654b117141422dc90a5570d34030ac47be579c2f716bc4d150fde"}],"case_path":"structural/three_d_scope_expansion","coverage":["The formula text is intentionally unchanged; the observable risk is tab-order scope."],"facts":[{"after_sheet":"Jan","before_sheet":"Feb","formula_cell":"B5","formula_sheet":"Summary","inserted_sheet":"FebAdjustment","kind":"three_d_scope_changed"}],"family":"structural","id":"structural.three_d_scope_expansion","must_reach":[],"review_expectation":"block","schema_version":2,"title":"A new period silently enters an unchanged 3-D formula span","topology":"pair"}
fixtures/operations/conditional_formatting_removed/truth.json CHANGED
@@ -14,7 +14,7 @@
14
  "id": "operations.conditional_formatting_removed",
15
  "must_reach": [],
16
  "review_expectation": "review",
17
- "schema_version": 1,
18
  "title": "A material exception highlight is removed",
19
  "topology": "pair"
20
  }
 
14
  "id": "operations.conditional_formatting_removed",
15
  "must_reach": [],
16
  "review_expectation": "review",
17
+ "schema_version": 2,
18
  "title": "A material exception highlight is removed",
19
  "topology": "pair"
20
  }
fixtures/operations/copied_formula_interruption/truth.json CHANGED
@@ -13,7 +13,7 @@
13
  "id": "operations.copied_formula_interruption",
14
  "must_reach": [],
15
  "review_expectation": "block",
16
- "schema_version": 1,
17
  "title": "One copied margin formula is replaced by a manual number",
18
  "topology": "pair"
19
  }
 
13
  "id": "operations.copied_formula_interruption",
14
  "must_reach": [],
15
  "review_expectation": "block",
16
+ "schema_version": 2,
17
  "title": "One copied margin formula is replaced by a manual number",
18
  "topology": "pair"
19
  }
fixtures/operations/data_validation_removed/truth.json CHANGED
@@ -14,7 +14,7 @@
14
  "id": "operations.data_validation_removed",
15
  "must_reach": [],
16
  "review_expectation": "block",
17
- "schema_version": 1,
18
  "title": "Input validation is removed from an operational tracker",
19
  "topology": "pair"
20
  }
 
14
  "id": "operations.data_validation_removed",
15
  "must_reach": [],
16
  "review_expectation": "block",
17
+ "schema_version": 2,
18
  "title": "Input validation is removed from an operational tracker",
19
  "topology": "pair"
20
  }
fixtures/operations/sumifs_range_shape/truth.json CHANGED
@@ -13,7 +13,7 @@
13
  "id": "operations.sumifs_range_shape",
14
  "must_reach": [],
15
  "review_expectation": "block",
16
- "schema_version": 1,
17
  "title": "A conditional aggregate has mismatched static ranges",
18
  "topology": "pair"
19
  }
 
13
  "id": "operations.sumifs_range_shape",
14
  "must_reach": [],
15
  "review_expectation": "block",
16
+ "schema_version": 2,
17
  "title": "A conditional aggregate has mismatched static ranges",
18
  "topology": "pair"
19
  }
fixtures/portfolio/external_driver_value_change/truth.json CHANGED
@@ -21,7 +21,7 @@
21
  "id": "portfolio.external_driver_value_change",
22
  "must_reach": [],
23
  "review_expectation": "review",
24
- "schema_version": 1,
25
  "title": "An upstream workbook driver changes while a downstream workbook consumes it",
26
  "topology": "portfolio"
27
  }
 
21
  "id": "portfolio.external_driver_value_change",
22
  "must_reach": [],
23
  "review_expectation": "review",
24
+ "schema_version": 2,
25
  "title": "An upstream workbook driver changes while a downstream workbook consumes it",
26
  "topology": "portfolio"
27
  }
fixtures/structural/formula_rewrite_after_column_insert/truth.json CHANGED
@@ -21,7 +21,7 @@
21
  "id": "structural.formula_rewrite_after_column_insert",
22
  "must_reach": [],
23
  "review_expectation": "review",
24
- "schema_version": 1,
25
  "title": "A column insertion rewrites formulas while retaining the declared inputs",
26
  "topology": "pair"
27
  }
 
21
  "id": "structural.formula_rewrite_after_column_insert",
22
  "must_reach": [],
23
  "review_expectation": "review",
24
+ "schema_version": 2,
25
  "title": "A column insertion rewrites formulas while retaining the declared inputs",
26
  "topology": "pair"
27
  }
fixtures/structural/structured_table_scope_expansion/baseline.xlsx ADDED
Binary file (6.27 kB). View file
 
fixtures/structural/structured_table_scope_expansion/candidate.xlsx ADDED
Binary file (6.3 kB). View file
 
fixtures/structural/structured_table_scope_expansion/truth.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "coverage": [
3
+ "The summary formula text intentionally remains unchanged; the observable risk is the stored Excel Table range.",
4
+ "The contract does not calculate the structured reference, apply filters, or infer table-total semantics."
5
+ ],
6
+ "facts": [
7
+ {
8
+ "baseline_ref": "A1:D4",
9
+ "candidate_ref": "A1:D5",
10
+ "formula_cell": "B2",
11
+ "formula_sheet": "Summary",
12
+ "kind": "structured_table_scope_changed",
13
+ "table": "SalesLedger",
14
+ "table_sheet": "Ledger"
15
+ }
16
+ ],
17
+ "family": "structural",
18
+ "id": "structural.structured_table_scope_expansion",
19
+ "must_reach": [],
20
+ "review_expectation": "block",
21
+ "schema_version": 2,
22
+ "title": "An Excel Table grows while a dependent structured reference stays unchanged",
23
+ "topology": "pair"
24
+ }
fixtures/structural/three_d_scope_expansion/truth.json CHANGED
@@ -16,7 +16,7 @@
16
  "id": "structural.three_d_scope_expansion",
17
  "must_reach": [],
18
  "review_expectation": "block",
19
- "schema_version": 1,
20
  "title": "A new period silently enters an unchanged 3-D formula span",
21
  "topology": "pair"
22
  }
 
16
  "id": "structural.three_d_scope_expansion",
17
  "must_reach": [],
18
  "review_expectation": "block",
19
+ "schema_version": 2,
20
  "title": "A new period silently enters an unchanged 3-D formula span",
21
  "topology": "pair"
22
  }
manifest.jsonl CHANGED
@@ -1,16 +1,17 @@
1
- {"baseline_files":[{"bytes":7042,"path":"finance/defined_name_redirect/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7042,"path":"finance/defined_name_redirect/candidate.xlsx","sha256":"2bb3cc9080f5c1eeda8ecf34abeae4ea56fd53fa5ad5949ded6162727875d226"}],"case_path":"finance/defined_name_redirect","coverage":["The assertion compares the defined-name destination; name resolution beyond this fixture is out of scope."],"facts":[{"kind":"defined_name_changed","name":"DiscountRate"}],"family":"finance","id":"finance.defined_name_redirect","must_reach":[],"review_expectation":"block","schema_version":1,"title":"A named rate redirects to a different assumption","topology":"pair"}
2
- {"baseline_files":[{"bytes":7042,"path":"finance/external_formula_reference/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7065,"path":"finance/external_formula_reference/candidate.xlsx","sha256":"410fd472583c68f3d1dbbe9b0a7034bfb5e6f7792fd269b29ae0081072d33230"}],"case_path":"finance/external_formula_reference","coverage":["The external workbook is intentionally absent and must not be opened by a benchmark tool."],"facts":[{"cell":"C8","kind":"formula_changed","sheet":"Summary"},{"cell":"C8","kind":"external_formula_added","sheet":"Summary"}],"family":"finance","id":"finance.external_formula_reference","must_reach":[],"review_expectation":"block","schema_version":1,"title":"An internal driver is replaced by an external workbook reference","topology":"pair"}
3
- {"baseline_files":[{"bytes":7042,"path":"finance/formula_to_value/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7047,"path":"finance/formula_to_value/candidate.xlsx","sha256":"0e61888bdce02d825f69cff256ae2a5d4951ee8d6c4f55b0b15cdceb1ee3097d"}],"case_path":"finance/formula_to_value","coverage":["Static dependency lower bound; numerical recalculation is out of scope."],"facts":[{"cell":"C8","kind":"formula_to_value","sheet":"Revenue"}],"family":"finance","id":"finance.formula_to_value","must_reach":[{"source":{"cell":"C8","sheet":"Revenue"},"targets":[{"cell":"C10","sheet":"Revenue"},{"cell":"C5","sheet":"Summary"},{"cell":"C6","sheet":"Summary"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":1,"title":"Revenue formula is replaced with a hard-coded value","topology":"pair"}
4
- {"baseline_files":[{"bytes":7042,"path":"finance/input_value_change/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7041,"path":"finance/input_value_change/candidate.xlsx","sha256":"99d8c9c80f1313cef1f0773d6cd901d4a1c4aa91f315809e70af69ee0a9ff9ed"}],"case_path":"finance/input_value_change","coverage":["An input change is not inherently an error; it remains material review evidence."],"facts":[{"cell":"C2","kind":"value_changed","sheet":"Assumptions"}],"family":"finance","id":"finance.input_value_change","must_reach":[{"source":{"cell":"C2","sheet":"Assumptions"},"targets":[{"cell":"C5","sheet":"Revenue"},{"cell":"C8","sheet":"Revenue"},{"cell":"C10","sheet":"Revenue"},{"cell":"C6","sheet":"Summary"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"review","schema_version":1,"title":"Approved input changes and propagates into outputs","topology":"pair"}
5
- {"baseline_files":[{"bytes":7042,"path":"finance/wrong_period_reference/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7040,"path":"finance/wrong_period_reference/candidate.xlsx","sha256":"56b500755ec0ab68129acb7b9a7ffaf774c626b308a3ecaed0ab131cb68e949e"}],"case_path":"finance/wrong_period_reference","coverage":["The benchmark asserts the reference drift, not the business correctness of every formula."],"facts":[{"cell":"C8","kind":"formula_changed","sheet":"Revenue"}],"family":"finance","id":"finance.wrong_period_reference","must_reach":[{"source":{"cell":"C8","sheet":"Revenue"},"targets":[{"cell":"C10","sheet":"Revenue"},{"cell":"C5","sheet":"Summary"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":1,"title":"Revenue formula uses a prior-period units reference","topology":"pair"}
6
- {"baseline_files":[{"bytes":5599,"path":"governance/formula_cell_unlocked/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5639,"path":"governance/formula_cell_unlocked/candidate.xlsx","sha256":"d1d4c078606e2940c7ad5ac04bb634f20e34296eba91cef33e38757a268a9d35"}],"case_path":"governance/formula_cell_unlocked","coverage":["This is a direct cell-protection assertion; style inheritance and allowed edit ranges are out of scope."],"facts":[{"cell":"D10","kind":"formula_cell_unlocked","sheet":"Controls"}],"family":"governance","id":"governance.formula_cell_unlocked","must_reach":[],"review_expectation":"block","schema_version":1,"title":"A protected calculated cell is explicitly unlocked","topology":"pair"}
7
- {"baseline_files":[{"bytes":5599,"path":"governance/hidden_sheet_revealed/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5594,"path":"governance/hidden_sheet_revealed/candidate.xlsx","sha256":"6f4d0cb90949de429d8d93d496d95c75e6adcb4d1abce1115d71bba5a3be3fa2"}],"case_path":"governance/hidden_sheet_revealed","coverage":["Visibility is an observable workbook control; cell content is not part of this assertion."],"facts":[{"baseline_state":"hidden","candidate_state":"visible","kind":"sheet_visibility_changed","sheet":"ReviewControls"}],"family":"governance","id":"governance.hidden_sheet_revealed","must_reach":[],"review_expectation":"review","schema_version":1,"title":"A hidden review-control sheet is made visible","topology":"pair"}
8
- {"baseline_files":[{"bytes":5599,"path":"governance/manual_calculation_incomplete/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5618,"path":"governance/manual_calculation_incomplete/candidate.xlsx","sha256":"1a136225c99e8d98c4e7465f7544459a6188f4889606920b498177b8783c85e9"}],"case_path":"governance/manual_calculation_incomplete","coverage":["Calculation metadata is evidence of save state, not proof that any cached result is wrong."],"facts":[{"kind":"manual_calculation_incomplete"}],"family":"governance","id":"governance.manual_calculation_incomplete","must_reach":[],"review_expectation":"block","schema_version":1,"title":"A formula workbook records incomplete manual calculation","topology":"pair"}
9
- {"baseline_files":[{"bytes":5599,"path":"governance/static_cycle_introduced/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5596,"path":"governance/static_cycle_introduced/candidate.xlsx","sha256":"086d420690d81e6fd79146bf1e721fd28f71bdf292bf927566ffbc2ce08d7b5d"}],"case_path":"governance/static_cycle_introduced","coverage":["The cycle is direct and static; iterative calculation settings and dynamic references are out of scope."],"facts":[{"cells":[{"cell":"D10","sheet":"Controls"},{"cell":"D11","sheet":"Controls"}],"kind":"static_cycle_introduced"}],"family":"governance","id":"governance.static_cycle_introduced","must_reach":[],"review_expectation":"block","schema_version":1,"title":"Two direct formulas form a static cycle","topology":"pair"}
10
- {"baseline_files":[{"bytes":5465,"path":"operations/conditional_formatting_removed/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5360,"path":"operations/conditional_formatting_removed/candidate.xlsx","sha256":"5fc314f650112546d6c372c8fe7be280ccb56bf717967c4fd135c80b2f659a87"}],"case_path":"operations/conditional_formatting_removed","coverage":["The benchmark observes the control removal but does not judge the intended visual design."],"facts":[{"baseline_count":1,"candidate_count":0,"kind":"conditional_formatting_count_changed","sheet":"Operations"}],"family":"operations","id":"operations.conditional_formatting_removed","must_reach":[],"review_expectation":"review","schema_version":1,"title":"A material exception highlight is removed","topology":"pair"}
11
- {"baseline_files":[{"bytes":5465,"path":"operations/copied_formula_interruption/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5460,"path":"operations/copied_formula_interruption/candidate.xlsx","sha256":"8894418de3a7915a7b9d3ab5c71395fe79a02d0c805b494874d02613104a2835"}],"case_path":"operations/copied_formula_interruption","coverage":["Immediate formula peers provide the copied-block context; no formula execution is required."],"facts":[{"cell":"F7","kind":"formula_to_value","sheet":"Operations"}],"family":"operations","id":"operations.copied_formula_interruption","must_reach":[],"review_expectation":"block","schema_version":1,"title":"One copied margin formula is replaced by a manual number","topology":"pair"}
12
- {"baseline_files":[{"bytes":5465,"path":"operations/data_validation_removed/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5329,"path":"operations/data_validation_removed/candidate.xlsx","sha256":"aea8e9f34825c521b82a6bca2990faa11f60db8fee4f87628e908bdb71965e77"}],"case_path":"operations/data_validation_removed","coverage":["The contract observes validation presence, not whether a future user enters an invalid value."],"facts":[{"baseline_count":1,"candidate_count":0,"kind":"data_validation_count_changed","sheet":"Operations"}],"family":"operations","id":"operations.data_validation_removed","must_reach":[],"review_expectation":"block","schema_version":1,"title":"Input validation is removed from an operational tracker","topology":"pair"}
13
- {"baseline_files":[{"bytes":5465,"path":"operations/sumifs_range_shape/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5469,"path":"operations/sumifs_range_shape/candidate.xlsx","sha256":"618613d92e354f3e7ccc7ef07d4c33f0f1b6ffeccbbd9e3f68e0b54c6dffb7c2"}],"case_path":"operations/sumifs_range_shape","coverage":["The range-shape defect is deliberately static and does not require evaluating SUMIFS."],"facts":[{"cell":"H6","kind":"formula_changed","sheet":"Operations"}],"family":"operations","id":"operations.sumifs_range_shape","must_reach":[],"review_expectation":"block","schema_version":1,"title":"A conditional aggregate has mismatched static ranges","topology":"pair"}
14
- {"baseline_files":[{"bytes":4931,"path":"portfolio/external_driver_value_change/baseline/drivers.xlsx","sha256":"c2e6b4e9b2d70578ffd55df2de557107c55cf699fd1f94b54516c2f2854d3c99"},{"bytes":4996,"path":"portfolio/external_driver_value_change/baseline/model.xlsx","sha256":"7f253818e74ca955160ac3bbcfa4c7c25537f677fe157f9e2e30457c159ff21a"}],"candidate_files":[{"bytes":4931,"path":"portfolio/external_driver_value_change/candidate/drivers.xlsx","sha256":"0de0551f28366457c428b24b073074821576ea226841d5dd6f40c1d67c97c552"},{"bytes":4996,"path":"portfolio/external_driver_value_change/candidate/model.xlsx","sha256":"7f253818e74ca955160ac3bbcfa4c7c25537f677fe157f9e2e30457c159ff21a"}],"case_path":"portfolio/external_driver_value_change","coverage":["The target workbook is present only as a local sibling; no network or filesystem path resolution is permitted."],"facts":[{"cell":"B2","kind":"portfolio_value_changed","sheet":"Inputs","workbook":"drivers.xlsx"},{"cell":"B2","kind":"portfolio_external_reference","sheet":"Summary","target_workbook":"drivers.xlsx","workbook":"model.xlsx"}],"family":"portfolio","id":"portfolio.external_driver_value_change","must_reach":[],"review_expectation":"review","schema_version":1,"title":"An upstream workbook driver changes while a downstream workbook consumes it","topology":"portfolio"}
15
- {"baseline_files":[{"bytes":5444,"path":"structural/formula_rewrite_after_column_insert/baseline.xlsx","sha256":"fdb943445413906a89a7d2f130479c76d4832d9d5fe5e29f48e14a20e179ef77"}],"candidate_files":[{"bytes":5470,"path":"structural/formula_rewrite_after_column_insert/candidate.xlsx","sha256":"2557635a4d87da56f488709390d1c6fdef754228549d3d9bf19a74ef8882df72"}],"case_path":"structural/formula_rewrite_after_column_insert","coverage":["The fixture declares equivalent logical input positions but does not prove general Excel semantic equivalence."],"facts":[{"baseline":{"cell":"D5","formula":"=B5*C5","sheet":"Model"},"candidate":{"cell":"E5","formula":"=B5*D5","sheet":"Model"},"kind":"structural_formula_rewrite"}],"family":"structural","id":"structural.formula_rewrite_after_column_insert","must_reach":[],"review_expectation":"review","schema_version":1,"title":"A column insertion rewrites formulas while retaining the declared inputs","topology":"pair"}
16
- {"baseline_files":[{"bytes":6362,"path":"structural/three_d_scope_expansion/baseline.xlsx","sha256":"996184604d06c937442b23d6d1ac734b9b0bf70020beb1c4c0bfe8d182cf4f3d"}],"candidate_files":[{"bytes":6854,"path":"structural/three_d_scope_expansion/candidate.xlsx","sha256":"c6314f68590654b117141422dc90a5570d34030ac47be579c2f716bc4d150fde"}],"case_path":"structural/three_d_scope_expansion","coverage":["The formula text is intentionally unchanged; the observable risk is tab-order scope."],"facts":[{"after_sheet":"Jan","before_sheet":"Feb","formula_cell":"B5","formula_sheet":"Summary","inserted_sheet":"FebAdjustment","kind":"three_d_scope_changed"}],"family":"structural","id":"structural.three_d_scope_expansion","must_reach":[],"review_expectation":"block","schema_version":1,"title":"A new period silently enters an unchanged 3-D formula span","topology":"pair"}
 
 
1
+ {"baseline_files":[{"bytes":7042,"path":"finance/defined_name_redirect/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7042,"path":"finance/defined_name_redirect/candidate.xlsx","sha256":"2bb3cc9080f5c1eeda8ecf34abeae4ea56fd53fa5ad5949ded6162727875d226"}],"case_path":"finance/defined_name_redirect","coverage":["The assertion compares the defined-name destination; name resolution beyond this fixture is out of scope."],"facts":[{"kind":"defined_name_changed","name":"DiscountRate"}],"family":"finance","id":"finance.defined_name_redirect","must_reach":[],"review_expectation":"block","schema_version":2,"title":"A named rate redirects to a different assumption","topology":"pair"}
2
+ {"baseline_files":[{"bytes":7042,"path":"finance/external_formula_reference/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7065,"path":"finance/external_formula_reference/candidate.xlsx","sha256":"410fd472583c68f3d1dbbe9b0a7034bfb5e6f7792fd269b29ae0081072d33230"}],"case_path":"finance/external_formula_reference","coverage":["The external workbook is intentionally absent and must not be opened by a benchmark tool."],"facts":[{"cell":"C8","kind":"formula_changed","sheet":"Summary"},{"cell":"C8","kind":"external_formula_added","sheet":"Summary"}],"family":"finance","id":"finance.external_formula_reference","must_reach":[],"review_expectation":"block","schema_version":2,"title":"An internal driver is replaced by an external workbook reference","topology":"pair"}
3
+ {"baseline_files":[{"bytes":7042,"path":"finance/formula_to_value/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7047,"path":"finance/formula_to_value/candidate.xlsx","sha256":"0e61888bdce02d825f69cff256ae2a5d4951ee8d6c4f55b0b15cdceb1ee3097d"}],"case_path":"finance/formula_to_value","coverage":["Static dependency lower bound; numerical recalculation is out of scope."],"facts":[{"cell":"C8","kind":"formula_to_value","sheet":"Revenue"}],"family":"finance","id":"finance.formula_to_value","must_reach":[{"source":{"cell":"C8","sheet":"Revenue"},"targets":[{"cell":"C10","sheet":"Revenue"},{"cell":"C5","sheet":"Summary"},{"cell":"C6","sheet":"Summary"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":2,"title":"Revenue formula is replaced with a hard-coded value","topology":"pair"}
4
+ {"baseline_files":[{"bytes":7042,"path":"finance/input_value_change/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7041,"path":"finance/input_value_change/candidate.xlsx","sha256":"99d8c9c80f1313cef1f0773d6cd901d4a1c4aa91f315809e70af69ee0a9ff9ed"}],"case_path":"finance/input_value_change","coverage":["An input change is not inherently an error; it remains material review evidence."],"facts":[{"cell":"C2","kind":"value_changed","sheet":"Assumptions"}],"family":"finance","id":"finance.input_value_change","must_reach":[{"source":{"cell":"C2","sheet":"Assumptions"},"targets":[{"cell":"C5","sheet":"Revenue"},{"cell":"C8","sheet":"Revenue"},{"cell":"C10","sheet":"Revenue"},{"cell":"C6","sheet":"Summary"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"review","schema_version":2,"title":"Approved input changes and propagates into outputs","topology":"pair"}
5
+ {"baseline_files":[{"bytes":7042,"path":"finance/wrong_period_reference/baseline.xlsx","sha256":"75e99e52e4a2e8351b0750e4817fcacfeb9920db98b363d2388dbd4d330b472d"}],"candidate_files":[{"bytes":7040,"path":"finance/wrong_period_reference/candidate.xlsx","sha256":"56b500755ec0ab68129acb7b9a7ffaf774c626b308a3ecaed0ab131cb68e949e"}],"case_path":"finance/wrong_period_reference","coverage":["The benchmark asserts the reference drift, not the business correctness of every formula."],"facts":[{"cell":"C8","kind":"formula_changed","sheet":"Revenue"}],"family":"finance","id":"finance.wrong_period_reference","must_reach":[{"source":{"cell":"C8","sheet":"Revenue"},"targets":[{"cell":"C10","sheet":"Revenue"},{"cell":"C5","sheet":"Summary"},{"cell":"B4","sheet":"Dashboard"}]}],"review_expectation":"block","schema_version":2,"title":"Revenue formula uses a prior-period units reference","topology":"pair"}
6
+ {"baseline_files":[{"bytes":5599,"path":"governance/formula_cell_unlocked/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5639,"path":"governance/formula_cell_unlocked/candidate.xlsx","sha256":"d1d4c078606e2940c7ad5ac04bb634f20e34296eba91cef33e38757a268a9d35"}],"case_path":"governance/formula_cell_unlocked","coverage":["This is a direct cell-protection assertion; style inheritance and allowed edit ranges are out of scope."],"facts":[{"cell":"D10","kind":"formula_cell_unlocked","sheet":"Controls"}],"family":"governance","id":"governance.formula_cell_unlocked","must_reach":[],"review_expectation":"block","schema_version":2,"title":"A protected calculated cell is explicitly unlocked","topology":"pair"}
7
+ {"baseline_files":[{"bytes":5599,"path":"governance/hidden_sheet_revealed/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5594,"path":"governance/hidden_sheet_revealed/candidate.xlsx","sha256":"6f4d0cb90949de429d8d93d496d95c75e6adcb4d1abce1115d71bba5a3be3fa2"}],"case_path":"governance/hidden_sheet_revealed","coverage":["Visibility is an observable workbook control; cell content is not part of this assertion."],"facts":[{"baseline_state":"hidden","candidate_state":"visible","kind":"sheet_visibility_changed","sheet":"ReviewControls"}],"family":"governance","id":"governance.hidden_sheet_revealed","must_reach":[],"review_expectation":"review","schema_version":2,"title":"A hidden review-control sheet is made visible","topology":"pair"}
8
+ {"baseline_files":[{"bytes":5599,"path":"governance/manual_calculation_incomplete/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5618,"path":"governance/manual_calculation_incomplete/candidate.xlsx","sha256":"1a136225c99e8d98c4e7465f7544459a6188f4889606920b498177b8783c85e9"}],"case_path":"governance/manual_calculation_incomplete","coverage":["Calculation metadata is evidence of save state, not proof that any cached result is wrong."],"facts":[{"kind":"manual_calculation_incomplete"}],"family":"governance","id":"governance.manual_calculation_incomplete","must_reach":[],"review_expectation":"block","schema_version":2,"title":"A formula workbook records incomplete manual calculation","topology":"pair"}
9
+ {"baseline_files":[{"bytes":5599,"path":"governance/static_cycle_introduced/baseline.xlsx","sha256":"624673b76647c7d5343f1b2188d962ba9da11b7b2fa1c640218c728f15013a07"}],"candidate_files":[{"bytes":5596,"path":"governance/static_cycle_introduced/candidate.xlsx","sha256":"086d420690d81e6fd79146bf1e721fd28f71bdf292bf927566ffbc2ce08d7b5d"}],"case_path":"governance/static_cycle_introduced","coverage":["The cycle is direct and static; iterative calculation settings and dynamic references are out of scope."],"facts":[{"cells":[{"cell":"D10","sheet":"Controls"},{"cell":"D11","sheet":"Controls"}],"kind":"static_cycle_introduced"}],"family":"governance","id":"governance.static_cycle_introduced","must_reach":[],"review_expectation":"block","schema_version":2,"title":"Two direct formulas form a static cycle","topology":"pair"}
10
+ {"baseline_files":[{"bytes":5465,"path":"operations/conditional_formatting_removed/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5360,"path":"operations/conditional_formatting_removed/candidate.xlsx","sha256":"5fc314f650112546d6c372c8fe7be280ccb56bf717967c4fd135c80b2f659a87"}],"case_path":"operations/conditional_formatting_removed","coverage":["The benchmark observes the control removal but does not judge the intended visual design."],"facts":[{"baseline_count":1,"candidate_count":0,"kind":"conditional_formatting_count_changed","sheet":"Operations"}],"family":"operations","id":"operations.conditional_formatting_removed","must_reach":[],"review_expectation":"review","schema_version":2,"title":"A material exception highlight is removed","topology":"pair"}
11
+ {"baseline_files":[{"bytes":5465,"path":"operations/copied_formula_interruption/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5460,"path":"operations/copied_formula_interruption/candidate.xlsx","sha256":"8894418de3a7915a7b9d3ab5c71395fe79a02d0c805b494874d02613104a2835"}],"case_path":"operations/copied_formula_interruption","coverage":["Immediate formula peers provide the copied-block context; no formula execution is required."],"facts":[{"cell":"F7","kind":"formula_to_value","sheet":"Operations"}],"family":"operations","id":"operations.copied_formula_interruption","must_reach":[],"review_expectation":"block","schema_version":2,"title":"One copied margin formula is replaced by a manual number","topology":"pair"}
12
+ {"baseline_files":[{"bytes":5465,"path":"operations/data_validation_removed/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5329,"path":"operations/data_validation_removed/candidate.xlsx","sha256":"aea8e9f34825c521b82a6bca2990faa11f60db8fee4f87628e908bdb71965e77"}],"case_path":"operations/data_validation_removed","coverage":["The contract observes validation presence, not whether a future user enters an invalid value."],"facts":[{"baseline_count":1,"candidate_count":0,"kind":"data_validation_count_changed","sheet":"Operations"}],"family":"operations","id":"operations.data_validation_removed","must_reach":[],"review_expectation":"block","schema_version":2,"title":"Input validation is removed from an operational tracker","topology":"pair"}
13
+ {"baseline_files":[{"bytes":5465,"path":"operations/sumifs_range_shape/baseline.xlsx","sha256":"1fab22c80b1384cfe921e75c858934204435c31d7b5c67766c984289610901db"}],"candidate_files":[{"bytes":5469,"path":"operations/sumifs_range_shape/candidate.xlsx","sha256":"618613d92e354f3e7ccc7ef07d4c33f0f1b6ffeccbbd9e3f68e0b54c6dffb7c2"}],"case_path":"operations/sumifs_range_shape","coverage":["The range-shape defect is deliberately static and does not require evaluating SUMIFS."],"facts":[{"cell":"H6","kind":"formula_changed","sheet":"Operations"}],"family":"operations","id":"operations.sumifs_range_shape","must_reach":[],"review_expectation":"block","schema_version":2,"title":"A conditional aggregate has mismatched static ranges","topology":"pair"}
14
+ {"baseline_files":[{"bytes":4931,"path":"portfolio/external_driver_value_change/baseline/drivers.xlsx","sha256":"c2e6b4e9b2d70578ffd55df2de557107c55cf699fd1f94b54516c2f2854d3c99"},{"bytes":4996,"path":"portfolio/external_driver_value_change/baseline/model.xlsx","sha256":"7f253818e74ca955160ac3bbcfa4c7c25537f677fe157f9e2e30457c159ff21a"}],"candidate_files":[{"bytes":4931,"path":"portfolio/external_driver_value_change/candidate/drivers.xlsx","sha256":"0de0551f28366457c428b24b073074821576ea226841d5dd6f40c1d67c97c552"},{"bytes":4996,"path":"portfolio/external_driver_value_change/candidate/model.xlsx","sha256":"7f253818e74ca955160ac3bbcfa4c7c25537f677fe157f9e2e30457c159ff21a"}],"case_path":"portfolio/external_driver_value_change","coverage":["The target workbook is present only as a local sibling; no network or filesystem path resolution is permitted."],"facts":[{"cell":"B2","kind":"portfolio_value_changed","sheet":"Inputs","workbook":"drivers.xlsx"},{"cell":"B2","kind":"portfolio_external_reference","sheet":"Summary","target_workbook":"drivers.xlsx","workbook":"model.xlsx"}],"family":"portfolio","id":"portfolio.external_driver_value_change","must_reach":[],"review_expectation":"review","schema_version":2,"title":"An upstream workbook driver changes while a downstream workbook consumes it","topology":"portfolio"}
15
+ {"baseline_files":[{"bytes":5444,"path":"structural/formula_rewrite_after_column_insert/baseline.xlsx","sha256":"fdb943445413906a89a7d2f130479c76d4832d9d5fe5e29f48e14a20e179ef77"}],"candidate_files":[{"bytes":5470,"path":"structural/formula_rewrite_after_column_insert/candidate.xlsx","sha256":"2557635a4d87da56f488709390d1c6fdef754228549d3d9bf19a74ef8882df72"}],"case_path":"structural/formula_rewrite_after_column_insert","coverage":["The fixture declares equivalent logical input positions but does not prove general Excel semantic equivalence."],"facts":[{"baseline":{"cell":"D5","formula":"=B5*C5","sheet":"Model"},"candidate":{"cell":"E5","formula":"=B5*D5","sheet":"Model"},"kind":"structural_formula_rewrite"}],"family":"structural","id":"structural.formula_rewrite_after_column_insert","must_reach":[],"review_expectation":"review","schema_version":2,"title":"A column insertion rewrites formulas while retaining the declared inputs","topology":"pair"}
16
+ {"baseline_files":[{"bytes":6271,"path":"structural/structured_table_scope_expansion/baseline.xlsx","sha256":"1b6f467f5d81ebd9a2ec9d2c8592333b57b75bbc76d7128291f23833aeb40155"}],"candidate_files":[{"bytes":6298,"path":"structural/structured_table_scope_expansion/candidate.xlsx","sha256":"3cc867e141bc3174fd4dbf80747c7869ded02c8d175596b2690ddd5ec3c9d01b"}],"case_path":"structural/structured_table_scope_expansion","coverage":["The summary formula text intentionally remains unchanged; the observable risk is the stored Excel Table range.","The contract does not calculate the structured reference, apply filters, or infer table-total semantics."],"facts":[{"baseline_ref":"A1:D4","candidate_ref":"A1:D5","formula_cell":"B2","formula_sheet":"Summary","kind":"structured_table_scope_changed","table":"SalesLedger","table_sheet":"Ledger"}],"family":"structural","id":"structural.structured_table_scope_expansion","must_reach":[],"review_expectation":"block","schema_version":2,"title":"An Excel Table grows while a dependent structured reference stays unchanged","topology":"pair"}
17
+ {"baseline_files":[{"bytes":6362,"path":"structural/three_d_scope_expansion/baseline.xlsx","sha256":"996184604d06c937442b23d6d1ac734b9b0bf70020beb1c4c0bfe8d182cf4f3d"}],"candidate_files":[{"bytes":6854,"path":"structural/three_d_scope_expansion/candidate.xlsx","sha256":"c6314f68590654b117141422dc90a5570d34030ac47be579c2f716bc4d150fde"}],"case_path":"structural/three_d_scope_expansion","coverage":["The formula text is intentionally unchanged; the observable risk is tab-order scope."],"facts":[{"after_sheet":"Jan","before_sheet":"Feb","formula_cell":"B5","formula_sheet":"Summary","inserted_sheet":"FebAdjustment","kind":"three_d_scope_changed"}],"family":"structural","id":"structural.three_d_scope_expansion","must_reach":[],"review_expectation":"block","schema_version":2,"title":"A new period silently enters an unchanged 3-D formula span","topology":"pair"}