Skip to content

Commit

Permalink
Merge pull request #227 from fiskaltrust/user/bri/45925-improve-journ…
Browse files Browse the repository at this point in the history
…altype-description

adding definition for version information, ActionJournal, ReceiptJournal
  • Loading branch information
Bluette-C-Riviere committed Nov 12, 2021
2 parents c47e7cd + 7d4b887 commit defbcc9
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions doc/general/reference-tables/reference-tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,23 @@ For definitions regarding national laws, please refer to the appropriate appendi

| **Value** | **Description** | **Middleware-Version** |
|----------------------|----------------------------------------------|------------------------|
| `0x0000000000000000` | Version information | 1.1 |
| `0x0000000000000001` | fiskaltrust.ActionJournal in internal format | 1.1 |
| `0x0000000000000002` | ReceiptJournal in internal format | 1.1 |
| `0x0000000000000003` | QueueItemJournal in internal format | 1.1 |
| `0x0000000000000000` | **Version information** </br> </br> Version information informs which version of the fiskaltrust.Middleware is currently being used | 1.1 |
| `0x0000000000000001` | **[fiskaltrust.ActionJournal](https://docs.fiskaltrust.cloud/docs/poscreators/middleware-doc/general/cash-register-integration#fiskaltrustactionjournal)** in internal format </br> </br> The fiskaltrust.ActionJournal collects all operational incidents. This can be the date and time of start or failure of the service, as well as any other information related to the fiskaltrust.Middleware and fiskaltrust.SecurityMechanism.| 1.1 |
| `0x0000000000000002` | **[ReceiptJournal](https://docs.fiskaltrust.cloud/docs/poscreators/middleware-doc/general/cash-register-integration#fiskaltrustreceiptjournal)** in internal format </br> </br> The fiskaltrust.ReceiptJournal is used to record, hash, and chain all requests to the fiskaltrust.Middleware and the resulting responses. The first part of the returned ReceiptIdentification is an upcounting number generated by ReceiptJournal. | 1.1 |
| `0x0000000000000003` | **QueueItemJournal in internal format** </br> </br> QueueItemJournal shows every information related to to the fiskaltrust.Middleware and fiskaltrust.SecurityMechanism as wellas all receipts sent to the fiskaltrust.Middleware and all resulting responses. This is useful for archiving purposes. | 1.1 |

**Example** for version information :

```json
{
"Assembly": "fiskaltrust.Middleware.Queue, Version=1.3.24.0, Culture=neutral, PublicKeyToken=null",
"Version": {
"Major": 1,
"Minor": 3,
"Build": 24,
"Revision": 0,
"MajorRevision": 0,
"MinorRevision": 0
}
}
```

0 comments on commit defbcc9

Please sign in to comment.