{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GeneralLedgerEntry", "title": "GeneralLedgerEntry", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "example": "abc123" }, "entryNumber": { "type": "integer", "readOnly": true, "example": 10 }, "postingDate": { "type": "string", "format": "date", "example": "2026-01-15" }, "documentNumber": { "type": "string", "maxLength": 20, "example": "example_value" }, "documentType": { "type": "string", "example": "example_value" }, "accountId": { "type": "string", "format": "uuid", "example": "500123" }, "accountNumber": { "type": "string", "maxLength": 20, "example": "example_value" }, "description": { "type": "string", "maxLength": 100, "example": "A sample description." }, "debitAmount": { "type": "number", "format": "decimal", "example": 42.5 }, "creditAmount": { "type": "number", "format": "decimal", "example": 42.5 }, "lastModifiedDateTime": { "type": "string", "format": "date-time", "readOnly": true, "example": "2026-01-15T10:30:00Z" } } }