Files
proxmox/docs/dbis-rail/schemas/LEB.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

21 lines
939 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "LEB",
"description": "Ledger Entry Bundle for DBIS Rail canonical hashing (lebHash)",
"type": "object",
"required": ["ledgerSystemId", "journalId", "batchNumber", "postingTimestamp", "reserveAccountId"],
"properties": {
"ledgerSystemId": { "type": "string", "description": "Identifies the ledger system" },
"journalId": { "type": "string", "description": "Unique journal or batch identifier" },
"batchNumber": { "type": "integer", "description": "Batch or sequence number" },
"postingTimestamp": { "type": "integer", "description": "Unix seconds" },
"reserveAccountId": { "type": "string", "description": "Reserve or settlement account id" },
"entries": {
"type": "array",
"description": "List of line items (account, amount, currency, side)",
"items": { "type": "object" }
}
},
"additionalProperties": false
}