From 1ae2fc0ecba4a9622c282313eb526fd3f13806e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20K=C3=BCrten?= Date: Mon, 15 Jun 2026 09:46:35 +0200 Subject: [PATCH] feat: Add supplementary name fields for English and German in Part model --- csfunctions/objects/part.py | 3 +++ json_schemas/request.json | 26 ++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/csfunctions/objects/part.py b/csfunctions/objects/part.py index 70946ec..2bef484 100644 --- a/csfunctions/objects/part.py +++ b/csfunctions/objects/part.py @@ -23,6 +23,9 @@ class Part(BaseObject): benennung: str | None = Field(None, description="Name") eng_benennung: str | None = Field(None, description="Name") benennung2: str | None = Field(None, description="Additional Name") + cssaas_benennung3_en: str | None = Field(None, description="Supplementary Name") + cssaas_benennung3_de: str | None = Field(None, description="Supplementary Name") + t_kategorie_name_de: str | None = Field(None, description="Category Name") t_kategorie_name_en: str | None = Field(None, description="Category Name") cdb_t_project_id: str | None = Field(None, description="Project ID") diff --git a/json_schemas/request.json b/json_schemas/request.json index bc3d6e1..d121c07 100644 --- a/json_schemas/request.json +++ b/json_schemas/request.json @@ -7129,6 +7129,32 @@ "description": "Additional Name", "title": "Benennung2" }, + "cssaas_benennung3_en": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Supplementary Name", + "title": "Cssaas Benennung3 En" + }, + "cssaas_benennung3_de": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Supplementary Name", + "title": "Cssaas Benennung3 De" + }, "t_kategorie_name_de": { "anyOf": [ {