ED03 - Diary Format: JSON Artifacts, Temporal Signature, V7GUID, Sidecars

Problem

An entrepreneur wants to keep their diary in Git - but what exactly does an entry look like technically? Current practice offers no binding answer:

Key Message

A GitCover diary entry is a JSON artifact with:

  1. JSON-Schema-First - the schema exists before the entry; the entry is validated against the schema (pre-commit hook)
  2. V7GUID (Class Identifier) - classifies the document/action according to the .gitcover registry (what/which type); serves for filing organization and DB queries (e.g., EF Core in the Vertical App)
  3. uuidV7 (Object ID) - is already in itself the unique identity (DocID) of the entry, RFC 9562 §5.7, generated from a preset timestamp (or now()) via the GitCover helper (UuidV7Gen), remainder filled with randomness
  4. Composite key V7GUID:uuidV7 - the GCPN sidecar composite key, serves for filing organization and queries; the recording time is embedded in the uuidV7 (48-bit timestamp), no separate datetime/date field
  5. Sidecar requirement - every voucher receives a .v7g.md sidecar with its own uuidV7 (classification act) and the uuidV7 of the document
  6. Retrograde/progressive traceability - resolvable from booking entry → voucher → diary entry → uuidV7 and back

Compliance by Design: The format is not retrofitted - it is structural. Schema, V7GUID (Class), uuidV7 (Object), and sidecar are mandatory fields without which an entry is not accepted into the repo.

No redundant datetime/date: The recording time is anchored in the uuidV7 itself (48-bit timestamp, RFC 9562 §5.7). A separate string representation in JSON schemas or JSON data is redundant and is not maintained in the facts. String representation for DTO/HTMX transfer is the Harness's responsibility, not the facts layer.

The JSON Schema (Schema-First)

%%{init: {'theme':'base','themeVariables':{'primaryColor':'#FBFAF7','primaryTextColor':'#0F1B33','primaryBorderColor':'#6B7280','lineColor':'#6B7280'}}}%% flowchart LR S["JSON-Schema
(vor Eintrag)"] S --> V["Schema-Validierung
(Pre-Commit-Hook)"] E["Tagebucheintrag
(JSON)"] E --> V V -->|gültig| C["Commit akzeptiert
+ uuidV7 generiert"] V -->|ungültig| R["Commit abgelehnt
Schema-Verstoß"] style S fill:#DBEAFE,stroke:#1D4ED8,color:#0F1B33 style V fill:#DBEAFE,stroke:#1D4ED8,color:#0F1B33 style E fill:#0F1B33,stroke:#0F1B33,color:#FBFAF7 style C fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style R fill:#FDBA74,stroke:#C2410C,color:#0F1B33

The schema exists before the entry - it is stored in .gitcover/schemas/diary-entry-1.0.schema.json and is versioned. An entry without a schema reference ($schema) is rejected by the pre-commit hook.

Schema diary-entry-1.0.schema.json (simplified)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://gitcover.org/schemas/diary-entry-1.0.schema.json",
  "title": "GitCover Diary Entry v1.0",
  "type": "object",
  "required": [
    "$schema", "V7GUID", "uuidV7",
    "author", "role", "tenant", "sphere", "source"
  ],
  "properties": {
    "$schema": {
      "type": "string",
      "format": "uri",
      "const": "https://gitcover.org/schemas/diary-entry-1.0.schema.json"
    },
    "V7GUID": {
      "type": "string",
      "description": "Class Identifier - klassifiziert das Dokument/die Action aus .gitcover Registry (was/welcher Typ)"
    },
    "uuidV7": {
      "type": "string",
      "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$",
      "description": "Object ID - RFC 9562 §5.7 UUIDv7, generiert aus vorgegebener Zeitmarke (nicht now()), 48-Bit-Zeitstempel in der GUID verankert"
    },
    "author": { "type": "string", "description": "Akteur-Platzhalter, z. B. E1" },
    "role": {
      "type": "string",
      "enum": ["GF", "Buchhalter", "Lohnverantwortlicher", "F&E-Leiter", "Administrator"]
    },
    "tenant": { "type": "string", "description": "Tenant-Platzhalter, z. B. ORG-1" },
    "sphere": {
      "type": "string",
      "enum": ["ideell", "vermögensverwaltend", "zweckbetrieblich", "wirtschaftlich", "n/a"]
    },
    "source": {
      "type": "string",
      "enum": ["E1", "StB", "Notar", "Bank", "DRV", "FA", "BA", "VBG", "KK", "auto"]
    },
    "source_sha256": {
      "type": "string",
      "pattern": "^[0-9a-f]{64}$",
      "description": "SHA-256 des referenzierten Belegs (eindeutige Beleg-ID)"
    },
    "tags": { "type": "array", "items": { "type": "string" } }
  }
}

