Fix required fields

Change-Id: Ic0cc2dbf0a53d8be7144f4c4c9eea1566c986309
Signed-off-by: Ed Tanous <etanous@nvidia.com>
diff --git a/specification/json/common/cper-json-error-status.json b/specification/json/common/cper-json-error-status.json
index f86884a..592354f 100644
--- a/specification/json/common/cper-json-error-status.json
+++ b/specification/json/common/cper-json-error-status.json
@@ -17,7 +17,7 @@
         "errorType": {
             "type": "object",
             "description": "Encoded value for the Error_Type",
-            "required": ["name", "value", "description"],
+            "required": ["name", "value"],
             "properties": {
                 "name": {
                     "type": "string"
diff --git a/specification/json/common/cper-json-nvp.json b/specification/json/common/cper-json-nvp.json
index 0b19c15..11a32c9 100644
--- a/specification/json/common/cper-json-nvp.json
+++ b/specification/json/common/cper-json-nvp.json
@@ -2,6 +2,7 @@
     "$id": "cper-json-namevaluepair",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
+    "description": "CPER Name Value Pair",
     "required": ["name", "value"],
     "additionalProperties": false,
     "properties": {
diff --git a/specification/json/sections/cper-ampere.json b/specification/json/sections/cper-ampere.json
index e61b5f4..1a56dcd 100644
--- a/specification/json/sections/cper-ampere.json
+++ b/specification/json/sections/cper-ampere.json
@@ -1,6 +1,7 @@
 {
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
+    "description": "Ampere Processor Error Section",
     "required": ["typeId", "subTypeId", "instanceId"],
     "additionalProperties": false,
     "properties": {
diff --git a/specification/json/sections/cper-ccix-per.json b/specification/json/sections/cper-ccix-per.json
index e708b4b..61734a9 100644
--- a/specification/json/sections/cper-ccix-per.json
+++ b/specification/json/sections/cper-ccix-per.json
@@ -1,6 +1,7 @@
 {
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
+    "description": "CCIX PER Section",
     "required": ["length"],
     "additionalProperties": false,
     "properties": {
diff --git a/specification/json/sections/cper-cxl-protocol.json b/specification/json/sections/cper-cxl-protocol.json
index edc1328..82653c6 100644
--- a/specification/json/sections/cper-cxl-protocol.json
+++ b/specification/json/sections/cper-cxl-protocol.json
@@ -53,14 +53,7 @@
         "deviceID": {
             "type": "object",
             "description": "Provides devices specific identifies.",
-            "required": [
-                "vendorID",
-                "deviceID",
-                "subsystemVendorID",
-                "subsystemDeviceID",
-                "classCode",
-                "slotNumber"
-            ],
+            "required": [],
             "properties": {
                 "vendorID": {
                     "type": "integer"
diff --git a/specification/json/sections/cper-ia32x64-processor.json b/specification/json/sections/cper-ia32x64-processor.json
index ecf203e..fd9a13e 100644
--- a/specification/json/sections/cper-ia32x64-processor.json
+++ b/specification/json/sections/cper-ia32x64-processor.json
@@ -1,6 +1,7 @@
 {
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
+    "description": "IA32x64 Processor Error Section",
     "required": ["processorErrorInfoNum", "processorContextInfoNum"],
     "additionalProperties": false,
     "properties": {
diff --git a/specification/json/sections/cper-iommu-dmar.json b/specification/json/sections/cper-iommu-dmar.json
index 47a4aaa..e74f914 100644
--- a/specification/json/sections/cper-iommu-dmar.json
+++ b/specification/json/sections/cper-iommu-dmar.json
@@ -1,6 +1,7 @@
 {
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
+    "description": "IOMMUDMAR Section",
     "required": [
         "revision",
         "controlRegister",
diff --git a/specification/json/sections/cper-memory.json b/specification/json/sections/cper-memory.json
index b57beee..8b7179e 100644
--- a/specification/json/sections/cper-memory.json
+++ b/specification/json/sections/cper-memory.json
@@ -1,6 +1,7 @@
 {
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
+    "description": "Memory Error Section",
     "required": [],
     "additionalProperties": false,
     "properties": {
@@ -45,7 +46,7 @@
         },
         "extended": {
             "type": "object",
-            "required": ["rowBit16", "rowBit17", "chipIdentification"],
+            "required": ["rowBit16", "rowBit17"],
             "properties": {
                 "rowBit16": {
                     "type": "boolean"
diff --git a/specification/json/sections/cper-memory2.json b/specification/json/sections/cper-memory2.json
index e5fbc38..379e55a 100644
--- a/specification/json/sections/cper-memory2.json
+++ b/specification/json/sections/cper-memory2.json
@@ -1,6 +1,7 @@
 {
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
+    "description": "Memory2 Error Section",
     "required": [],
     "additionalProperties": false,
     "properties": {
diff --git a/specification/json/sections/cper-nvidia.json b/specification/json/sections/cper-nvidia.json
index 5b04583..4ae4a40 100644
--- a/specification/json/sections/cper-nvidia.json
+++ b/specification/json/sections/cper-nvidia.json
@@ -1,6 +1,7 @@
 {
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
+    "description": "NVIDIA Processor Error Section",
     "required": [
         "signature",
         "errorType",
diff --git a/specification/json/sections/cper-pci-bus.json b/specification/json/sections/cper-pci-bus.json
index 9e6a26f..ae8f426 100644
--- a/specification/json/sections/cper-pci-bus.json
+++ b/specification/json/sections/cper-pci-bus.json
@@ -1,6 +1,7 @@
 {
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
+    "description": "PCI Bus Error Section",
     "required": [],
     "additionalProperties": false,
     "properties": {
diff --git a/specification/json/sections/cper-pci-component.json b/specification/json/sections/cper-pci-component.json
index 187e50f..65f3489 100644
--- a/specification/json/sections/cper-pci-component.json
+++ b/specification/json/sections/cper-pci-component.json
@@ -1,6 +1,7 @@
 {
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
+    "description": "PCI Component Error Section",
     "required": [],
     "additionalProperties": false,
     "properties": {