From 434300a84559a48db5bf4b30107aeb84d0435190 Mon Sep 17 00:00:00 2001 From: Gunnar Andersson Date: Wed, 23 Nov 2022 12:23:53 +0100 Subject: [PATCH] vsc_ast.py: Implement version_label Signed-off-by: Gunnar Andersson --- ifex/model/ifex_ast.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ifex/model/ifex_ast.py b/ifex/model/ifex_ast.py index f19b1bc3..f305031e 100644 --- a/ifex/model/ifex_ast.py +++ b/ifex/model/ifex_ast.py @@ -501,6 +501,9 @@ class Namespace: minor_version: Optional[int] = None """ Provides the minor version of the namespace. """ + version_label: Optional[str] = str() + """ A free-form string that contains any additional information about the content/version """ + events: Optional[List[Event]] = field(default_factory=EmptyList) """ Contains a list of the events in a given namespace """