Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- Added a detailed implementation status table outlining the completion status of various phases. - Marked the submodule reference for smom-dbis-138 as dirty to reflect changes. Made-with: Cursor
17 lines
586 B
JSON
17 lines
586 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "LPA",
|
|
"description": "Ledger Posting Authorization for DBIS Rail (lpaId)",
|
|
"type": "object",
|
|
"required": ["lebHash", "state", "stateTimestamp"],
|
|
"properties": {
|
|
"lebHash": { "type": "string", "description": "Hash of canonical LEB (hex)" },
|
|
"state": {
|
|
"type": "string",
|
|
"enum": ["POSTED_FINAL", "POSTED_ADJUSTMENT", "POSTED_REVERSAL", "DISPUTED_HOLD"]
|
|
},
|
|
"stateTimestamp": { "type": "integer", "description": "Unix seconds of state change" }
|
|
},
|
|
"additionalProperties": false
|
|
}
|