-
Notifications
You must be signed in to change notification settings - Fork 0
Branch main Contract CodewordTransformation
github-actions[bot] edited this page Jun 22, 2026
·
75 revisions
| Field | Value |
|---|---|
| Branch | main |
| Source | specs/contracts/CodewordTransformation.schema.json |
| Commit | dfa401fa1826 |
| Synced (UTC) | 2026-06-22T10:59:01Z |
Contract pages define the machine-checkable object shape that crosses a lifecycle boundary.
flowchart LR
Producer["Lifecycle producer"] --> Contract["Contract schema"]
Contract --> Example["Schema example"]
Example --> Validator["Schema validator"]
Contract --> Fixture["Conformance fixture output"]
Fixture --> Gate["Base-design gate"]
| Question | Where to look |
|---|---|
| Which lifecycle boundary uses it? | Read description, required fields, and linked references. |
| What diagnostics are mandatory? | Inspect diagnostic reference fields and rule-reference links. |
| How is it validated? | Compare this schema with fixtures/schema_examples/ and conformance vectors. |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CodewordTransformation",
"description": "XOR-by-codeword transition.",
"type": "object",
"properties": {
"transformationID": {
"type": "string"
},
"inputState": {
"$ref": "AshState.schema.json"
},
"codeword": {
"type": "array",
"items": {
"type": "integer",
"enum": [
0,
1
]
},
"minItems": 9,
"maxItems": 9
},
"outputState": {
"$ref": "AshState.schema.json"
},
"diagnosticReference": {
"$ref": "DiagnosticReference.schema.json"
}
},
"required": [
"transformationID",
"inputState",
"codeword",
"outputState",
"diagnosticReference"
],
"additionalProperties": false
}