diff --git a/docs/templates/paris/dienstleistung.json b/docs/templates/paris/dienstleistung.json
index 0198d938b99d9640afae66bd799cb52d3b0feebe..fcc266124a35b321bb0c1320ccf03174a587b673 100644
--- a/docs/templates/paris/dienstleistung.json
+++ b/docs/templates/paris/dienstleistung.json
@@ -135,7 +135,11 @@
       "name": "Punkt",
       "type": "equals",
       "value": ".",
-      "size": "small"
+      "size": "small",
+      "extra": {
+        "before": "",
+        "after": ""
+      }
     }
   },
   "variants": {
diff --git a/docs/templates/paris/eigenschaft.json b/docs/templates/paris/eigenschaft.json
index f4e83b97923f65689efd46e969c6074f0b40e7bd..9146a6389a1941787127b1acadb241adc188c114 100644
--- a/docs/templates/paris/eigenschaft.json
+++ b/docs/templates/paris/eigenschaft.json
@@ -70,7 +70,11 @@
       "name": "Punkt",
       "type": "equals",
       "value": ".",
-      "size": "small"
+      "size": "small",
+      "extra": {
+        "before": "",
+        "after": ""
+      }
     }
   },
   "variants": {
diff --git a/docs/templates/paris/kontext.json b/docs/templates/paris/kontext.json
index 20904c2cb495780f97ad7aa20ebef7d1c2e0db04..9465000a3ce8fadc7bcb1cb6554b4ee0645fa888 100644
--- a/docs/templates/paris/kontext.json
+++ b/docs/templates/paris/kontext.json
@@ -86,7 +86,11 @@
       "name": "Punkt",
       "type": "equals",
       "value": ".",
-      "size": "small"
+      "size": "small",
+      "extra": {
+        "before": "",
+        "after": ""
+      }
     }
   },
   "variants": {
diff --git a/docs/templates/paris/stakeholder.json b/docs/templates/paris/stakeholder.json
index 1c009b3b2474a75db190e202ede63598cac05493..515a893c8047c64ad123eaf471819c4f7bf530ba 100644
--- a/docs/templates/paris/stakeholder.json
+++ b/docs/templates/paris/stakeholder.json
@@ -90,7 +90,11 @@
       "name": "Punkt",
       "type": "equals",
       "value": ".",
-      "size": "small"
+      "size": "small",
+      "extra": {
+        "before": "",
+        "after": ""
+      }
     }
   },
   "variants": {
diff --git a/docs/templates/paris/technische-eigenschaft.json b/docs/templates/paris/technische-eigenschaft.json
index 17bdf72b651177e11eb4075ea72528b11d23464e..738547ad7a26617ff20f84b47224ab189a2227c1 100644
--- a/docs/templates/paris/technische-eigenschaft.json
+++ b/docs/templates/paris/technische-eigenschaft.json
@@ -87,7 +87,11 @@
       "name": "Punkt",
       "type": "equals",
       "value": ".",
-      "size": "small"
+      "size": "small",
+      "extra": {
+        "before": "",
+        "after": ""
+      }
     }
   },
   "variants": {
diff --git a/docs/templates/paris/technische.json b/docs/templates/paris/technische.json
index 228c68530f72c1bacac838580277ecfcffddab39..b6c01b75a893768d86bb5cdeafd723b338a8091c 100644
--- a/docs/templates/paris/technische.json
+++ b/docs/templates/paris/technische.json
@@ -129,7 +129,11 @@
       "name": "Punkt",
       "type": "equals",
       "value": ".",
-      "size": "small"
+      "size": "small",
+      "extra": {
+        "before": "",
+        "after": ""
+      }
     }
   },
   "variants": {
diff --git a/docs/templates/paris/ziel.json b/docs/templates/paris/ziel.json
index 7b1416e192d2e21c0188750ce26eca6f592fc9b3..d2b4934a3258cd87190de154431a1fbf3b2e64dd 100644
--- a/docs/templates/paris/ziel.json
+++ b/docs/templates/paris/ziel.json
@@ -123,7 +123,11 @@
       "name": "Punkt",
       "type": "equals",
       "value": ".",
-      "size": "small"
+      "size": "small",
+      "extra": {
+        "before": "",
+        "after": ""
+      }
     }
   },
   "variants": {
diff --git a/src/app/eiffel/parser.go b/src/app/eiffel/parser.go
index d8056403114bf18816878366f2494f5e924a84ce..ccda7b23459dc4bbf552414b59f16e962f89ef9f 100644
--- a/src/app/eiffel/parser.go
+++ b/src/app/eiffel/parser.go
@@ -81,8 +81,8 @@ type BasicRule struct {
 	// However, if this flag is set to true, the segment will not be displayed at all.
 	IgnoreMissingWhenOptional bool `json:"ignoreMissingWhenOptional"`
 	// Size is the expected size of the rule's value. It is optional. Possible values are:
-	//  - "small" (default): The value is expected to be a short string. 1/4 of the input field width.
-	//  - "medium": The value is expected to be a medium-sized string. 2/4 of the input field width.
+	//  - "small": The value is expected to be a short string. 1/4 of the input field width.
+	//  - "medium" (default): The value is expected to be a medium-sized string. 2/4 of the input field width.
 	//  - "large": The value is expected to be a large string. 3/4 of the input field width.
 	//  - "full": The value is expected to be a very large string. 4/4 of the input field (this will be a textarea) width.
 	// For now this should not be overcomplicated.