From fefb4ecee937ee27facd43f19150afcc18426902 Mon Sep 17 00:00:00 2001 From: Tod Beardsley Date: Fri, 1 Aug 2025 16:11:41 -0500 Subject: [PATCH] Encourage longer descriptions Call me crazy, but I think a single character for a description isn't particularly useful. Let's say 5 characters. CWE-1 is five characters. --- schema/CVE_Record_Format.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schema/CVE_Record_Format.json b/schema/CVE_Record_Format.json index aaf5f5adb7c..efc6fd06ae4 100644 --- a/schema/CVE_Record_Format.json +++ b/schema/CVE_Record_Format.json @@ -788,7 +788,7 @@ "value": { "type": "string", "description": "Plain text description.", - "minLength": 1, + "minLength": 5, "maxLength": 4096 }, "supportingMedia": { @@ -823,7 +823,7 @@ "value": { "type": "string", "description": "Supporting media content, up to 16K. If base64 is true, this field stores base64 encoded data.", - "minLength": 1, + "minLength": 5, "maxLength": 16384 } },