CPER JSON Schema Descriptions

Descriptions populated based on UEFI Appendix N in JSON Schemas

Change-Id: I765ec81913567ba7f32c39fdbd901483d9d78e21
Signed-off-by: Andrew Adriance <aadriance@nvidia.com>
diff --git a/specification/json/sections/cper-firmware.json b/specification/json/sections/cper-firmware.json
index 7fc7955..7169d45 100644
--- a/specification/json/sections/cper-firmware.json
+++ b/specification/json/sections/cper-firmware.json
@@ -1,21 +1,26 @@
 {
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
+    "description": "Firmware Error Record Reference",
     "required": ["errorRecordType", "revision", "recordID", "recordIDGUID"],
     "additionalProperties": false,
     "properties": {
         "errorRecordType": {
             "type": "object",
+            "description": "Identifies the type of firmware error record that is referenced by this section",
             "$ref": "./common/cper-json-nvp.json"
         },
         "revision": {
-            "type": "integer"
+            "type": "integer",
+            "description": "Indicates the Header Revision"
         },
         "recordID": {
-            "type": "integer"
+            "type": "integer",
+            "description": "This value uniquely identifies the firmware error record referenced by this section."
         },
         "recordIDGUID": {
-            "type": "string"
+            "type": "string",
+            "description": "This value uniquely identifies the firmware error record referenced by this section."
         }
     }
 }