Important - no datetime/date field: The recording time is embedded in the uuidV7 (48-bit timestamp, RFC 9562 §5.7). A separate string representation is redundant and is not maintained in the facts. The uuidV7 alone is the unique DocID; the composite key V7GUID:uuidV7 serves for filing organization and DB queries.

V7GUID - Structure and 48-Bit Timestamp

%%{init: {'theme':'base','themeVariables':{'primaryColor':'#FBFAF7','primaryTextColor':'#0F1B33','primaryBorderColor':'#6B7280','lineColor':'#6B7280'}}}%% flowchart LR subgraph V7["V7GUID (128 Bit, RFC 9562 §5.7)"] direction LR T["timestamp_ms
Bits 0–47
48 Bit Unix-ms"] V["version
Bits 48–51
0111 (UUIDv7)"] R["rand_a
Bits 52–63
12 Bit"] VA["variant
Bits 64–65
10"] RB["rand_b
Bits 66–127
62 Bit"] end T --> DT["48-Bit-Zeitstempel
in uuidV7 verankert
(kein separates datetime-Feld)"] V7 --> ID["uuidV7-Feld
Object ID
(vorgegebene Zeitmarke)"] style T fill:#DBEAFE,stroke:#1D4ED8,color:#0F1B33 style V fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style R fill:#E5E7EB,stroke:#6B7280,color:#0F1B33 style VA fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style RB fill:#E5E7EB,stroke:#6B7280,color:#0F1B33 style DT fill:#0F1B33,stroke:#0F1B33,color:#FBFAF7 style ID fill:#0F1B33,stroke:#0F1B33,color:#FBFAF7
Bit Range Width Content RFC-fixed
0–47 48 bit Unix milliseconds since epoch (1970-01-01T00:00:00Z) Yes (RFC 9562 §5.7)
48–51 4 bit Version = 0111 (UUIDv7) Yes
52–63 12 bit rand_a (random) No
64–65 2 bit Variant = 10 Yes
66–127 62 bit rand_b (random) No

Core principle: The 48-bit timestamp component (bits 0–47) is authoritative for the recording time. It is anchored in the uuidV7 itself and cannot be changed retroactively without invalidating the GUID. A separate datetime field does not exist - the time is embedded in the uuidV7. String representation for DTO/HTMX is the Harness's responsibility.

GitCover Extension: Hierarchy and Process IDs in Bits 66–127

The GitCover V7GUID specification (work/OSS/TOP/.gitcover/specs/v7guid/) extends the 62-bit random component (bits 66–127) with a 6-level hierarchy and process IDs - this is the patent-protected extension (DPMA Az. 10 2025 003 091.6):

Bit Range Width Content
66–89 6×4 bit 6-level hierarchy (L1–L6, 4 bits each)
90–97 8 bit ProcessTypeId (process type)
98–105 8 bit GatewayId (control point)
106–113 8 bit Status (lifecycle bitmask)
114–121 8 bit Kind (type of activity)
122–127 6 bit VariantId (variant class)

Note: This extension is not strictly required for the diary series - it becomes relevant in ED02 (tenant/sphere/role) and later articles (Harness). Here, the RFC 9562 basis with the 48-bit timestamp suffices.

Helper Routines: Creating V7GUIDs from Foreign Keys

%%{init: {'theme':'base','themeVariables':{'primaryColor':'#FBFAF7','primaryTextColor':'#0F1B33','primaryBorderColor':'#6B7280','lineColor':'#6B7280'}}}%% flowchart LR F["Fremd-Key
(Zeitmarke in Daten
oder Dateiname)"] F --> H["Helper-Routine
UuidV7Gen"] H --> TS["48-Bit-Zeitstempel
extrahiert/konvertiert"] TS --> G["uuidV7 generiert
(Guid.CreateVersion7)"] G --> A["JSON-Artefakt
V7GUID + uuidV7"] A --> D["GoBD-Dokumentation
zeitnahe Erfassung
nachvollziehbar"] style F fill:#FDBA74,stroke:#C2410C,color:#0F1B33 style H fill:#DBEAFE,stroke:#1D4ED8,color:#0F1B33 style TS fill:#DBEAFE,stroke:#1D4ED8,color:#0F1B33 style G fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style A fill:#0F1B33,stroke:#0F1B33,color:#FBFAF7 style D fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33

The GitCover OSS tool UuidV7Gen (work/OSS/TOP/tools/UuidV7Gen/) provides two central operations:

gen - Generate uuidV7 (guid)

# Erzeugt eine neue uuidV7 mit vorgegebener Zeitmarke (nicht now())
# Zeitmarke z. B. aus Dateiname "260815_0900" → ISO 2026-08-15T09:00:00Z
uuidv7gen gen "2026-08-15T09:00:00Z" "Tagebucheintrag-260815"

# Ausgabe: Label;UUID;ISO-Zeitstempel
# Tagebucheintrag-260815;019f2c6f-0900-7000-8000-000000000000;2026-08-15T09:00:00.000Z

decode - Extract Timestamp from uuidV7

# Extrahiert den 48-Bit-Zeitstempel aus einer uuidV7
uuidv7gen decode 019f2c6f-0900-7000-8000-000000000000

# Ausgabe: ISO-8601-Zeitstempel
# 2026-08-15T09:00:00.000Z

Foreign Key → uuidV7

The helper routines allow creating a valid uuidV7 key from a foreign key (e.g., a timestamp in the file name such as 260815_0900_Lohnabrechnung.pdf) - with a preset timestamp, not now():

  1. Parse the foreign key - 260815_09002026-08-15T09:00:00Z
  2. Compute the 48-bit timestamp - Unix milliseconds since epoch
  3. Generate the uuidV7 - Guid.CreateVersion7() with an explicit timestamp, remainder filled with randomness
  4. Composite key - V7GUID (Class from registry) : uuidV7 (Object with timestamp)
  5. GoBD documentation - timely recording traceably anchored (no separate datetime field)

GoBD reference: Timely recording (GoBD Rz. 146) is cryptographically documented by the 48-bit timestamp in the uuidV7 - not merely asserted. The timestamp is part of the identity and cannot be changed retroactively.

Sidecar Structure (.v7g.md)

Every voucher receives a sidecar with two uuidV7 references:

%%{init: {'theme':'base','themeVariables':{'primaryColor':'#FBFAF7','primaryTextColor':'#0F1B33','primaryBorderColor':'#6B7280','lineColor':'#6B7280'}}}%% flowchart TD D["Dokument
(PDF, XML, EML)"] D --> S["Sidecar .v7g.md"] S --> U1["uuidV7 (eigen)
Identität des Sidecars
+ 48-Bit-Erfassungszeit"] S --> U2["uuidV7 (fremd)
Identität des Dokuments
in v7g_taxonomy"] S --> SH["sha256
Eindeutige Beleg-ID"] S --> T["v7g_taxonomy
Klassifizierung
(Tenant, Sphäre, Kategorie)"] S --> O["obsolescence
status: active/superseded/obsolete"] style D fill:#0F1B33,stroke:#0F1B33,color:#FBFAF7 style S fill:#DBEAFE,stroke:#1D4ED8,color:#0F1B33 style U1 fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style U2 fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style SH fill:#FDBA74,stroke:#C2410C,color:#0F1B33 style T fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style O fill:#E5E7EB,stroke:#6B7280,color:#0F1B33

Sidecar Example

{
  "$schema": "https://gitcover.org/schemas/v7g-sidecar-1.0.schema.json",
  "V7GUID": "<V7GUID-Class-aus-Registry>",
  "uuidV7": "019f2c6f-0900-7001-8000-000000000001",
  "sha256": "ab94670c0dd8499c27ef2feddd1d9c5925977d55a52150a6fca0f6567d2e5e79",
  "title": "260815_Lohnabrechnung.pdf",
  "original_filename": "260815_Lohnabrechnung.pdf",
  "locations": [
    {
      "unc_path": "./ORG-1/sources/lohn/260815_Lohnabrechnung.pdf",
      "from": "260815",
      "to": null,
      "note": "Primärspeicherort"
    }
  ],
  "v7g_taxonomy": [
    {
      "v7guid": "019f2c6f-0900-7000-8000-000000000000",
      "taxonomy": "ORG-1/Lohn",
      "valid_from": "260815",
      "valid_to": null,
      "note": "Tenant: ORG-1, Category: Lohn, Sphäre: ideell"
    }
  ],
  "gcpn": {
    "prima_nota_ref": null,
    "journal_entry_ref": null
  },
  "obsolescence": {
    "status": "active",
    "superseded_by": null,
    "superseded_at": null
  }
}

Composite key V7GUID:uuidV7:

  • V7GUID (field 1) - Class Identifier of the sidecar (classification from the .gitcover registry: what/which type)
  • uuidV7 (field 2) - Object ID of the sidecar itself, generated with a preset timestamp (when was the classification made?), 48-bit timestamp anchored in the GUID
  • v7g_taxonomy[].v7guid - Object ID of the classified document (which document is being classified?)

This way, not only is the document uniquely identified, but also the classification act itself - including the point in time (in uuidV7), who performed the classification, and in what role. No separate datetime field - the time is embedded in the uuidV7 values.

Retrograde and Progressive Traceability

%%{init: {'theme':'base','themeVariables':{'primaryColor':'#FBFAF7','primaryTextColor':'#0F1B33','primaryBorderColor':'#6B7280','lineColor':'#6B7280'}}}%% flowchart LR subgraph RET["Retrograd (vom Buchungssatz rückwärts)"] direction LR B["Buchungssatz
(SKR04)"] B --> BE["Beleg
(SHA-256)"] BE --> DE["Tagebucheintrag
(uuidV7)"] DE --> V7["uuidV7
(48-Bit-Zeitstempel)"] end subgraph PRO["Progressiv (vom Beleg vorwärts)"] direction LR BE2["Beleg
(SHA-256)"] BE2 --> BS["Buchungssatz
(SKR04)"] BS --> GB["Grundbuch
(JSON)"] GB --> EB["Eröffnungsbilanz"] end style B fill:#DBEAFE,stroke:#1D4ED8,color:#0F1B33 style BE fill:#FDBA74,stroke:#C2410C,color:#0F1B33 style DE fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style V7 fill:#0F1B33,stroke:#0F1B33,color:#FBFAF7 style BE2 fill:#FDBA74,stroke:#C2410C,color:#0F1B33 style BS fill:#DBEAFE,stroke:#1D4ED8,color:#0F1B33 style GB fill:#DBEAFE,stroke:#1D4ED8,color:#0F1B33 style EB fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33
Direction Start Resolution via Target
Retrograde Booking entry (SKR04) source_sha256 → voucher → uuidV7 Diary entry with 48-bit timestamp
Progressive Voucher (SHA-256) uuidV7 → diary entry → source_sha256 Booking entry → ledger → opening balance sheet

GoBD reference: Retrograde traceability corresponds to GoBD Rz. 146 (traceability). Progressive traceability corresponds to GoBD Rz. 147 (auditability). Both are guaranteed by design through uuidV7 + SHA-256 - not through manual cross-references.

Time Recording in the Diary

Every diary entry contains a time recording table:

Start End Hours Activity Tenant Sphere Source
0900 1200 3.0 Payroll account master data ORG-1 ideational E1
1200 1400 2.0 R&D: V7GUID specification ORG-1 ideational E1

FZul reference: The time recording is the basis for FZul hour records (ED18). The separation of R&D vs. administration is done via the role field (F&E-Leiter vs. GF) and the tags (["fzul", "forschung"] vs. ["verwaltung"]).

What Goes into the Git Repo - and What Does Not

%%{init: {'theme':'base','themeVariables':{'primaryColor':'#FBFAF7','primaryTextColor':'#0F1B33','primaryBorderColor':'#6B7280','lineColor':'#6B7280'}}}%% flowchart TD IN["Ins Git-Repo"] IN --> J["JSON-Artefakte
(Tagebucheinträge, Grundbuch)"] IN --> S["Sidecars .v7g.md"] IN --> B["Belege
(PDF, XML, EML)"] IN --> SC["Schemata"] IN --> D["Dictionaries"] OUT["Nicht im Git-Repo"] OUT --> P["Private Dokumente
(sofern nicht ausdrücklich eingeführt)"] OUT --> T["Temporäre Dateien"] OUT --> C["Credentials/Secrets"] style IN fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style J fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style S fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style B fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style SC fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style D fill:#D1FAE5,stroke:#0A7F5C,color:#0F1B33 style OUT fill:#FDBA74,stroke:#C2410C,color:#0F1B33 style P fill:#FDBA74,stroke:#C2410C,color:#0F1B33 style T fill:#FDBA74,stroke:#C2410C,color:#0F1B33 style C fill:#FDBA74,stroke:#C2410C,color:#0F1B33

Important: Only structured artifacts (JSON, sidecars, vouchers, schemas, dictionaries) are added to the Git repo. Private documents are never added to the repo unless they have been explicitly introduced and classified as artifacts. This is a data protection and compliance requirement (GDPR, GoBD).

Risk Leverage

Today (cheap) Tomorrow (audit-proof) Risk mitigated
JSON artifact with V7GUID (Class) + uuidV7 (Object) Recording time cryptographically anchored in uuidV7 Dispute of the recording time
Schema validation (pre-commit) Only valid entries into the repo Schema violation, incomplete mandatory fields
Sidecar with composite key V7GUID:uuidV7 Classification act traceable Dispute of the classification
source_sha256 per entry Retrograde traceability Dispute of the voucher assignment
Helper UuidV7Gen for foreign keys Timely recording documented (timestamp in uuidV7) GoBD violation "not timely"

Harness Requirements (Preview)

Derivable from ED03:

ID Requirement Priority
FA-1.1 Diary entries as JSON artifacts (Schema-First) MUST
FA-1.2 Composite key V7GUID (Class) : uuidV7 (Object) - no separate datetime/date field; time in uuidV7 (RFC 9562 §5.7) MUST
FA-1.3 uuidV7 generated from a preset timestamp (not now()) via helper MUST
FA-2.1 SHA-256 as voucher ID MUST
FA-2.2 .v7g.md sidecar requirement MUST
FA-2.3 Sidecar with composite key V7GUID:uuidV7 (Class + Object) MUST
FA-2.12 Retrograde traceability (booking → voucher → uuidV7) MUST
FA-2.13 Progressive traceability (voucher → booking → ledger) MUST
TA-1.5 Helper routines for creating V7GUIDs from foreign keys (UuidV7Gen) MUST
TA-1.6 GoBD temporal requirements documented (48-bit timestamp in uuidV7) MUST
TA-2.1 Pre-commit: JSON schema validation MUST

The complete requirements list is in Harness-Anforderungen.md.

Sources

Role Location Purpose
Primary / SSoT git.gitcover.org/GCC Canonical storage (GPG-signed, versioned)
Public OSS Mirror / CDN codeberg.org/gitcover-commons Read-only mirror; FLOSS discovery
Community Hub github.com/gitcover-commons Issues & Discussions; source code reference to Codeberg

Note: This assignment of sources, mirror, and community hub reflects the current state and may change. Please check the respective canonical source on gitcover.org for the current state.