From a8b7b1fb977b60e22b06b42b36d2cdc0ae85d3d4 Mon Sep 17 00:00:00 2001 From: DeltaDaniel <139119540+DeltaDaniel@users.noreply.github.com> Date: Tue, 5 Nov 2024 18:47:34 +0100 Subject: [PATCH] Added optional remark field for EBDMetaData --- src/rebdhuhn/models/ebd_table.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/rebdhuhn/models/ebd_table.py b/src/rebdhuhn/models/ebd_table.py index e08dd5a..4f31884 100644 --- a/src/rebdhuhn/models/ebd_table.py +++ b/src/rebdhuhn/models/ebd_table.py @@ -34,6 +34,13 @@ class EbdTableMetaData: """ e.g. 'BIKO' for "Prüfende Rolle: 'BIKO'" """ + remark: Optional[str] = attrs.field( + default=None, validator=attrs.validators.optional(attrs.validators.instance_of(str)) + ) + """ + remark for empty ebd sections, e.g. 'Derzeit ist für diese Entscheidung kein Entscheidungsbaum notwendig, + da keine Antwort gegeben wird und ausschließlich die Liste versandt wird.' + """ @attrs.define(auto_attribs=True, kw_only=True)