Files
proxmox/docs/dbis-rail/schemas/LPA.schema.json
defiQUG 4de9676da7
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
chore: update implementation status in DBIS_RAIL_ADDONS_CODE_COMPLETION_TASK_LIST.md
- 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
2026-03-02 13:56:53 -08:00

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
}