Fix minor errors in spec, add JSON specification.
diff --git a/.gitignore b/.gitignore
index c529082..1e16a39 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,12 +9,12 @@
 CPackSourceConfig.cmake
 Makefile
 *.bin
-specification/*.out
-specification/*.pdf
-specification/*.toc
-specification/*.lot
-specification/*.log
-specification/*.fls
-specification/*.fdb_*
-specification/*.*gz
-specification/*aux
\ No newline at end of file
+specification/document/*.out
+specification/document/*.pdf
+specification/document/*.toc
+specification/document/*.lot
+specification/document/*.log
+specification/document/*.fls
+specification/document/*.fdb_*
+specification/document/*.*gz
+specification/document/*aux
\ No newline at end of file
diff --git a/sections/cper-section-generic.h b/sections/cper-section-generic.h
index 2b548b6..78c5705 100644
--- a/sections/cper-section-generic.h
+++ b/sections/cper-section-generic.h
@@ -14,7 +14,7 @@
 #define GENERIC_OPERATION_TYPES_VALUES (const char*[]){"Unknown or generic", "Data Read", "Data Write", "Instruction Execution"}
 #define GENERIC_VALIDATION_BITFIELD_NAMES (const char*[]) \
     {"processorTypeValid", "processorISAValid", "processorErrorTypeValid", "operationValid", "flagsValid" \
-    "levelValid", "cpuVersionValid", "cpuBrandInfoValid", "cpuIDValid", "targetAddressValid", "requesterIDValid" \
+    "levelValid", "cpuVersionValid", "cpuBrandInfoValid", "cpuIDValid", "targetAddressValid", "requestorIDValid" \
     "responderIDValid", "instructionIPValid"}
 #define GENERIC_FLAGS_BITFIELD_NAMES (const char*[]) \
     {"restartable", "preciseIP", "overflow", "corrected"}
diff --git a/specification/cper-json-specification.tex b/specification/document/cper-json-specification.tex
similarity index 98%
rename from specification/cper-json-specification.tex
rename to specification/document/cper-json-specification.tex
index e534d52..a1591b5 100644
--- a/specification/cper-json-specification.tex
+++ b/specification/document/cper-json-specification.tex
@@ -47,7 +47,7 @@
  in a human-readable JSON format, intended to be interoperable with standard CPER binary.
 \\\\
 The C library released with this specification allows for the conversion between UEFI CPER records, an intermediate format, and the JSON structures
-defined in this document.
+defined in this document. There is also a comprehensive JSON schema\footnote{As defined by \href{https://json-schema.org/draft/2020-12/json-schema-core.html}{JSON schema Draft (2020/12)}} included within the same repository, at \texttt{specification/json}.
 
 % Specification section.
 \chapter{Main Structure Specification}
@@ -241,7 +241,7 @@
 % Generic processor error section.
 \section{Generic Processor Error Section}
 \label{section:genericprocessorerrorsection}
-This section describes the JSON format for a single Generic Processor Error Section from a CPER record. The GUID used for Generic Processor Error Sections is \texttt{\{x9876CCAD, 0x47B4, 0x4bdb, \{0xB6, 0x5E, 0x16, 0xF1, 0x93, 0xC4, 0xF3, 0xDB\}\}}.
+This section describes the JSON format for a single Generic Processor Error Section from a CPER record. The GUID used for Generic Processor Error Sections is \texttt{\{0x9876CCAD, 0x47B4, 0x4bdb, \{0xB6, 0x5E, 0x16, 0xF1, 0x93, 0xC4, 0xF3, 0xDB\}\}}.
 \jsontable{table:genericprocessorerrorsection}
 validationBits & object & A Generic Processor Error Validation Structure, as described in Subsection \ref{subsection:genericprocessorvalidationstructure}.\\
 \hline
@@ -301,7 +301,7 @@
 \hline
 targetAddressValid & boolean & Whether the "targetAddress" field of the Generic Processor Error section (\ref{section:genericprocessorerrorsection}) is valid.\\
 \hline
-requesterIDValid & boolean & Whether the "requesterID" field of the Generic Processor Error section (\ref{section:genericprocessorerrorsection}) is valid.\\
+requestorIDValid & boolean & Whether the "requestorID" field of the Generic Processor Error section (\ref{section:genericprocessorerrorsection}) is valid.\\
 \hline
 responderIDValid & boolean & Whether the "responderID" field of the Generic Processor Error section (\ref{section:genericprocessorerrorsection}) is valid.\\
 \hline
@@ -345,7 +345,7 @@
 \jsontable{table:ia32x64processorflagsstructure}
 localAPICIDValid & boolean & Whether the "localAPICID" field of the IA32/x64 Error section (\ref{section:ia32x64errorsection}) is valid.\\
 \hline
-cpuIDInfoValid & boolean & Whether the "cpuIDInfo" field of the IA32/x64 Error section (\ref{section:ia32x64errorsection}) is valid.\\ 
+cpuIDInfoValid & boolean & Whether the "cpuidInfo" field of the IA32/x64 Error section (\ref{section:ia32x64errorsection}) is valid.\\ 
 \hline
 processorErrorInfoNum & int & The number of IA32/x64 Processor Error Info Structures (\ref{subsection:ia32x64processorerrorinfostructure}) that are included with this error section.\\
 \hline
@@ -695,7 +695,7 @@
 \label{section:armprocessorerrorsection}
 This section describes the JSON format for a single ARM Processor Error Section from a CPER record. The GUID used for ARM Processor Error Sections is \texttt{\{ 0xe19e3d16, 0xbc11, 0x11e4, \{ 0x9c, 0xaa, 0xc2, 0x05, 0x1d, 0x5d, 0x46, 0xb0 \}\}}.
 \jsontable{table:armprocessorerrorsection}
-validationBits & object & An ARM Processor Error Validation structure, as defined in Subsection .\\
+validationBits & object & An ARM Processor Error Validation structure, as defined in Subsection \ref{subsection:armprocessorerrorvalidationstructure}.\\
 \hline
 errorInfoNum & int & The number of error info structures attached to this error.\\
 \hline
@@ -718,7 +718,7 @@
 \hline
 contextInfo & array & Array of ARM Processor Context Info structures, as defined in Subsection \ref{subsection:armprocessorcontextinfostructure}.\\
 \hline
-vendorSpecificInfo.data & string & A base64-encoded binary representation of any attached vendor specific information.\\
+vendorSpecificInfo.data & string (\textbf{optional}) & If it exists, a base64-encoded binary representation of any attached vendor specific information.\\
 \jsontableend{ARM Processor Error structure field table.}
 
 % ARM Processor Error Validation structure
@@ -1497,7 +1497,7 @@
 commandStatus.commandRegister & uint64 & The PCI command register value.\\
 commandStatus.statusRegister & uint64 & The PCI status register value.\\
 \hline
-deviceID & object & A PCIe Device ID structure as defined in Subsection \ref{pciedeviceidstructure}.\\
+deviceID & object & A PCIe Device ID structure as defined in Subsection \ref{subsection:pciedeviceidstructure}.\\
 \hline
 deviceSerialNumber & uint64 & The serial number of the device.\\
 \hline
@@ -1523,7 +1523,7 @@
 \hline
 deviceIDValid & boolean & Whether the "deviceID" field within a PCIe Error section (\ref{section:pcieerrorsection}) is valid.\\
 \hline
-deviceSerialNumber & boolean & Whether the "deviceSerialNumber" field within a PCIe Error section (\ref{section:pcieerrorsection}) is valid.\\
+deviceSerialNumberValid & boolean & Whether the "deviceSerialNumber" field within a PCIe Error section (\ref{section:pcieerrorsection}) is valid.\\
 \hline
 bridgeControlStatusValid & boolean & Whether the "bridgeControlStatus" field within a PCIe Error section (\ref{section:pcieerrorsection}) is valid.\\
 \hline
@@ -1572,7 +1572,9 @@
 \hline
 uncorrectableErrorSeverityRegister & uint64 & The uncorrectable error severity register value.\\
 \hline
-uncorrectableErrorMaskRegister & uint64 & The uncorrectable error mask register value.\\
+correctableErrorStatusRegister & uint64 & The correctable error status register value.\\
+\hline
+correctableErrorMaskRegister & uint64 & The correctable error mask register value.\\
 \hline
 aeccReg & uint64 & The AECC register value.\\
 \hline
@@ -1646,6 +1648,8 @@
 \jsontable{table:pcicomponenterrorsection}
 validationBits & object & A PCI/PCI-X Component Error Validation structure, as defined in Subsection \ref{subsection:pcicomponenterrorvalidationstructure}.\\
 \hline
+errorStatus & object & A CPER Generic Error Status structure, as described in Subsection \ref{subsection:genericerrorstatusstructure}.\\
+\hline
 idInfo & object & A PCI/PCI-X Component ID structure, as defined in Subsection \ref{subsection:pcicomponentidstructure}.\\
 \hline
 memoryNumber & uint64 & The number of PCI/PCI-X component memory mapped register address/data pair values are present in this structure.\\
@@ -1762,7 +1766,7 @@
 \hline
 faultStatusRegister & uint64 & Value of VT-d fault status register.\\
 \hline
-faultRecord & object & A VT-d DMAR Fault Record structure, as defined in Subsection .\\
+faultRecord & object & A VT-d DMAR Fault Record structure, as defined in Subsection \ref{subsection:vtddmarfaultrecordstructure}.\\
 \hline
 rootEntry & string & A base64-represented binary dump of the root entry table for the associated requester ID.\\
 \hline
@@ -1841,7 +1845,7 @@
 \jsontable{table:ccixpererrorsection}
 length & uint64 & The length (in bytes) of the entire structure.\\
 \hline
-validationBits & object & A CCIX PER Validation structure as described in Subsection \ref{subsection:vtddmarfaultrecordstructure}.\\
+validationBits & object & A CCIX PER Validation structure as described in Subsection \ref{subsection:ccixpervalidationstructure}.\\
 \hline
 ccixSourceID & int & If the agent is an HA, SA, or RA, this indicates the CCIX Agent ID of the reporting component. Otherwise, this is the CCIX Device ID.\\
 \hline
@@ -1876,7 +1880,7 @@
 \hline
 deviceID & object & A CXL Device ID structure, as defined in Subsection \ref{subsection:cxlprotocoldeviceidstructure}.\\
 \hline
-deviceSerial & object (\textbf{optional}) & The CXL device serial number. Only included if the detecting device is a CXL device (field \texttt{agentType.value} has value 0).\\
+deviceSerial & uint64 (\textbf{optional}) & The CXL device serial number. Only included if the detecting device is a CXL device (field \texttt{agentType.value} has value 0).\\
 \hline
 capabilityStructure & string & A base64-encoded binary dump of the CXL device's PCIe capability structure. This could either be a PCIe 1.1 Capability Structure (36-byte, padded to 60 bytes), or a PCIe 2.0 Capability Structure (60-byte). Only included if the detecting device is a CXL device (field \texttt{agentType.value} has value 0).\\
 \hline
@@ -1898,7 +1902,7 @@
 \hline
 cxlAgentAddressValid & boolean & Whether the "cxlAgentAddress" field in the CXL Protocol Error section (\ref{section:cxlprotocolerrorsection}) is valid.\\
 \hline
-deviceID & boolean & Whether the "deviceID" field in the CXL Protocol Error section (\ref{section:cxlprotocolerrorsection}) is valid.\\
+deviceIDValid & boolean & Whether the "deviceID" field in the CXL Protocol Error section (\ref{section:cxlprotocolerrorsection}) is valid.\\
 \hline
 deviceSerialValid & boolean & Whether the "deviceSerial" field in the CXL Protocol Error section (\ref{section:cxlprotocolerrorsection}) is valid.\\
 \hline
diff --git a/specification/json/common/cper-json-error-status.json b/specification/json/common/cper-json-error-status.json
new file mode 100644
index 0000000..4db531c
--- /dev/null
+++ b/specification/json/common/cper-json-error-status.json
@@ -0,0 +1,45 @@
+{
+    "$id": "cper-json-error-status",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["errorType", "addressSignal", "controlSignal", "dataSignal", "detectedByResponder", "detectedByRequester", "firstError", "overflowDroppedLogs"],
+    "additionalProperties": false,
+    "properties": {
+        "errorType": {
+            "type": "object",
+            "required": ["name", "value", "description"],
+            "properties": {
+                "name": {
+                    "type": "string"
+                },
+                "value": {
+                    "type": "integer"
+                },
+                "description": {
+                    "type": "string"
+                }
+            }
+        },
+        "addressSignal": {
+            "type": "boolean"
+        },
+        "controlSignal": {
+            "type": "boolean"
+        },
+        "dataSignal": {
+            "type": "boolean"
+        },
+        "detectedByResponder": {
+            "type": "boolean"
+        },
+        "detectedByRequester": {
+            "type": "boolean"
+        },
+        "firstError": {
+            "type": "boolean"
+        },
+        "overflowDroppedLogs": {
+            "type": "boolean"
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/common/cper-json-nvp.json b/specification/json/common/cper-json-nvp.json
new file mode 100644
index 0000000..6e57c90
--- /dev/null
+++ b/specification/json/common/cper-json-nvp.json
@@ -0,0 +1,15 @@
+{
+    "$id": "cper-json-namevaluepair",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["name", "value"],
+    "additionalProperties": false,
+    "properties": {
+        "name": {
+            "type": "string"
+        },
+        "value": {
+            "type": "integer"
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/cper-json-header.json b/specification/json/cper-json-header.json
new file mode 100644
index 0000000..68a9387
--- /dev/null
+++ b/specification/json/cper-json-header.json
@@ -0,0 +1,97 @@
+{
+    "$id": "cper-json-header",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["revision", "sectionCount", "severity", "validationBits", "recordLength", "creatorID", "notificationType", "recordID", "flags", "persistenceInfo"],
+    "additionalProperties": false,
+    "properties": {
+        "revision": {
+            "type": "object",
+            "required": ["major", "minor"],
+            "properties": {
+                "major": {
+                    "type": "integer",
+                    "minimum": 0
+                },
+                "minor": {
+                    "type": "integer",
+                    "minimum": 0
+                }
+            }
+        },
+        "sectionCount": {
+            "type": "integer",
+            "minimum": 0
+        },
+        "severity": {
+            "type": "object",
+            "required": ["name", "code"],
+            "properties": {
+                "name": {
+                    "type": "string"
+                },
+                "code": {
+                    "type": "integer",
+                    "minimum": 0
+                }
+            }
+        },
+        "validationBits": {
+            "type": "object",
+            "required": ["platformIDValid", "timestampValid", "partitionIDValid"],
+            "properties": {
+                "platformIDValid": {
+                    "type": "boolean"
+                },
+                "timestampValid": {
+                    "type": "boolean"
+                },
+                "partitionIDValid": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "recordLength": {
+            "type": "integer",
+            "minimum": 0
+        },
+        "timestamp": {
+            "type": "string"
+        },
+        "timestampIsPrecise": {
+            "type": "boolean"
+        },
+        "platformID": {
+            "type": "string"
+        },
+        "partitionID": {
+            "type": "string"
+        },
+        "creatorID": {
+            "type": "string"
+        },
+        "notificationType": {
+            "type": "object",
+            "required": ["guid", "type"],
+            "properties": {
+                "guid": {
+                    "type": "string",
+                    "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{16}$"
+                },
+                "type": {
+                    "type": "string"
+                }
+            }
+        },
+        "recordID": {
+            "type": "integer"
+        },
+        "flags": {
+            "type": "object",
+            "$ref": "./common/cper-json-nvp.json"
+        },
+        "persistenceInfo": {
+            "type": "integer"
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/cper-json-section-descriptor.json b/specification/json/cper-json-section-descriptor.json
new file mode 100644
index 0000000..6148a5b
--- /dev/null
+++ b/specification/json/cper-json-section-descriptor.json
@@ -0,0 +1,103 @@
+{
+    "$id": "cper-json-section-descriptor",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["sectionOffset", "sectionLength", "revision", "validationBits", "flags", "sectionType", "severity"],
+    "additionalProperties": false,
+    "properties": {
+        "sectionOffset": {
+            "type": "integer"
+        },
+        "sectionLength": {
+            "type": "integer"
+        },
+        "revision": {
+            "type": "object",
+            "required": ["major", "minor"],
+            "properties": {
+                "major": {
+                    "type": "integer",
+                    "minimum": 0
+                },
+                "minor": {
+                    "type": "integer",
+                    "minimum": 0
+                }
+            }
+        },
+        "validationBits": {
+            "type": "object",
+            "required": ["fruIDValid", "fruStringValid"],
+            "properties": {
+                "fruIDValid": {
+                    "type": "boolean"
+                },
+                "fruStringValid": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "flags": {
+            "type": "object",
+            "required": ["primary", "containmentWarning", "reset", "errorThresholdExceeded", "resourceNotAccessible", "latentError", "propagated", "overflow"],
+            "properties": {
+                "primary": {
+                    "type": "boolean"
+                },
+                "containmentWarning": {
+                    "type": "boolean"
+                },
+                "reset": {
+                    "type": "boolean"
+                },
+                "errorThresholdExceeded": {
+                    "type": "boolean"
+                },
+                "resourceNotAccessible": {
+                    "type": "boolean"
+                },
+                "latentError": {
+                    "type": "boolean"
+                },
+                "propagated": {
+                    "type": "boolean"
+                },
+                "overflow": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "sectionType": {
+            "type": "object",
+            "required": ["data", "name"],
+            "properties": {
+                "data": {
+                    "type": "string",
+                    "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{16}$"
+                },
+                "name": {
+                    "type": "string"
+                }
+            }
+        },
+        "fruID": {
+            "type": "string"
+        },
+        "severity": {
+            "type": "object",
+            "required": ["code", "name"],
+            "properties": {
+                "code": {
+                    "type": "integer",
+                    "minimum": 0
+                },
+                "name": {
+                    "type": "string"
+                }
+            }
+        },
+        "fruText": {
+            "type": "string"
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/cper-json.json b/specification/json/cper-json.json
new file mode 100644
index 0000000..e0e7133
--- /dev/null
+++ b/specification/json/cper-json.json
@@ -0,0 +1,43 @@
+{
+    "$id": "cper-json",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "description": "JSON Schema for the CPER-JSON format, as described in the CPER-JSON specification document.",
+    "type": "object",
+    "required": ["header", "sectionDescriptors", "sections"],
+    "additionalProperties": false,
+    "properties": {
+        "header": {
+            "$ref": "./cper-json-header.json"
+        },
+        "sectionDescriptors": {
+            "type": "array",
+            "items": {
+                "type": "object",
+                "$ref": "./cper-json-section-descriptor.json"
+            }
+        },
+        "sections": {
+            "type": "array",
+            "items": {
+                "type": "object",
+                "oneOf": [
+                    { "$ref": "./sections/cper-generic-processor.json" },
+                    { "$ref": "./sections/cper-ia32x64-processor.json" },
+                    { "$ref": "./sections/cper-arm-processor.json" },
+                    { "$ref": "./sections/cper-memory.json" },
+                    { "$ref": "./sections/cper-memory2.json" },
+                    { "$ref": "./sections/cper-pcie.json" },
+                    { "$ref": "./sections/cper-pci-bus.json" },
+                    { "$ref": "./sections/cper-pci-component.json" },
+                    { "$ref": "./sections/cper-firmware.json" },
+                    { "$ref": "./sections/cper-generic-dmar.json" },
+                    { "$ref": "./sections/cper-vtd-dmar.json" },
+                    { "$ref": "./sections/cper-iommu-dmar.json" },
+                    { "$ref": "./sections/cper-ccix-per.json" },
+                    { "$ref": "./sections/cper-cxl-protocol.json" },
+                    { "$ref": "./sections/cper-cxl-component.json" }
+                ]
+            }
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-arm-processor.json b/specification/json/sections/cper-arm-processor.json
new file mode 100644
index 0000000..55b1dbc
--- /dev/null
+++ b/specification/json/sections/cper-arm-processor.json
@@ -0,0 +1,523 @@
+{
+    "$id": "cper-json-arm-processor-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["validationBits", "errorInfoNum", "contextInfoNum", "sectionLength", "errorAffinity", "mpidrEl1", "midrEl1", "running", "errorInfo", "contextInfo"],
+    "additionalProperties": false,
+    "properties": {
+        "validationBits": {
+            "type": "object",
+            "required": ["mpidrValid", "errorAffinityLevelValid", "runningStateValid", "vendorSpecificInfoValid"],
+            "properties": {
+                "mpidrValid": {
+                    "type": "boolean"
+                },
+                "errorAffinityLevelValid": {
+                    "type": "boolean"
+                },
+                "runningStateValid": {
+                    "type": "boolean"
+                },
+                "vendorSpecificInfoValid": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "errorInfoNum": {
+            "type": "integer"
+        },
+        "contextInfoNum": {
+            "type": "integer"
+        },
+        "sectionLength": {
+            "type": "integer"
+        },
+        "errorAffinity": {
+            "type": "object",
+            "required": ["value", "type"],
+            "properties": {
+                "value": {
+                    "type": "integer"
+                },
+                "type": {
+                    "type": "string"
+                }
+            }
+        },
+        "mpidrEl1": {
+            "type": "integer"
+        },
+        "midrEl1": {
+            "type": "integer"
+        },
+        "running": {
+            "type": "boolean"
+        },
+        "psciState": {
+            "type": "integer"
+        },
+        "errorInfo": {
+            "type": "array",
+            "items": {
+                "type": "object",
+                "required": ["version", "length", "validationBits", "errorType", "multipleError", "flags", "errorInformation", "virtualFaultAddress", "physicalFaultAddress"],
+                "additionalProperties": false,
+                "properties": {
+                    "version": {
+                        "type": "integer"
+                    },
+                    "length": {
+                        "type": "integer"
+                    },
+                    "validationBits": {
+                        "type": "object",
+                        "required": ["multipleErrorValid", "flagsValid", "errorInformationValid", "virtualFaultAddressValid", "physicalFaultAddressValid"],
+                        "properties": {
+                            "multipleErrorValid": {
+                                "type": "boolean"
+                            },
+                            "flagsValid": {
+                                "type": "boolean"
+                            },
+                            "errorInformationValid": {
+                                "type": "boolean"
+                            },
+                            "virtualFaultAddressValid": {
+                                "type": "boolean"
+                            },
+                            "physicalFaultAddressValid": {
+                                "type": "boolean"
+                            }
+                        }
+                    },
+                    "errorType": {
+                        "type": "object",
+                        "$ref": "../common/cper-json-nvp.json"
+                    },
+                    "multipleError": {
+                        "type": "object",
+                        "$ref": "../common/cper-json-nvp.json"
+                    },
+                    "flags": {
+                        "type": "object",
+                        "required": ["firstErrorCaptured", "lastErrorCaptured", "propagated", "overflow"],
+                        "properties": {
+                            "firstErrorCaptured": {
+                                "type": "boolean"
+                            },
+                            "lastErrorCaptured": {
+                                "type": "boolean"
+                            },
+                            "propagated": {
+                                "type": "boolean"
+                            },
+                            "overflow": {
+                                "type": "boolean"
+                            }
+                        }
+                    },
+                    "errorInformation": {
+                        "type": "object",
+                        "oneOf": [
+                            {
+                                "type": "object",
+                                "required": ["validationBits", "transactionType", "operation", "level", "processorContextCorrupt", "corrected", "precisePC", "restartablePC"],
+                                "additionalProperties": false,
+                                "properties": {
+                                    "validationBits": {
+                                        "type": "object",
+                                        "required": ["transactionTypeValid", "operationValid", "levelValid", "processorContextCorruptValid", "correctedValid", "precisePCValid", "restartablePCValid"],
+                                        "properties": {
+                                            "transactionTypeValid": {
+                                                "type": "boolean"
+                                            },
+                                            "operationValid": {
+                                                "type": "boolean"
+                                            },
+                                            "levelValid": {
+                                                "type": "boolean"
+                                            },
+                                            "processorContextCorruptValid": {
+                                                "type": "boolean"
+                                            },
+                                            "correctedValid": {
+                                                "type": "boolean"
+                                            },
+                                            "precisePCValid": {
+                                                "type": "boolean"
+                                            },
+                                            "restartablePCValid": {
+                                                "type": "boolean"
+                                            }
+                                        }
+                                    },
+                                    "transactionType": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "operation": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "level": {
+                                        "type": "integer"
+                                    },
+                                    "processorContextCorrupt": {
+                                        "type": "boolean"
+                                    },
+                                    "corrected": {
+                                        "type": "boolean"
+                                    },
+                                    "precisePC": {
+                                        "type": "boolean"
+                                    },
+                                    "restartablePC": {
+                                        "type": "boolean"
+                                    }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": ["validationBits", "transactionType", "operation", "level", "processorContextCorrupt", "corrected", "precisePC", "restartablePC", "timedOut", "participationType", "addressSpace", "memoryAttributes", "accessMode"],
+                                "additionalProperties": false,
+                                "properties": {
+                                    "validationBits": {
+                                        "type": "object",
+                                        "required": ["transactionTypeValid", "operationValid", "levelValid", "processorContextCorruptValid", "correctedValid", "precisePCValid", "restartablePCValid", "participationTypeValid", "timedOutValid", "addressSpaceValid", "memoryAttributesValid", "accessModeValid"],
+                                        "properties": {
+                                            "transactionTypeValid": {
+                                                "type": "boolean"
+                                            },
+                                            "operationValid": {
+                                                "type": "boolean"
+                                            },
+                                            "levelValid": {
+                                                "type": "boolean"
+                                            },
+                                            "processorContextCorruptValid": {
+                                                "type": "boolean"
+                                            },
+                                            "correctedValid": {
+                                                "type": "boolean"
+                                            },
+                                            "precisePCValid": {
+                                                "type": "boolean"
+                                            },
+                                            "restartablePCValid": {
+                                                "type": "boolean"
+                                            },
+                                            "participationTypeValid": {
+                                                "type": "boolean"
+                                            },
+                                            "timedOutValid": {
+                                                "type": "boolean"
+                                            },
+                                            "addressSpaceValid": {
+                                                "type": "boolean"
+                                            },
+                                            "memoryAttributesValid": {
+                                                "type": "boolean"
+                                            },
+                                            "accessModeValid": {
+                                                "type": "boolean"
+                                            }
+                                        }
+                                    },
+                                    "transactionType": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "operation": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "level": {
+                                        "type": "integer"
+                                    },
+                                    "processorContextCorrupt": {
+                                        "type": "boolean"
+                                    },
+                                    "corrected": {
+                                        "type": "boolean"
+                                    },
+                                    "precisePC": {
+                                        "type": "boolean"
+                                    },
+                                    "restartablePC": {
+                                        "type": "boolean"
+                                    },
+                                    "timedOut": {
+                                        "type": "boolean"
+                                    },
+                                    "participationType": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "addressSpace": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "accessMode": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "memoryAttributes": {
+                                        "type": "integer"
+                                    }
+                                }
+                            }
+                        ]
+                    },
+                    "virtualFaultAddress": {
+                        "type": "integer"
+                    },
+                    "physicalFaultAddress": {
+                        "type": "integer"
+                    }
+                }
+            }
+        },
+        "contextInfo": {
+            "type": "array",
+            "items": {
+                "type": "object",
+                "required": ["registerContextType", "registerArraySize", "registerArray"],
+                "additionalProperties": false,
+                "properties": {
+                    "registerContextType": {
+                        "type": "object",
+                        "$ref": "../common/cper-json-nvp.json"
+                    },
+                    "registerArraySize": {
+                        "type": "integer"
+                    },
+                    "registerArray": {
+                        "type": "object",
+                        "oneOf": [
+                            {
+                                "type": "object",
+                                "required": ["r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", "r11", "r12", "r13_sp", "r14_lr", "r15_pc"],
+                                "properties": {
+                                    "r0": { "type": "integer" },
+                                    "r1": { "type": "integer" },
+                                    "r2": { "type": "integer" },
+                                    "r3": { "type": "integer" },
+                                    "r4": { "type": "integer" },
+                                    "r5": { "type": "integer" },
+                                    "r6": { "type": "integer" },
+                                    "r7": { "type": "integer" },
+                                    "r8": { "type": "integer" },
+                                    "r9": { "type": "integer" },
+                                    "r10": { "type": "integer" },
+                                    "r11": { "type": "integer" },
+                                    "r12": { "type": "integer" },
+                                    "r13_sp": { "type": "integer" },
+                                    "r14_lr": { "type": "integer" },
+                                    "r15_pc": { "type": "integer" }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": ["dfar", "dfsr", "ifar", "isr", "mair0", "mair1", "midr", "mpidr", "nmrr", "prrr", "sctlr_ns", "spsr", "spsr_abt", "spsr_fiq", "spsr_irq", "spsr_svc", "spsr_und", "tpidrprw", "tpidruro", "tpidrurw", "ttbcr", "ttbr0", "ttbr1", "dacr"],
+                                "properties": {
+                                    "dfar": { "type": "integer" },
+                                    "dfsr": { "type": "integer" },
+                                    "ifar": { "type": "integer" },
+                                    "isr": { "type": "integer" },
+                                    "mair0": { "type": "integer" },
+                                    "mair1": { "type": "integer" },
+                                    "midr": { "type": "integer" },
+                                    "mpidr": { "type": "integer" },
+                                    "nmrr": { "type": "integer" },
+                                    "prrr": { "type": "integer" },
+                                    "sctlr_ns": { "type": "integer" },
+                                    "spsr": { "type": "integer" },
+                                    "spsr_abt": { "type": "integer" },
+                                    "spsr_fiq": { "type": "integer" },
+                                    "spsr_irq": { "type": "integer" },
+                                    "spsr_svc": { "type": "integer" },
+                                    "spsr_und": { "type": "integer" },
+                                    "tpidrprw": { "type": "integer" },
+                                    "tpidruro": { "type": "integer" },
+                                    "tpidrurw": { "type": "integer" },
+                                    "ttbcr": { "type": "integer" },
+                                    "ttbr0": { "type": "integer" },
+                                    "ttbr1": { "type": "integer" },
+                                    "dacr": { "type": "integer" }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": ["elr_hyp", "hamair0", "hamair1", "hcr", "hcr2", "hdfar", "hifar", "hpfar", "hsr", "htcr", "htpidr", "httbr", "spsr_hyp", "vtcr", "vttbr", "dacr32_el2"],
+                                "properties": {
+                                    "elr_hyp": { "type": "integer" },
+                                    "hamair0": { "type": "integer" },
+                                    "hamair1": { "type": "integer" },
+                                    "hcr": { "type": "integer" },
+                                    "hcr2": { "type": "integer" },
+                                    "hdfar": { "type": "integer" },
+                                    "hifar": { "type": "integer" },
+                                    "hpfar": { "type": "integer" },
+                                    "hsr": { "type": "integer" },
+                                    "htcr": { "type": "integer" },
+                                    "htpidr": { "type": "integer" },
+                                    "httbr": { "type": "integer" },
+                                    "spsr_hyp": { "type": "integer" },
+                                    "vtcr": { "type": "integer" },
+                                    "vttbr": { "type": "integer" },
+                                    "dacr32_el2": { "type": "integer" }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": ["sctlr_s", "spsr_mon"],
+                                "properties": {
+                                    "sctlr_s": { "type": "integer" },
+                                    "spsr_mon": { "type": "integer" }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": ["x0", "x1", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "x17", "x18", "x19", "x20", "x21", "x22", "x23", "x24", "x25", "x26", "x27", "x28", "x29", "x30", "sp"],
+                                "properties": {
+                                    "x0": { "type": "integer" },
+                                    "x1": { "type": "integer" },
+                                    "x2": { "type": "integer" },
+                                    "x3": { "type": "integer" },
+                                    "x4": { "type": "integer" },
+                                    "x5": { "type": "integer" },
+                                    "x6": { "type": "integer" },
+                                    "x7": { "type": "integer" },
+                                    "x8": { "type": "integer" },
+                                    "x9": { "type": "integer" },
+                                    "x10": { "type": "integer" },
+                                    "x11": { "type": "integer" },
+                                    "x12": { "type": "integer" },
+                                    "x13": { "type": "integer" },
+                                    "x14": { "type": "integer" },
+                                    "x15": { "type": "integer" },
+                                    "x16": { "type": "integer" },
+                                    "x17": { "type": "integer" },
+                                    "x18": { "type": "integer" },
+                                    "x19": { "type": "integer" },
+                                    "x20": { "type": "integer" },
+                                    "x21": { "type": "integer" },
+                                    "x22": { "type": "integer" },
+                                    "x23": { "type": "integer" },
+                                    "x24": { "type": "integer" },
+                                    "x25": { "type": "integer" },
+                                    "x26": { "type": "integer" },
+                                    "x27": { "type": "integer" },
+                                    "x28": { "type": "integer" },
+                                    "x29": { "type": "integer" },
+                                    "x30": { "type": "integer" },
+                                    "sp": { "type": "integer" }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": ["elr_el1", "esr_el1", "far_el1", "isr_el1", "mair_el1", "midr_el1", "mpidr_el1", "sctlr_el1", "sp_el0", "sp_el1", "spsr_el1", "tcr_el1", "tpidr_el0", "tpidr_el1", "tpidrro_el0", "ttbr0_el1", "ttbr1_el1"],
+                                "properties": {
+                                    "elr_el1": { "type": "integer" },
+                                    "esr_el1": { "type": "integer" },
+                                    "far_el1": { "type": "integer" },
+                                    "isr_el1": { "type": "integer" },
+                                    "mair_el1": { "type": "integer" },
+                                    "midr_el1": { "type": "integer" },
+                                    "mpidr_el1": { "type": "integer" },
+                                    "sctlr_el1": { "type": "integer" },
+                                    "sp_el0": { "type": "integer" },
+                                    "sp_el1": { "type": "integer" },
+                                    "spsr_el1": { "type": "integer" },
+                                    "tcr_el1": { "type": "integer" },
+                                    "tpidr_el0": { "type": "integer" },
+                                    "tpidr_el1": { "type": "integer" },
+                                    "tpidrro_el0": { "type": "integer" },
+                                    "ttbr0_el1": { "type": "integer" },
+                                    "ttbr1_el1": { "type": "integer" }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": ["elr_el2", "esr_el2", "far_el2", "hacr_el2", "hcr_el2", "hpfar_el2", "mair_el2", "sctlr_el2", "sp_el2", "spsr_el2", "tcr_el2", "tpidr_el2", "ttbr0_el2", "vtcr_el2", "vttbr_el2"],
+                                "properties": {
+                                    "elr_el2": { "type": "integer" },
+                                    "esr_el2": { "type": "integer" },
+                                    "far_el2": { "type": "integer" },
+                                    "hacr_el2": { "type": "integer" },
+                                    "hcr_el2": { "type": "integer" },
+                                    "hpfar_el2": { "type": "integer" },
+                                    "mair_el2": { "type": "integer" },
+                                    "sctlr_el2": { "type": "integer" },
+                                    "sp_el2": { "type": "integer" },
+                                    "spsr_el2": { "type": "integer" },
+                                    "tcr_el2": { "type": "integer" },
+                                    "tpidr_el2": { "type": "integer" },
+                                    "ttbr0_el2": { "type": "integer" },
+                                    "vtcr_el2": { "type": "integer" },
+                                    "vttbr_el2": { "type": "integer" }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": ["elr_el3", "esr_el3", "far_el3", "mair_el3", "sctlr_el3", "sp_el3", "spsr_el3", "tcr_el3", "tpidr_el3", "ttbr0_el3"],
+                                "properties": {
+                                    "elr_el3": { "type": "integer" },
+                                    "esr_el3": { "type": "integer" },
+                                    "far_el3": { "type": "integer" },
+                                    "mair_el3": { "type": "integer" },
+                                    "sctlr_el3": { "type": "integer" },
+                                    "sp_el3": { "type": "integer" },
+                                    "spsr_el3": { "type": "integer" },
+                                    "tcr_el3": { "type": "integer" },
+                                    "tpidr_el3": { "type": "integer" },
+                                    "ttbr0_el3": { "type": "integer" }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": ["mrsEncoding", "value"],
+                                "additionalProperties": false,
+                                "properties": {
+                                    "mrsEncoding": {
+                                        "type": "object",
+                                        "required": ["op2", "crm", "crn", "op1", "o0"],
+                                        "properties": {
+                                            "op2": { "type": "integer" },
+                                            "crm": { "type": "integer" },
+                                            "crn": { "type": "integer" },
+                                            "op1": { "type": "integer" },
+                                            "o0": { "type": "integer" }
+                                        }
+                                    },
+                                    "value": {
+                                        "type": "integer"
+                                    }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": ["data"],
+                                "properties": {
+                                    "data": {
+                                        "type": "string"
+                                    }
+                                }
+                            }
+                        ]
+                    }
+                }
+            }
+        },
+        "vendorSpecificInfo": {
+            "type": "object",
+            "required": ["data"],
+            "additionalProperties": false,
+            "properties": {
+                "data": {
+                    "type": "string"
+                }
+            }
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-ccix-per.json b/specification/json/sections/cper-ccix-per.json
new file mode 100644
index 0000000..f6e95a9
--- /dev/null
+++ b/specification/json/sections/cper-ccix-per.json
@@ -0,0 +1,36 @@
+{
+    "$id": "cper-json-ccix-per-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["length", "validationBits", "ccixSourceID", "ccixPortID", "ccixPERLog"],
+    "additionalProperties": false,
+    "properties": {
+        "length": {
+            "type": "integer"
+        },
+        "validationBits": {
+            "type": "object",
+            "required": ["ccixSourceIDValid", "ccixPortIDValid", "ccixPERLogValid"],
+            "properties": {
+                "ccixSourceIDValid": {
+                    "type": "boolean"
+                },
+                "ccixPortIDValid": {
+                    "type": "boolean"
+                },
+                "ccixPERLogValid": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "ccixSourceID": {
+            "type": "integer"
+        },
+        "ccixPortID": {
+            "type": "integer"
+        },
+        "ccixPERLog": {
+            "type": "string"
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-cxl-component.json b/specification/json/sections/cper-cxl-component.json
new file mode 100644
index 0000000..9cbd2e9
--- /dev/null
+++ b/specification/json/sections/cper-cxl-component.json
@@ -0,0 +1,63 @@
+{
+    "$id": "cper-json-cxl-component-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["validationBits", "deviceID", "deviceSerial"],
+    "additionalProperties": false,
+    "properties": {
+        "validationBits": {
+            "type": "object",
+            "required": ["deviceIDValid", "deviceSerialValid", "cxlComponentEventLogValid"],
+            "properties": {
+                "deviceIDValid": {
+                    "type": "boolean"
+                },
+                "deviceSerialValid": {
+                    "type": "boolean"
+                },
+                "cxlComponentEventLogValid": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "deviceID": {
+            "type": "object",
+            "required": ["vendorID", "deviceID", "functionNumber", "deviceNumber", "busNumber", "segmentNumber", "slotNumber"],
+            "properties": {
+                "vendorID": {
+                    "type": "integer"
+                },
+                "deviceID": {
+                    "type": "integer"
+                },
+                "functionNumber": {
+                    "type": "integer"
+                },
+                "deviceNumber": {
+                    "type": "integer"
+                },
+                "busNumber": {
+                    "type": "integer"
+                },
+                "segmentNumber": {
+                    "type": "integer"
+                },
+                "slotNumber": {
+                    "type": "integer"
+                }
+            }
+        },
+        "deviceSerial": {
+            "type": "integer"
+        },
+        "cxlComponentEventLog": {
+            "type": "object",
+            "required": ["data"],
+            "properties": {
+                "data": {
+                    "type": "string"
+                }
+            }
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-cxl-protocol.json b/specification/json/sections/cper-cxl-protocol.json
new file mode 100644
index 0000000..43ca251
--- /dev/null
+++ b/specification/json/sections/cper-cxl-protocol.json
@@ -0,0 +1,90 @@
+{
+    "$id": "cper-json-cxl-protocol-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["validationBits", "agentType", "agentAddress", "deviceID", "deviceSerial", "capabilityStructure", "dvsecLength", "errorLogLength", "cxlDVSEC", "cxlErrorLog"],
+    "additionalProperties": false,
+    "properties": {
+        "validationBits": {
+            "type": "object",
+            "required": ["cxlAgentTypeValid", "cxlAgentAddressValid", "deviceIDValid", "deviceSerialValid", "capabilityStructureValid", "cxlDVSECValid", "cxlErrorLogValid"],
+            "properties": {
+                "cxlAgentTypeValid": {
+                    "type": "boolean"
+                },
+                "cxlAgentAddressValid": {
+                    "type": "boolean"
+                },
+                "deviceIDValid": {
+                    "type": "boolean"
+                },
+                "deviceSerialValid": {
+                    "type": "boolean"
+                },
+                "capabilityStructureValid": {
+                    "type": "boolean"
+                },
+                "cxlDVSECValid": {
+                    "type": "boolean"
+                },
+                "cxlErrorLogValid": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "agentType": {
+            "type": "object",
+            "$ref": "../common/cper-json-nvp.json"
+        },
+        "agentAddress": {
+            "type": "object",
+            "oneOf": [
+                {
+                    "type": "object",
+                    "required": ["functionNumber", "deviceNumber", "busNumber", "segmentNumber"],
+                    "properties": {
+                        "functionNumber": { 
+                            "type": "integer"
+                        },
+                        "deviceNumber": { 
+                            "type": "integer"
+                        },
+                        "busNumber": { 
+                            "type": "integer"
+                        },
+                        "segmentNumber": { 
+                            "type": "integer"
+                        }
+                    }
+                },
+                {
+                    "type": "object",
+                    "required": ["value"],
+                    "properties": {
+                        "value": {
+                            "type": "integer"
+                        }
+                    }
+                }
+            ]
+        },
+        "deviceSerial": { 
+            "type": "integer"
+        },
+        "capabilityStructure": {
+            "type": "string"
+        },
+        "dvsecLength": { 
+            "type": "integer"
+        },
+        "errorLogLength": { 
+            "type": "integer"
+        },
+        "cxlDVSEC": { 
+            "type": "string"
+        },
+        "cxlErrorLog": { 
+            "type": "string"
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-firmware.json b/specification/json/sections/cper-firmware.json
new file mode 100644
index 0000000..5c7126a
--- /dev/null
+++ b/specification/json/sections/cper-firmware.json
@@ -0,0 +1,22 @@
+{
+    "$id": "cper-json-firmware-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["errorRecordType", "revision", "recordID", "recordIDGUID"],
+    "additionalProperties": false,
+    "properties": {
+        "errorRecordType": {
+            "type": "object",
+            "$ref": "../common/cper-json-nvp.json"
+        },
+        "revision": {
+            "type": "integer"
+        },
+        "recordID": {
+            "type": "integer"
+        },
+        "recordIDGUID": {
+            "type": "integer"
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-generic-dmar.json b/specification/json/sections/cper-generic-dmar.json
new file mode 100644
index 0000000..e8f9d0e
--- /dev/null
+++ b/specification/json/sections/cper-generic-dmar.json
@@ -0,0 +1,45 @@
+{
+    "$id": "cper-json-generic-dmar-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["requesterID", "segmentNumber", "faultReason", "accessType", "addressType", "architectureType", "deviceAddress"],
+    "additionalProperties": false,
+    "properties": {
+        "requesterID": {
+            "type": "integer"
+        },
+        "segmentNumber": {
+            "type": "integer"
+        },
+        "faultReason": {
+            "type": "object",
+            "required": ["value", "name", "description"],
+            "properties": {
+                "value": {
+                    "type": "integer"
+                },
+                "name": {
+                    "type": "string"
+                },
+                "description": {
+                    "type": "string"
+                }
+            }
+        },
+        "accessType": {
+            "type": "object",
+            "$ref": "../common/cper-json-nvp.json"
+        },
+        "addressType": {
+            "type": "object",
+            "$ref": "../common/cper-json-nvp.json"
+        },
+        "architectureType": {
+            "type": "object",
+            "$ref": "../common/cper-json-nvp.json"
+        },
+        "deviceAddress": {
+            "type" : "integer"
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-generic-processor.json b/specification/json/sections/cper-generic-processor.json
new file mode 100644
index 0000000..568046f
--- /dev/null
+++ b/specification/json/sections/cper-generic-processor.json
@@ -0,0 +1,112 @@
+{
+    "$id": "cper-json-generic-processor-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["validationBits", "processorType", "processorISA", "errorType", "operation", "flags", "level", "cpuVersionInfo", "cpuBrandString", "processorID", "targetAddress", "requestorID", "responderID", "instructionIP"],
+    "additionalProperties": false,
+    "properties": {
+        "validationBits": {
+            "type": "object",
+            "required": ["processorTypeValid", "processorISAValid", "errorTypeValid", "operationValid", "flagsValid", "levelValid", "cpuVersionValid", "cpuBrandInfoValid", "cpuIDValid", "targetAddressValid", "requestorIDValid", "responderIDValid", "instructionIPValid"],
+            "properties": {
+                "processorTypeValid": {
+                    "type": "boolean"
+                },
+                "processorISAValid": {
+                    "type": "boolean"
+                },
+                "errorTypeValid": {
+                    "type": "boolean"
+                },
+                "operationValid": {
+                    "type": "boolean"
+                },
+                "flagsValid": {
+                    "type": "boolean"
+                },
+                "levelValid": {
+                    "type": "boolean"
+                },
+                "cpuVersionValid": {
+                    "type": "boolean"
+                },
+                "cpuBrandInfoValid": {
+                    "type": "boolean"
+                },
+                "cpuIDValid": {
+                    "type": "boolean"
+                },
+                "targetAddressValid": {
+                    "type": "boolean"
+                },
+                "requestorIDValid": {
+                    "type": "boolean"
+                },
+                "responderIDValid": {
+                    "type": "boolean"
+                },
+                "instructionIPValid": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "processorType": {
+            "type": "object",
+            "$ref": "../common/cper-json-nvp.json"
+        },
+        "processorISA": {
+            "type": "object",
+            "$ref": "../common/cper-json-nvp.json"
+        },
+        "errorType": {
+            "type": "object",
+            "$ref": "../common/cper-json-nvp.json"
+        },
+        "operation": {
+            "type": "object",
+            "$ref": "../common/cper-json-nvp.json"
+        },
+        "flags": {
+            "type": "object",
+            "required": ["restartableIP", "preciseIP", "overflow", "corrected"],
+            "properties": {
+                "restartableIP": {
+                    "type": "boolean"
+                },
+                "preciseIP": {
+                    "type": "boolean"
+                },
+                "overflow": {
+                    "type": "boolean"
+                },
+                "corrected": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "level": {
+            "type": "integer"
+        },
+        "cpuVersionInfo": {
+            "type": "integer"
+        },
+        "cpuBrandString": {
+            "type": "string"
+        },
+        "processorID": {
+            "type": "integer"
+        },
+        "targetAddress": {
+            "type": "integer"
+        },
+        "requestorID": {
+            "type": "integer"
+        },
+        "responderID": {
+            "type": "integer"
+        },
+        "instructionIP": {
+            "type": "integer"
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-ia32x64-processor.json b/specification/json/sections/cper-ia32x64-processor.json
new file mode 100644
index 0000000..ff482e5
--- /dev/null
+++ b/specification/json/sections/cper-ia32x64-processor.json
@@ -0,0 +1,410 @@
+{
+    "$id": "cper-json-ia32x54-processor-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["validationBits", "localAPICID", "cpuidInfo", "processorErrorInfo", "processorContextInfo"],
+    "additionalProperties": false,
+    "properties": {
+        "validationBits": {
+            "type": "object",
+            "required": ["localAPICIDValid", "cpuIDInfoValid", "processorErrorInfoNum", "processorContextInfoNum"],
+            "properties": {
+                "localAPICIDValid": {
+                    "type": "boolean"
+                },
+                "cpuIDInfoValid": {
+                    "type": "boolean"
+                },
+                "processorErrorInfoNum": {
+                    "type": "integer",
+                    "minimum": 0
+                },
+                "processorContextInfoNum": {
+                    "type": "integer",
+                    "minimum": 0
+                }
+            }
+        },
+        "localAPICID": {
+            "type": "integer"
+        },
+        "cpuidInfo": {
+            "type": "object",
+            "required": ["eax", "ebx", "ecx", "edx"],
+            "properties": {
+                "eax": {
+                    "type": "integer"
+                },
+                "ebx": {
+                    "type": "integer"
+                },
+                "ecx": {
+                    "type": "integer"
+                },
+                "edx": {
+                    "type": "integer"
+                }
+            }
+        },
+        "processorErrorInfo": {
+            "type": "array",
+            "items": {
+                "type": "object",
+                "required": ["type", "validationBits", "checkInfo", "targetAddressID", "requestorID", "responderID", "instructionPointer"],
+                "additionalProperties": false,
+                "properties": {
+                    "type": {
+                        "type": "string"
+                    },
+                    "validationBits": {
+                        "type": "object",
+                        "required": ["checkInfoValid", "targetAddressIDValid", "requestorIDValid", "responderIDValid", "instructionPointerValid"],
+                        "additionalProperties": false,
+                        "properties": {
+                            "checkInfoValid": {
+                                "type": "boolean"
+                            },
+                            "targetAddressIDValid": {
+                                "type": "boolean"
+                            },
+                            "requestorIDValid": {
+                                "type": "boolean"
+                            },
+                            "responderIDValid": {
+                                "type": "boolean"
+                            },
+                            "instructionPointerValid": {
+                                "type": "boolean"
+                            }
+                        }
+                    },
+                    "checkInfo": {
+                        "type" : "object",
+                        "oneOf": [
+                            {
+                                "type": "object",
+                                "required": ["validationBits", "transactionType", "operation", "level", "processorContextCorrupt", "uncorrected", "preciseIP", "restartableIP", "overflow"],
+                                "additionalProperties": false,
+                                "properties": {
+                                    "validationBits": {
+                                        "type": "object",
+                                        "required": ["transactionTypeValid", "operationValid", "levelValid", "processorContextCorruptValid", "uncorrectedValid", "preciseIPValid", "restartableIPValid", "overflowValid"],
+                                        "properties": {
+                                            "transactionTypeValid": {
+                                                "type": "boolean"
+                                            },
+                                            "operationValid": {
+                                                "type": "boolean"
+                                            },
+                                            "levelValid": {
+                                                "type": "boolean"
+                                            },
+                                            "processorContextCorruptValid": {
+                                                "type": "boolean"
+                                            },
+                                            "uncorrectedValid": {
+                                                "type": "boolean"
+                                            },
+                                            "preciseIPValid": {
+                                                "type": "boolean"
+                                            },
+                                            "restartableIPValid": {
+                                                "type": "boolean"
+                                            },
+                                            "overflowValid": {
+                                                "type": "boolean"
+                                            }
+                                        }
+                                    },
+                                    "transactionType": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "operation": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "level": {
+                                        "type": "integer",
+                                        "minimum": 0
+                                    },
+                                    "processorContextCorrupt": {
+                                        "type": "boolean"
+                                    },
+                                    "uncorrected": {
+                                        "type": "boolean"
+                                    },
+                                    "preciseIP": {
+                                        "type": "boolean"
+                                    },
+                                    "restartableIP": {
+                                        "type": "boolean"
+                                    },
+                                    "overflow": {
+                                        "type": "boolean"
+                                    }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": ["validationBits", "transactionType", "operation", "level", "processorContextCorrupt", "uncorrected", "preciseIP", "restartableIP", "overflow", "participationType", "timedOut", "addressSpace"],
+                                "additionalProperties": false,
+                                "properties": {
+                                    "validationBits": {
+                                        "type": "object",
+                                        "required": ["transactionTypeValid", "operationValid", "levelValid", "processorContextCorruptValid", "uncorrectedValid", "preciseIPValid", "restartableIPValid", "overflowValid", "participationTypeValid", "timedOutValid"],
+                                        "properties": {
+                                            "transactionTypeValid": {
+                                                "type": "boolean"
+                                            },
+                                            "operationValid": {
+                                                "type": "boolean"
+                                            },
+                                            "levelValid": {
+                                                "type": "boolean"
+                                            },
+                                            "processorContextCorruptValid": {
+                                                "type": "boolean"
+                                            },
+                                            "uncorrectedValid": {
+                                                "type": "boolean"
+                                            },
+                                            "preciseIPValid": {
+                                                "type": "boolean"
+                                            },
+                                            "restartableIPValid": {
+                                                "type": "boolean"
+                                            },
+                                            "overflowValid": {
+                                                "type": "boolean"
+                                            },
+                                            "participationTypeValid": {
+                                                "type": "boolean"
+                                            },
+                                            "timedOutValid": {
+                                                "type": "boolean"
+                                            }
+                                        }
+                                    },
+                                    "transactionType": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "operation": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "level": {
+                                        "type": "integer",
+                                        "minimum": 0
+                                    },
+                                    "processorContextCorrupt": {
+                                        "type": "boolean"
+                                    },
+                                    "uncorrected": {
+                                        "type": "boolean"
+                                    },
+                                    "preciseIP": {
+                                        "type": "boolean"
+                                    },
+                                    "restartableIP": {
+                                        "type": "boolean"
+                                    },
+                                    "overflow": {
+                                        "type": "boolean"
+                                    },
+                                    "participationType": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "addressSpace": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "timedOut": {
+                                        "type": "boolean"
+                                    }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": [],
+                                "additionalProperties": false,
+                                "properties": {
+                                    "validationBits": {
+                                        "type": "object",
+                                        "required": ["errorTypeValid", "processorContextCorruptValid", "uncorrectedValid", "preciseIPValid", "restartableIPValid", "overflowValid"],
+                                        "properties": {
+                                            "errorTypeValid": {
+                                                "type": "boolean"
+                                            },
+                                            "processorContextCorruptValid": {
+                                                "type": "boolean"
+                                            },
+                                            "uncorrectedValid": {
+                                                "type": "boolean"
+                                            },
+                                            "preciseIPValid": {
+                                                "type": "boolean"
+                                            },
+                                            "restartableIPValid": {
+                                                "type": "boolean"
+                                            },
+                                            "overflowValid": {
+                                                "type": "boolean"
+                                            }
+                                        }
+                                    },
+                                    "errorType": {
+                                        "type": "object",
+                                        "$ref": "../common/cper-json-nvp.json"
+                                    },
+                                    "processorContextCorrupt": {
+                                        "type": "boolean"
+                                    },
+                                    "uncorrected": {
+                                        "type": "boolean"
+                                    },
+                                    "preciseIP": {
+                                        "type": "boolean"
+                                    },
+                                    "restartableIP": {
+                                        "type": "boolean"
+                                    },
+                                    "overflow": {
+                                        "type": "boolean"
+                                    }
+                                }
+                            }
+                        ]
+                    },
+                    "targetAddressID": {
+                        "type": "integer"
+                    },
+                    "requestorID": {
+                        "type": "integer"
+                    },
+                    "responderID": {
+                        "type": "integer"
+                    },
+                    "instructionPointer": {
+                        "type": "integer"
+                    }
+                }
+            }
+        },
+        "processorContextInfo": {
+            "type": "array",
+            "items": {
+                "type": "object",
+                "required": ["registerContextType", "registerArraySize", "msrAddress", "mmRegisterAddress"],
+                "additionalProperties": false,
+                "properties": {
+                    "registerContextType": {
+                        "type": "object",
+                        "$ref": "../common/cper-json-nvp.json"
+                    },
+                    "registerArraySize": {
+                        "type": "integer"
+                    },
+                    "msrAddress": {
+                        "type": "integer"
+                    },
+                    "mmRegisterAddress": {
+                        "type": "integer"
+                    },
+                    "registerArray": {
+                        "type": "object",
+                        "oneOf": [
+                            {
+                                "type": "object",
+                                "required": ["eax", "ebx", "ecx", "edx", "esi", "edi", "ebp", "esp", "cs", "ds", "ss", "es", "fs", "gs", "eflags", "eip", "cr0", "cr1", "cr2", "cr3", "cr4", "gdtr", "idtr", "ldtr", "tr"],
+                                "additionalProperties": false,
+                                "properties": {
+                                    "eax": { "type": "integer" },
+                                    "ebx": { "type": "integer" },
+                                    "ecx": { "type": "integer" },
+                                    "edx": { "type": "integer" },
+                                    "esi": { "type": "integer" },
+                                    "edi": { "type": "integer" },
+                                    "ebp": { "type": "integer" },
+                                    "esp": { "type": "integer" },
+                                    "cs": { "type": "integer" },
+                                    "ds": { "type": "integer" },
+                                    "ss": { "type": "integer" },
+                                    "es": { "type": "integer" },
+                                    "fs": { "type": "integer" },
+                                    "gs": { "type": "integer" },
+                                    "eflags": { "type": "integer" },
+                                    "eip": { "type": "integer" },
+                                    "cr0": { "type": "integer" },
+                                    "cr1": { "type": "integer" },
+                                    "cr2": { "type": "integer" },
+                                    "cr3": { "type": "integer" },
+                                    "cr4": { "type": "integer" },
+                                    "gdtr": { "type": "integer" },
+                                    "idtr": { "type": "integer" },
+                                    "ldtr": { "type": "integer" },
+                                    "tr": { "type": "integer" }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": ["rax", "rbx", "rcx", "rdx", "rsi", "rdi", "rbp", "rsp", "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15", "cs", "ds", "es", "fs", "gs", "rflags", "eip", "cr0", "cr1", "cr2", "cr3", "cr4", "cr8", "gdtr_0", "gdtr_1", "idtr_0", "idtr_1", "ldtr", "tr"],
+                                "additionalProperties": false,
+                                "properties": {
+                                    "rax": { "type": "integer" },
+                                    "rbx": { "type": "integer" },
+                                    "rcx": { "type": "integer" },
+                                    "rdx": { "type": "integer" },
+                                    "rsi": { "type": "integer" },
+                                    "rdi": { "type": "integer" },
+                                    "rbp": { "type": "integer" },
+                                    "rsp": { "type": "integer" },
+                                    "r8": { "type": "integer" },
+                                    "r9": { "type": "integer" },
+                                    "r10": { "type": "integer" },
+                                    "r11": { "type": "integer" },
+                                    "r12": { "type": "integer" },
+                                    "r13": { "type": "integer" },
+                                    "r14": { "type": "integer" },
+                                    "r15": { "type": "integer" },
+                                    "cs": { "type": "integer" },
+                                    "ds": { "type": "integer" },
+                                    "ss": { "type": "integer" },
+                                    "es": { "type": "integer" },
+                                    "fs": { "type": "integer" },
+                                    "gs": { "type": "integer" },
+                                    "rflags": { "type": "integer" },
+                                    "eip": { "type": "integer" },
+                                    "cr0": { "type": "integer" },
+                                    "cr1": { "type": "integer" },
+                                    "cr2": { "type": "integer" },
+                                    "cr3": { "type": "integer" },
+                                    "cr4": { "type": "integer" },
+                                    "cr8": { "type": "integer" },
+                                    "gdtr_0": { "type": "integer" },
+                                    "gdtr_1": { "type": "integer" },
+                                    "idtr_0": { "type": "integer" },
+                                    "idtr_1": { "type": "integer" },
+                                    "ldtr": { "type": "integer" },
+                                    "tr": { "type": "integer" }
+                                }
+                            },
+                            {
+                                "type": "object",
+                                "required": ["data"],
+                                "additionalProperties": false,
+                                "properties": {
+                                    "data": {
+                                        "type": "string"
+                                    }
+                                }
+                            }
+                        ]
+                    }
+                }
+            }
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-iommu-dmar.json b/specification/json/sections/cper-iommu-dmar.json
new file mode 100644
index 0000000..2db53cc
--- /dev/null
+++ b/specification/json/sections/cper-iommu-dmar.json
@@ -0,0 +1,42 @@
+{
+    "$id": "cper-json-iommu-dmar-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["revision", "controlRegister", "statusRegister", "eventLogEntry", "deviceTableEntry", "pageTableEntry_Level6", "pageTableEntry_Level5", "pageTableEntry_Level4", "pageTableEntry_Level3", "pageTableEntry_Level2", "pageTableEntry_Level1"],
+    "additionalProperties": false,
+    "properties": {
+        "revision": {
+            "type": "integer"
+        },
+        "controlRegister": {
+            "type": "integer"
+        },
+        "statusRegister": {
+            "type": "integer"
+        },
+        "eventLogEntry": {
+            "type": "string"
+        },
+        "deviceTableEntry": {
+            "type": "string"
+        },
+        "pageTableEntry_Level6": {
+            "type": "integer"
+        },
+        "pageTableEntry_Level5": {
+            "type": "integer"
+        },
+        "pageTableEntry_Level4": {
+            "type": "integer"
+        },
+        "pageTableEntry_Level3": {
+            "type": "integer"
+        },
+        "pageTableEntry_Level2": {
+            "type": "integer"
+        },
+        "pageTableEntry_Level1": {
+            "type": "integer"
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-memory.json b/specification/json/sections/cper-memory.json
new file mode 100644
index 0000000..d4686b1
--- /dev/null
+++ b/specification/json/sections/cper-memory.json
@@ -0,0 +1,163 @@
+{
+    "$id": "cper-json-memory-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["validationBits", "errorStatus", "bank", "memoryErrorType", "extended", "physicalAddress", "physicalAddressMask", "node", "card", "moduleRank", "device", "row", "column", "bitPosition", "requestorID", "responderID", "targetID", "rankNumber", "cardSmbiosHandle", "moduleSmbiosHandle"],
+    "additionalProperties": false,
+    "properties": {
+        "validationBits": {
+            "type": "object",
+            "required": ["errorStatusValid", "physicalAddressValid", "physicalAddressMaskValid", "nodeValid", "cardValid", "moduleValid", "bankValid", "deviceValid", "rowValid", "memoryPlatformTargetValid", "memoryErrorTypeValid", "rankNumberValid", "cardHandleValid", "moduleHandleValid", "extendedRowBitsValid", "bankGroupValid", "bankAddressValid", "chipIdentificationValid"],
+            "properties": {
+                "errorStatusValid": {
+                    "type": "boolean"
+                },
+                "physicalAddressValid": {
+                    "type": "boolean"
+                },
+                "physicalAddressMaskValid": {
+                    "type": "boolean"
+                },
+                "nodeValid": {
+                    "type": "boolean"
+                },
+                "cardValid": {
+                    "type": "boolean"
+                },
+                "moduleValid": {
+                    "type": "boolean"
+                },
+                "bankValid": {
+                    "type": "boolean"
+                },
+                "deviceValid": {
+                    "type": "boolean"
+                },
+                "rowValid": {
+                    "type": "boolean"
+                },
+                "memoryPlatformTargetValid": {
+                    "type": "boolean"
+                },
+                "memoryErrorTypeValid": {
+                    "type": "boolean"
+                },
+                "rankNumberValid": {
+                    "type": "boolean"
+                },
+                "cardHandleValid": {
+                    "type": "boolean"
+                },
+                "moduleHandleValid": {
+                    "type": "boolean"
+                },
+                "extendedRowBitsValid": {
+                    "type": "boolean"
+                },
+                "bankGroupValid": {
+                    "type": "boolean"
+                },
+                "bankAddressValid": {
+                    "type": "boolean"
+                },
+                "chipIdentificationValid": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "errorStatus": {
+            "type": "object",
+            "$ref": "../common/cper-json-error-status.json"
+        },
+        "bank": {
+            "type": "object",
+            "oneOf": [
+                {
+                    "type": "object",
+                    "required": ["value"],
+                    "properties": {
+                        "value": {
+                            "type": "integer"
+                        }
+                    }
+                },
+                {
+                    "type": "object",
+                    "required": ["address", "group"],
+                    "properties": {
+                        "address": {
+                            "type": "integer"
+                        },
+                        "group": {
+                            "type": "integer"
+                        }
+                    }
+                }
+            ]
+        },
+        "memoryErrorType": {
+            "type": "object",
+            "$ref": "../common/cper-json-nvp.json"
+        },
+        "extended": {
+            "type": "object",
+            "required": ["rowBit16", "rowBit17", "chipIdentification"],
+            "properties": {
+                "rowBit16": {
+                    "type": "boolean"
+                },
+                "rowBit17": {
+                    "type": "boolean"
+                },
+                "chipIdentification": {
+                    "type": "integer"
+                }
+            }
+        },
+        "physicalAddress": {
+            "type": "integer"
+        },
+        "physicalAddressMask": {
+            "type": "integer"
+        },
+        "node": {
+            "type": "integer"
+        },
+        "card": {
+            "type": "integer"
+        },
+        "moduleRank": {
+            "type": "integer"
+        },
+        "device": {
+            "type": "integer"
+        },
+        "row": {
+            "type": "integer"
+        },
+        "column": {
+            "type": "integer"
+        },
+        "bitPosition": {
+            "type": "integer"
+        },
+        "requestorID": {
+            "type": "integer"
+        },
+        "responderID": {
+            "type": "integer"
+        },
+        "targetID": {
+            "type": "integer"
+        },
+        "rankNumber": {
+            "type": "integer"
+        },
+        "cardSmbiosHandle": {
+            "type": "integer"
+        },
+        "moduleSmbiosHandle": {
+            "type": "integer"
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-memory2.json b/specification/json/sections/cper-memory2.json
new file mode 100644
index 0000000..6f615c3
--- /dev/null
+++ b/specification/json/sections/cper-memory2.json
@@ -0,0 +1,175 @@
+{
+    "$id": "cper-json-memory2-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["validationBits", "errorStatus", "bank", "memoryErrorType", "status", "physicalAddress", "physicalAddressMask", "node", "card", "module", "device", "row", "column", "bitPosition", "rank", "chipID", "requestorID", "responderID", "targetID", "cardSmbiosHandle", "moduleSmbiosHandle"],
+    "additionalProperties": false,
+    "properties": {
+        "validationBits": {
+            "type": "object",
+            "required": ["errorStatusValid", "physicalAddressValid", "physicalAddressMaskValid", "nodeValid", "cardValid", "moduleValid", "bankValid", "deviceValid", "rowValid", "columnValid", "rankValid", "bitPositionValid", "chipIDValid", "memoryErrorTypeValid", "statusValid", "requestorIDValid", "responderIDValid", "targetIDValid", "cardHandleValid", "moduleHandleValid", "bankGroupValid", "bankAddressValid"],
+            "properties": {
+                "errorStatusValid": {
+                    "type": "boolean"
+                },
+                "physicalAddressValid": {
+                    "type": "boolean"
+                },
+                "physicalAddressMaskValid": {
+                    "type": "boolean"
+                },
+                "nodeValid": {
+                    "type": "boolean"
+                },
+                "cardValid": {
+                    "type": "boolean"
+                },
+                "moduleValid": {
+                    "type": "boolean"
+                },
+                "bankValid": {
+                    "type": "boolean"
+                },
+                "deviceValid": {
+                    "type": "boolean"
+                },
+                "rowValid": {
+                    "type": "boolean"
+                },
+                "columnValid": {
+                    "type": "boolean"
+                },
+                "rankValid": {
+                    "type": "boolean"
+                },
+                "bitPositionValid": {
+                    "type": "boolean"
+                },
+                "chipIDValid": {
+                    "type": "boolean"
+                },
+                "memoryErrorTypeValid": {
+                    "type": "boolean"
+                },
+                "statusValid": {
+                    "type": "boolean"
+                },
+                "requestorIDValid": {
+                    "type": "boolean"
+                },
+                "responderIDValid": {
+                    "type": "boolean"
+                },
+                "targetIDValid": {
+                    "type": "boolean"
+                },
+                "cardHandleValid": {
+                    "type": "boolean"
+                },
+                "moduleHandleValid": {
+                    "type": "boolean"
+                },
+                "bankGroupValid": {
+                    "type": "boolean"
+                },
+                "bankAddressValid": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "errorStatus": {
+            "type": "object",
+            "$ref": "../common/cper-json-error-status.json"
+        },
+        "bank": {
+            "type": "object",
+            "oneOf": [
+                {
+                    "type": "object",
+                    "required": ["value"],
+                    "properties": {
+                        "value": {
+                            "type": "integer"
+                        }
+                    }
+                },
+                {
+                    "type": "object",
+                    "required": ["address", "group"],
+                    "properties": {
+                        "address": {
+                            "type": "integer"
+                        },
+                        "group": {
+                            "type": "integer"
+                        }
+                    }
+                }
+            ]
+        },
+        "memoryErrorType": {
+            "type": "object",
+            "$ref": "../common/cper-json-nvp.json"
+        },
+        "status": {
+            "type": "object",
+            "required": ["value", "state"],
+            "properties": {
+                "value": {
+                    "type": "integer"
+                },
+                "state": {
+                    "type": "string"
+                }
+            }
+        },
+        "physicalAddress": {
+            "type": "integer"
+        },
+        "physicalAddressMask": {
+            "type": "integer"
+        },
+        "node": {
+            "type": "integer"
+        },
+        "card": {
+            "type": "integer"
+        },
+        "module": {
+            "type": "integer"
+        },
+        "device": {
+            "type": "integer"
+        },
+        "row": {
+            "type": "integer"
+        },
+        "column": {
+            "type": "integer"
+        },
+        "bitPosition": {
+            "type": "integer"
+        },
+        "rank": {
+            "type": "integer"
+        },
+        "chipID": {
+            "type": "integer"
+        },
+        "requestorID": {
+            "type": "integer"
+        },
+        "responderID": {
+            "type": "integer"
+        },
+        "targetID": {
+            "type": "integer"
+        },
+        "cardSmbiosHandle": {
+            "type": "integer"
+        },
+        "moduleSmbiosHandle": {
+            "type": "integer"
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-pci-bus.json b/specification/json/sections/cper-pci-bus.json
new file mode 100644
index 0000000..2666610
--- /dev/null
+++ b/specification/json/sections/cper-pci-bus.json
@@ -0,0 +1,77 @@
+{
+    "$id": "cper-json-pci-bus-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["validationBits", "errorStatus", "errorType", "busID", "busAddress", "busData", "busCommandType", "busRequestorID", "busCompleterID", "targetID"],
+    "additionalProperties": false,
+    "properties": {
+        "validationBits": {
+            "type": "object",
+            "required": ["errorStatusValid", "errorTypeValid", "busIDValid", "busAddressValid", "busDataValid", "commandValid", "requestorIDValid", "completerIDValid", "targetIDValid"],
+            "properties": {
+                "errorStatusValid": {
+                    "type": "boolean"
+                },
+                "errorTypeValid": {
+                    "type": "boolean"
+                },
+                "busIDValid": {
+                    "type": "boolean"
+                },
+                "busAddressValid": {
+                    "type": "boolean"
+                },
+                "busDataValid": {
+                    "type": "boolean"
+                },
+                "commandValid": {
+                    "type": "boolean"
+                },
+                "requestorIDValid": {
+                    "type": "boolean"
+                },
+                "completerIDValid": {
+                    "type": "boolean"
+                },
+                "targetIDValid": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "errorStatus": {
+            "type": "object",
+            "$ref": "../common/cper-json-error-status.json"
+        },
+        "errorType": {
+            "type": "object",
+            "$ref": "../common/cper-json-nvp.json"
+        },
+        "busID": {
+            "type": "object",
+            "required": ["busNumber", "segmentNumber"],
+            "properties": {
+                "busNumber": {
+                    "type": "integer"
+                },
+                "segmentNumber": {
+                    "type": "integer"
+                }
+            }
+        },
+        "busAddress": {
+            "type": "integer"
+        },
+        "busCommandType": {
+            "type": "string"
+        },
+        "busRequestorID": {
+            "type": "integer"
+        },
+        "busCompleterID": {
+            "type": "integer"
+        },
+        "targetID": {
+            "type": "integer"
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-pci-component.json b/specification/json/sections/cper-pci-component.json
new file mode 100644
index 0000000..4e46485
--- /dev/null
+++ b/specification/json/sections/cper-pci-component.json
@@ -0,0 +1,82 @@
+{
+    "$id": "cper-json-pci-component-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["validationBits", "errorStatus", "idInfo", "memoryNumber", "ioNumber", "registerDataPairs"],
+    "additionalProperties": false,
+    "properties": {
+        "validationBits": {
+            "type": "object",
+            "required": ["errorStatusValid", "idInfoValid", "memoryNumberValid", "ioNumberValid", "registerDataPairsValid"],
+            "properties": {
+                "errorStatusValid": {
+                    "type": "boolean"
+                },
+                "idInfoValid": {
+                    "type": "boolean"
+                },
+                "memoryNumberValid": {
+                    "type": "boolean"
+                },
+                "ioNumberValid": {
+                    "type": "boolean"
+                },
+                "registerDataPairsValid": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "errorStatus": {
+            "type": "object",
+            "$ref": "../common/cper-json-error-status.json"
+        },
+        "idInfo": {
+            "type": "object",
+            "required": ["vendorID", "deviceID", "classCode", "functionNumber", "deviceNumber", "busNumber", "segmentNumber"],
+            "properties": {
+                "vendorID": {
+                    "type": "integer"
+                },
+                "deviceID": {
+                    "type": "integer"
+                },
+                "classCode": {
+                    "type": "integer"
+                },
+                "functionNumber": {
+                    "type": "integer"
+                },
+                "deviceNumber": {
+                    "type": "integer"
+                },
+                "busNumber": {
+                    "type": "integer"
+                },
+                "segmentNumber": {
+                    "type": "integer"
+                }
+            }
+        },
+        "memoryNumber": {
+            "type": "integer"
+        },
+        "ioNumber": {
+            "type": "integer"
+        },
+        "registerDataPairs": {
+            "type": "array",
+            "items": {
+                "type": "object",
+                "required": ["firstHalf", "secondHalf"],
+                "properties": {
+                    "firstHalf": {
+                        "type": "integer"
+                    },
+                    "secondHalf": {
+                        "type": "integer"
+                    }
+                }
+            }
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-pcie.json b/specification/json/sections/cper-pcie.json
new file mode 100644
index 0000000..5521e2b
--- /dev/null
+++ b/specification/json/sections/cper-pcie.json
@@ -0,0 +1,169 @@
+{
+    "$id": "cper-json-pcie-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["validationBits", "portType", "version", "commandStatus", "deviceID", "deviceSerialNumber", "bridgeControlStatus", "capabilityStructure", "aerInfo"],
+    "additionalProperties": false,
+    "properties": {
+        "validationBits": {
+            "type": "object",
+            "required": ["portTypeValid", "versionValid", "commandStatusValid", "deviceIDValid", "deviceSerialNumberValid", "bridgeControlStatusValid", "capabilityStructureStatusValid", "aerInfoValid"],
+            "properties": {
+                "portTypeValid": {
+                    "type": "boolean"
+                },
+                "versionValid": {
+                    "type": "boolean"
+                },
+                "commandStatusValid": {
+                    "type": "boolean"
+                },
+                "deviceIDValid": {
+                    "type": "boolean"
+                },
+                "deviceSerialNumberValid": {
+                    "type": "boolean"
+                },
+                "bridgeControlStatusValid": {
+                    "type": "boolean"
+                },
+                "capabilityStructureStatusValid": {
+                    "type": "boolean"
+                },
+                "aerInfoValid": {
+                    "type": "boolean"
+                }
+            }
+        },
+        "portType": {
+            "type": "object",
+            "$ref": "../common/cper-json-nvp.json"
+        },
+        "version": {
+            "type": "object",
+            "required": ["major", "minor"],
+            "properties": {
+                "major": {
+                    "type": "integer"
+                },
+                "minor": {
+                    "type": "integer"
+                }
+            }
+        },
+        "commandStatus": {
+            "type": "object",
+            "required": ["commandRegister", "statusRegister"],
+            "properties": {
+                "commandRegister": {
+                    "type" : "integer"
+                },
+                "statusRegister": {
+                    "type": "integer"
+                }
+            }
+        },
+        "deviceID": {
+            "type": "object",
+            "required": ["vendorID", "deviceID", "classCode", "functionNumber", "deviceNumber", "segmentNumber", "primaryOrDeviceBusNumber", "secondaryBusNumber", "slotNumber"],
+            "properties": {
+                "vendorID": {
+                    "type": "integer"
+                },
+                "deviceID": {
+                    "type": "integer"
+                },
+                "classCode": {
+                    "type": "integer"
+                },
+                "functionNumber": {
+                    "type": "integer"
+                },
+                "deviceNumber": {
+                    "type": "integer"
+                },
+                "segmentNumber": {
+                    "type": "integer"
+                },
+                "primaryOrDeviceBusNumber": {
+                    "type": "integer"
+                },
+                "secondaryBusNumber": {
+                    "type": "integer"
+                },
+                "slotNumber": {
+                    "type": "integer"
+                }
+            }
+        },
+        "deviceSerialNumber": {
+            "type": "integer"
+        },
+        "bridgeControlStatus": {
+            "type": "object",
+            "required": ["secondaryStatusRegister", "controlRegister"],
+            "properties": {
+                "secondaryStatusRegister": {
+                    "type": "integer"
+                },
+                "controlRegister": {
+                    "type": "integer"
+                }
+            }
+        },
+        "capabilityStructure": {
+            "type": "object",
+            "required": ["data"],
+            "properties": {
+                "data": {
+                    "type": "string"
+                }
+            }
+        },
+        "aerInfo": {
+            "type": "object",
+            "required": ["capabilityID", "capabilityVersion", "uncorrectableErrorStatusRegister", "uncorrectableErrorMaskRegister", "uncorrectableErrorSeverityRegister", "correctableErrorStatusRegister", "correctableErrorMaskRegister", "aeccReg", "headerLogRegister", "rootErrorCommand", "rootErrorStatus", "errorSourceIDRegister", "correctableErrorSourceIDRegister"],
+            "properties": {
+                "capabilityID": {
+                    "type": "integer"
+                },
+                "capabilityVersion": {
+                    "type": "integer"
+                },
+                "uncorrectableErrorStatusRegister": {
+                    "type": "integer"
+                },
+                "uncorrectableErrorMaskRegister": {
+                    "type": "integer"
+                },
+                "uncorrectableErrorSeverityRegister": {
+                    "type": "integer"
+                },
+                "correctableErrorStatusRegister": {
+                    "type": "integer"
+                },
+                "correctableErrorMaskRegister": {
+                    "type": "integer"
+                },
+                "aeccReg": {
+                    "type": "integer"
+                },
+                "headerLogRegister": {
+                    "type": "string"
+                },
+                "rootErrorCommand": {
+                    "type": "integer"
+                },
+                "rootErrorStatus": {
+                    "type": "integer"
+                },
+                "errorSourceIDRegister": {
+                    "type": "integer"
+                },
+                "correctableErrorSourceIDRegister": {
+                    "type": "integer"
+                }
+            }
+        }
+    }
+}
\ No newline at end of file
diff --git a/specification/json/sections/cper-vtd-dmar.json b/specification/json/sections/cper-vtd-dmar.json
new file mode 100644
index 0000000..aa6716d
--- /dev/null
+++ b/specification/json/sections/cper-vtd-dmar.json
@@ -0,0 +1,88 @@
+{
+    "$id": "cper-json-vtd-dmar-section",
+    "$schema": "https://json-schema.org/draft/2020-12/schema",
+    "type": "object",
+    "required": ["version", "revision", "oemID", "capabilityRegister", "extendedCapabilityRegister", "globalCommandRegister", "globalStatusRegister", "faultStatusRegister", "faultRecord", "rootEntry", "contextEntry", "pageTableEntry_Level6", "pageTableEntry_Level5", "pageTableEntry_Level4", "pageTableEntry_Level3", "pageTableEntry_Level2", "pageTableEntry_Level1"],
+    "additionalProperties": false,
+    "properties": {
+        "version": {
+            "type": "integer"
+        },
+        "revision": {
+            "type": "integer"
+        },
+        "oemID": {
+            "type": "integer"
+        },
+        "capabilityRegister": {
+            "type": "integer"
+        },
+        "extendedCapabilityRegister": {
+            "type": "integer"
+        },
+        "globalCommandRegister": {
+            "type": "integer"
+        },
+        "globalStatusRegister": {
+            "type": "integer"
+        },
+        "faultStatusRegister": {
+            "type": "object",
+            "required": ["faultInformation", "sourceIdentifier", "privelegeModeRequested", "executePermissionRequested", "pasidPresent", "faultReason", "pasidValue", "addressType", "type"],
+            "properties": {
+                "faultInformation": {
+                    "type": "integer"
+                },
+                "sourceIdentifier": {
+                    "type": "integer"
+                },
+                "privelegeModeRequested": {
+                    "type": "boolean"
+                },
+                "executePermissionRequested": {
+                    "type": "boolean"
+                },
+                "pasidPresent": {
+                    "type": "boolean"
+                },
+                "faultReason": {
+                    "type": "integer"
+                },
+                "pasidValue": {
+                    "type": "integer"
+                },
+                "addressType": {
+                    "type": "integer"
+                },
+                "type": {
+                    "type": "object",
+                    "$ref": "../common/cper-json-nvp.json"
+                }
+            }
+        },
+        "rootEntry": {
+            "type": "string"
+        },
+        "contextEntry": {
+            "type": "string"
+        },
+        "pageEntry_Level6": {
+            "type": "integer"
+        },
+        "pageEntry_Level5": {
+            "type": "integer"
+        },
+        "pageEntry_Level4": {
+            "type": "integer"
+        },
+        "pageEntry_Level3": {
+            "type": "integer"
+        },
+        "pageEntry_Level2": {
+            "type": "integer"
+        },
+        "pageEntry_Level1": {
+            "type": "integer"
+        }
+    }
+}
\ No newline at end of file