From 575f0d4611db1977eeef59c3b184643421a730c1 Mon Sep 17 00:00:00 2001 From: Tod Beardsley <136480697+todb-cisa@users.noreply.github.com> Date: Wed, 18 Dec 2024 14:50:47 -0600 Subject: [PATCH 1/2] Document CVD ID format in CVE_Record_Format.json --- schema/CVE_Record_Format.json | 1 + 1 file changed, 1 insertion(+) diff --git a/schema/CVE_Record_Format.json b/schema/CVE_Record_Format.json index aaf5f5adb7..c1c9c751c3 100644 --- a/schema/CVE_Record_Format.json +++ b/schema/CVE_Record_Format.json @@ -51,6 +51,7 @@ }, "cveId": { "type": "string", + "description":"The official CVE identifier contains the string 'CVE' , followed by the year, followed by a 4 to 19 digit number. Note that the year-part of the identifier should indicate either the year the vulnerability was discovered, or the year the CVE ID is published in. CVE IDs must be unique." "pattern": "^CVE-[0-9]{4}-[0-9]{4,19}$" }, "cpe22and23": { From 569f1e06f4f18ad76f1d8e1285570369c663d8fc Mon Sep 17 00:00:00 2001 From: Tod Beardsley <136480697+todb-cisa@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:07:37 -0600 Subject: [PATCH 2/2] trailing comma oops --- schema/CVE_Record_Format.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema/CVE_Record_Format.json b/schema/CVE_Record_Format.json index c1c9c751c3..3e74fca5ef 100644 --- a/schema/CVE_Record_Format.json +++ b/schema/CVE_Record_Format.json @@ -51,7 +51,7 @@ }, "cveId": { "type": "string", - "description":"The official CVE identifier contains the string 'CVE' , followed by the year, followed by a 4 to 19 digit number. Note that the year-part of the identifier should indicate either the year the vulnerability was discovered, or the year the CVE ID is published in. CVE IDs must be unique." + "description":"The official CVE identifier contains the string 'CVE', followed by the year, followed by a 4 to 19 digit number. Note that the year-part of the identifier should indicate either the year the vulnerability was discovered, or the year the CVE ID is published in. CVE IDs must be unique.", "pattern": "^CVE-[0-9]{4}-[0-9]{4,19}$" }, "cpe22and23": {