prettier: re-format

Prettier is enabled in openbmc-build-scripts on Markdown, JSON, and YAML
files to have consistent formatting for these file types.  Re-run the
formatter on the whole repository.

Change-Id: I0d25f27a5e449578967915d9f570cc29246927d7
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/README.md b/README.md
index 9f82e01..e23e30c 100644
--- a/README.md
+++ b/README.md
@@ -1,45 +1,58 @@
 # To Build
+
 Need `meson` and `ninja`. Alternatively, source an OpenBMC ARM/x86 SDK.
+
 ```
 meson build && ninja -C build
 ```
 
 ## To run unit tests
+
 The simplest way of running the tests is as described by the meson man page:
+
 ```
 meson builddir && meson test -C builddir
 ```
+
 Alternatively, tests can be run in the OpenBMC CI docker container, or with an
 OpenBMC x86 sdk(see below for x86 steps).
+
 ```
 meson -Doe-sdk=enabled build
 ninja -C build test
 ```
 
 ## To enable pldm verbosity
-pldm daemon accepts a command line argument `--verbose` or `--v` or `-v` to enable the
-daemon to run in verbose mode. It can be done via adding this option to the environment
-file that pldm service consumes.
+
+pldm daemon accepts a command line argument `--verbose` or `--v` or `-v` to
+enable the daemon to run in verbose mode. It can be done via adding this option
+to the environment file that pldm service consumes.
+
 ```
 echo 'PLDMD_ARGS="--verbose"' > /etc/default/pldmd
 systemctl restart pldmd
 ```
+
 ## To disable pldm verbosity
+
 ```
 rm /etc/default/pldmd
 systemctl restart pldmd
 ```
 
 # Code Organization
+
 At a high-level, code in this repository belongs to one of the following three
 components.
 
 ## libpldmresponder
+
 This library provides handlers for incoming PLDM request messages. It provides
 for a registration as well as a plug-in mechanism. The library is implemented in
 modern C++, and handles OpenBMC's platform specifics.
 
 The handlers are of the form
+
 ```
 Response handler(Request payload, size_t payloadLen)
 ```
@@ -47,10 +60,11 @@
 Source files are named according to the PLDM Type, for eg base.[hpp/cpp],
 fru.[hpp/cpp], etc.
 
-
 ## OEM/vendor-specific functions
+
 This will support OEM or vendor-specific functions and semantic information.
 Following directory structure has to be used:
+
 ```
     pldm repo
      |---- oem
@@ -59,9 +73,10 @@
                             |---<oem based handler files>
 
 ```
-<oem_name> - This folder must be created with the name of the OEM/vendor
-in lower case. Folders named libpldm and libpldmresponder must be created under
-the folder <oem_name>
+
+<oem_name> - This folder must be created with the name of the OEM/vendor in
+lower case. Folders named libpldm and libpldmresponder must be created under the
+folder <oem_name>
 
 Files having the oem functionality for the libpldmresponder library should be
 placed under the folder oem/<oem_name>/libpldmresponder. They must be adhering
@@ -78,50 +93,57 @@
 compilation of the code.
 
 ## libpldm
+
 pldm daemon links against the libpldm library during compilation, For more
-information on libpldm please refer to [libpldm](https://github.com/openbmc/libpldm)
+information on libpldm please refer to
+[libpldm](https://github.com/openbmc/libpldm)
 
 ## pldmtool
+
 For more information on pldmtool please refer to plmdtool/README.md.
 
 # Flows
+
 This section documents important code flow paths.
 
 ## BMC as PLDM responder
+
 a) PLDM daemon receives PLDM request message from underlying transport (MCTP).
 
 b) PLDM daemon routes message to message handler, based on the PLDM command.
 
 c) Message handler decodes request payload into various field(s) of the request
-   message. It can make use of a decode_foo_req() API, and doesn't have to
-   perform deserialization of the request payload by itself.
+message. It can make use of a decode_foo_req() API, and doesn't have to perform
+deserialization of the request payload by itself.
 
 d) Message handler works with the request field(s) and generates response
-   field(s).
+field(s).
 
 e) Message handler prepares a response message. It can make use of an
-   encode_foo_resp() API, and doesn't have to perform the serialization of the
-   response field(s) by itself.
+encode_foo_resp() API, and doesn't have to perform the serialization of the
+response field(s) by itself.
 
 f) The PLDM daemon sends the response message prepared at step e) to the remote
-   PLDM device.
+PLDM device.
 
 ## BMC as PLDM requester
+
 a) A BMC PLDM requester app prepares a PLDM request message. There would be
-   several requester apps (based on functionality/PLDM remote device). Each of
-   them needn't bother with the serialization of request field(s), and can
-   instead make use of an encode_foo_req() API.
+several requester apps (based on functionality/PLDM remote device). Each of them
+needn't bother with the serialization of request field(s), and can instead make
+use of an encode_foo_req() API.
 
 b) BMC requester app requests PLDM daemon to send the request message to remote
-   PLDM device.
+PLDM device.
 
 c) Once the PLDM daemon receives a corresponding response message, it notifies
-   the requester app.
+the requester app.
 
 d) The requester app has to work with the response field(s). It can make use of
-   a decode_foo_resp() API to deserialize the response message.
+a decode_foo_resp() API to deserialize the response message.
 
 # PDR Implementation
+
 While PLDM Platform Descriptor Records (PDRs) are mostly static information,
 they can vary across platforms and systems. For this reason, platform specific
 PDR information is encoded in platform specific JSON files. JSON files must be
diff --git a/configurations/events/stateSensorPdrs.json b/configurations/events/stateSensorPdrs.json
index 0702ca0..a33956b 100644
--- a/configurations/events/stateSensorPdrs.json
+++ b/configurations/events/stateSensorPdrs.json
@@ -1,27 +1,17 @@
 {
-    "entries":[
+    "entries": [
         {
-            "containerID":0,
-            "entityType":32801,
-            "entityInstance":0,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                2,
-                3,
-                5,
-                7,
-                9,
-                21,
-                22,
-                26
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/state/host0",
-                "interface":"xyz.openbmc_project.State.Boot.Progress",
-                "property_name":"BootProgress",
-                "property_type":"string",
-                "property_values":[
+            "containerID": 0,
+            "entityType": 32801,
+            "entityInstance": 0,
+            "sensorOffset": 0,
+            "event_states": [1, 2, 3, 5, 7, 9, 21, 22, 26],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/state/host0",
+                "interface": "xyz.openbmc_project.State.Boot.Progress",
+                "property_name": "BootProgress",
+                "property_type": "string",
+                "property_values": [
                     "xyz.openbmc_project.State.Boot.Progress.ProgressStages.Unspecified",
                     "xyz.openbmc_project.State.Boot.Progress.ProgressStages.SystemInitComplete",
                     "xyz.openbmc_project.State.Boot.Progress.ProgressStages.MemoryInit",
@@ -35,1988 +25,1412 @@
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":0,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 0,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":1,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 1,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":2,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 2,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":3,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 3,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":4,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 4,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":5,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 5,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":6,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 6,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":7,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 7,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":8,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 8,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":9,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 9,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":10,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 10,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":11,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 11,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":12,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 12,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":13,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 13,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":14,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 14,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":15,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 15,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":16,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm16",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 16,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm16",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":17,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm17",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 17,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm17",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":18,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm18",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 18,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm18",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":19,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm19",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 19,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm19",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":20,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm20",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 20,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm20",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":21,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm21",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 21,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm21",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":22,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm22",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 22,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm22",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":23,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm23",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 23,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm23",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":24,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm24",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 24,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm24",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":25,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm25",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 25,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm25",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":26,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm26",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 26,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm26",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":27,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm27",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 27,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm27",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":28,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm28",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 28,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm28",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":29,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm29",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 29,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm29",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":30,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm30",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 30,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm30",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":31,
-            "sensorOffset":0,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm31",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 31,
+            "sensorOffset": 0,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm31",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":32,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm32",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 32,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm32",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":33,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm33",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 33,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm33",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":34,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm34",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 34,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm34",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":35,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm35",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 35,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm35",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":36,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm36",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 36,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm36",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":37,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm37",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 37,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm37",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":38,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm38",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 38,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm38",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":39,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm39",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 39,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm39",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":40,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm40",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 40,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm40",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":41,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm41",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 41,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm41",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":42,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm42",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 42,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm42",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":43,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm43",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 43,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm43",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":44,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm44",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 44,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm44",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":45,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm45",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 45,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm45",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":46,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm46",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 46,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm46",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":47,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm47",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 47,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm47",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":48,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm48",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 48,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm48",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":49,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm49",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 49,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm49",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":50,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm50",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 50,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm50",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":51,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm51",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 51,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm51",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":52,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm52",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 52,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm52",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":53,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm53",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 53,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm53",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":54,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm54",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 54,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm54",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":55,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm55",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 55,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm55",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":56,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm56",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 56,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm56",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":57,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm57",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 57,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm57",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":58,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm58",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 58,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm58",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":59,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm59",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 59,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm59",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":60,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm60",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 60,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm60",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":61,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm61",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 61,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm61",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":62,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm62",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 62,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm62",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":63,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm63",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 63,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm63",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":32,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm32",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 32,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm32",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":33,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm33",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 33,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm33",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":34,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm34",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 34,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm34",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":35,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm35",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 35,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm35",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":36,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm36",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 36,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm36",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":37,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm37",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 37,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm37",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":38,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm38",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 38,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm38",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":39,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm39",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 39,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm39",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":40,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm40",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 40,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm40",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":41,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm41",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 41,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm41",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":42,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm42",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 42,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm42",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":43,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm43",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 43,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm43",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":44,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm44",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 44,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm44",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":45,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm45",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 45,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm45",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":46,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm46",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 46,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm46",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":47,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm47",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 47,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm47",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":48,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm48",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 48,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm48",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":49,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm49",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 49,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm49",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":50,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm50",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 50,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm50",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":51,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm51",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 51,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm51",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":52,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm52",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 52,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm52",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":53,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm53",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 53,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm53",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":54,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm54",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 54,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm54",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":55,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm55",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 55,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm55",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":56,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm56",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 56,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm56",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":57,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm57",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 57,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm57",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":58,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm58",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 58,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm58",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":59,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm59",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 59,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm59",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":60,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm60",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 60,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm60",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":61,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm61",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 61,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm61",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":62,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm62",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 62,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm62",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         },
         {
-            "containerID":3,
-            "entityType":66,
-            "entityInstance":63,
-            "sensorOffset":0,
-            "stateSetId":1,
-            "event_states":[
-                1,
-                3
-            ],
-            "dbus":{
-                "object_path":"/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm63",
-                "interface":"xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name":"Functional",
-                "property_type":"bool",
-                "property_values":[
-                    true,
-                    false
-                ]
+            "containerID": 3,
+            "entityType": 66,
+            "entityInstance": 63,
+            "sensorOffset": 0,
+            "stateSetId": 1,
+            "event_states": [1, 3],
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm63",
+                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                "property_name": "Functional",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
         }
     ]
-}
\ No newline at end of file
+}
diff --git a/configurations/fru_master.json b/configurations/fru_master.json
index c3b3417..c6eb930 100644
--- a/configurations/fru_master.json
+++ b/configurations/fru_master.json
@@ -1,20 +1,20 @@
 {
-        "FruDBusLookupMap":{
-                        "xyz.openbmc_project.Inventory.Item.Chassis" : 45,
-                        "xyz.openbmc_project.Inventory.Item.Board": 60,
-                        "xyz.openbmc_project.Inventory.Item.PCIeDevice": 61,
-                        "xyz.openbmc_project.Inventory.Item.Board.Motherboard": 64,
-                        "xyz.openbmc_project.Inventory.Item.Dimm": 66,
-                        "xyz.openbmc_project.Inventory.Item.Panel": 69,
-                        "xyz.openbmc_project.Inventory.Item.DiskBackplane": 73,
-                        "xyz.openbmc_project.Inventory.Item.Fan": 93,
-                        "xyz.openbmc_project.Inventory.Item.PowerSupply": 120,
-                        "xyz.openbmc_project.Inventory.Item.Battery": 121,
-                        "xyz.openbmc_project.Inventory.Item.Vrm": 123,
-                        "xyz.openbmc_project.Inventory.Item.Cpu": 135,
-                        "xyz.openbmc_project.Inventory.Item.Bmc": 137,
-                        "xyz.openbmc_project.Inventory.Item.Connector": 185,
-                        "xyz.openbmc_project.Inventory.Item.PCIeSlot": 186,
-                        "xyz.openbmc_project.Inventory.Item.System": 32813
-           }
+    "FruDBusLookupMap": {
+        "xyz.openbmc_project.Inventory.Item.Chassis": 45,
+        "xyz.openbmc_project.Inventory.Item.Board": 60,
+        "xyz.openbmc_project.Inventory.Item.PCIeDevice": 61,
+        "xyz.openbmc_project.Inventory.Item.Board.Motherboard": 64,
+        "xyz.openbmc_project.Inventory.Item.Dimm": 66,
+        "xyz.openbmc_project.Inventory.Item.Panel": 69,
+        "xyz.openbmc_project.Inventory.Item.DiskBackplane": 73,
+        "xyz.openbmc_project.Inventory.Item.Fan": 93,
+        "xyz.openbmc_project.Inventory.Item.PowerSupply": 120,
+        "xyz.openbmc_project.Inventory.Item.Battery": 121,
+        "xyz.openbmc_project.Inventory.Item.Vrm": 123,
+        "xyz.openbmc_project.Inventory.Item.Cpu": 135,
+        "xyz.openbmc_project.Inventory.Item.Bmc": 137,
+        "xyz.openbmc_project.Inventory.Item.Connector": 185,
+        "xyz.openbmc_project.Inventory.Item.PCIeSlot": 186,
+        "xyz.openbmc_project.Inventory.Item.System": 32813
+    }
 }
diff --git a/configurations/host/dbus_to_host_effecter.json b/configurations/host/dbus_to_host_effecter.json
index 3b4b424..ffb4f63 100644
--- a/configurations/host/dbus_to_host_effecter.json
+++ b/configurations/host/dbus_to_host_effecter.json
@@ -19,18 +19,12 @@
                             "xyz.openbmc_project.State.Host.Transition.On"
                         ]
                     },
-                    "state" : {
-                        "id" : 196,
-                        "state_values": [
-                            2
-                            ]
+                    "state": {
+                        "id": 196,
+                        "state_values": [2]
                     }
                 }
-
             ]
-
         }
-
     ]
-
 }
diff --git a/configurations/host/host_frus.json b/configurations/host/host_frus.json
index 3181f42..66cfccd 100644
--- a/configurations/host/host_frus.json
+++ b/configurations/host/host_frus.json
@@ -1,20 +1,18 @@
 {
-        "entities":[
-            {
-                "entity_type" : 66,
-                "parent":
-                     {
-                        "entity_type" : 64,
-                        "entity_instance" : 1
-                     }
-            },
-            {
-                "entity_type" : 67,
-                "parent":
-                     {
-                        "entity_type" : 64,
-                        "entity_instance" : 1
-                     }
+    "entities": [
+        {
+            "entity_type": 66,
+            "parent": {
+                "entity_type": 64,
+                "entity_instance": 1
             }
-        ]
+        },
+        {
+            "entity_type": 67,
+            "parent": {
+                "entity_type": 64,
+                "entity_instance": 1
+            }
+        }
+    ]
 }
diff --git a/configurations/pdr/11.json b/configurations/pdr/11.json
index 67fcb87..29527e3 100644
--- a/configurations/pdr/11.json
+++ b/configurations/pdr/11.json
@@ -1,3914 +1,4350 @@
 {
- "effecterPDRs": [
-   {
-    "pdrType" : 11,
-    "entries" : [{
-        "type" : 45,
-        "instance" : 1,
-        "container" : 1,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/enclosure_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/base_op_panel_blyth",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/base_blyth_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/ebmc_card_bmc",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/bmc_ingraham_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_bot",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard0_cxp_bot_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_top",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard0_cxp_top_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_bot",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard3_cxp_bot_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_top",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard3_cxp_top_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_bot",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard4_cxp_bot_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_top",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard4_cxp_top_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_bot",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard10_cxp_bot_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_top",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard10_cxp_top_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 1,
-        "container" : 4,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 2,
-        "container" : 4,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 3,
-        "container" : 4,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 4,
-        "container" : 4,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm0",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu0_vrm0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm1",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu1_vrm0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid2_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 1,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 2,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 3,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm2_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 4,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm3_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 5,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm4_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 6,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm5_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 7,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm6_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 8,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm7_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 9,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm8_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 10,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm9_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 11,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm10_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 12,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm11_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 13,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm12_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 14,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm13_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 15,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm14_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 16,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm15_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 17,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm16_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 18,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm17_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 19,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm18_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 20,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm19_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 21,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm20_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 22,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm21_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 23,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm22_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 24,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm23_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 25,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm24_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 26,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm25_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 27,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm26_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 28,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm27_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 29,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm28_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 30,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm29_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 31,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm30_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 32,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm31_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan2_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan3_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan4",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan4_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan5",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan5_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/lcd_op_panel_hill",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/lcd_russel_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme0",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme1",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme2",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme2_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme3",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme3_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme4",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme4_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme5",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme5_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme6",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme6_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme7",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme7_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme0",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme8_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme1",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme9_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme2",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme10_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme3",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme11_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme4",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme12_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme5",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme13_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme6",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme14_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme7",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme15_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme0",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme16_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme1",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme17_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme2",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme18_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme3",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme19_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme4",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme20_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme5",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme21_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme6",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme22_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme7",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme23_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot2_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot3_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot4_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot6_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot7_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot8_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot9_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot10_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot11_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/planar_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/powersupply0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/powersupply1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply2",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/powersupply2_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply3",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/powersupply3_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/tod_battery",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/rtc_battery_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/tpm_wilson",
-        "effecters" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/tpm_wilson_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 45,
-        "instance" : 1,
-        "container" : 1,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/enclosure_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/base_op_panel_blyth",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/base_op_panel_blyth",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/ebmc_card_bmc",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/ebmc_card_bmc",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_bot",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_bot",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_top",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_top",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_bot",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_bot",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_top",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_top",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_bot",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_bot",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_top",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_top",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_bot",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_bot",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_top",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_top",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 1,
-        "container" : 4,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dcm0/cpu0",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 2,
-        "container" : 4,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dcm0/cpu1",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 3,
-        "container" : 4,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dcm1/cpu0",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 4,
-        "container" : 4,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dcm1/cpu1",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm0",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm0",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm1",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm1",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 1,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 2,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 3,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 4,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 5,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 6,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 7,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 8,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 9,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 10,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 11,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 12,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 13,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 14,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 15,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 16,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 17,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm16",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 18,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm17",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 19,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm18",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 20,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm19",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 21,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm20",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 22,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm21",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 23,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm22",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 24,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm23",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 25,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm24",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 26,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm25",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 27,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm26",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 28,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm27",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 29,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm28",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 30,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm29",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 31,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm30",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 32,
-        "container" : 3,
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm31",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan4",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan4",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan5",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan5",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/lcd_op_panel_hill",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/lcd_op_panel_hill",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-     },
-     {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme0",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme0",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme1",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme1",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme2",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme2",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme3",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme3",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme4",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme4",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme5",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme5",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme6",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme6",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme7",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme7",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme0",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme0",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme1",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme1",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme2",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme2",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme3",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme3",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme4",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme4",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme5",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme5",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme6",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme6",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme7",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme7",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme0",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme0",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme1",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme1",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme2",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme2",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme3",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme3",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme4",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme4",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme5",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme5",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme6",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme6",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme7",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme7",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply2",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply2",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply3",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply3",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/tod_battery",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/tod_battery",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/tpm_wilson",
-        "effecters" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/tpm_wilson",
-                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
-                "property_name": "Functional",
-                "property_type": "bool",
-                "property_values" : [true, false]
-             }
-        }]
-    },
-    {
-       "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
-       "effecters" : [{
-           "set" : {
-               "id" : 257,
-               "size" : 1,
-               "states" : [0,1,4]
-           },
-           "dbus" : {
-               "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
-               "interface": "xyz.openbmc_project.State.Decorator.PowerState",
-               "property_name": "PowerState",
-               "property_type": "string",
-               "property_values": [
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.On",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
-               ]
-           }
-      }]
-    },
-    {
-       "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
-       "effecters" : [{
-           "set" : {
-               "id" : 257,
-               "size" : 1,
-               "states" : [0,1,4]
-           },
-           "dbus" : {
-               "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
-               "interface": "xyz.openbmc_project.State.Decorator.PowerState",
-               "property_name": "PowerState",
-               "property_type": "string",
-               "property_values": [
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.On",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
-               ]
-           }
-      }]
-    },
-    {
-       "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
-       "effecters" : [{
-           "set" : {
-               "id" : 257,
-               "size" : 1,
-               "states" : [0,1,4]
-           },
-           "dbus" : {
-               "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
-               "interface": "xyz.openbmc_project.State.Decorator.PowerState",
-               "property_name": "PowerState",
-               "property_type": "string",
-               "property_values": [
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.On",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
-               ]
-           }
-      }]
-    },
-    {
-       "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
-       "effecters" : [{
-           "set" : {
-               "id" : 257,
-               "size" : 1,
-               "states" : [0,1,4]
-           },
-           "dbus" : {
-               "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
-               "interface": "xyz.openbmc_project.State.Decorator.PowerState",
-               "property_name": "PowerState",
-               "property_type": "string",
-               "property_values": [
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.On",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
-               ]
-           }
-      }]
-    },
-    {
-       "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
-       "effecters" : [{
-           "set" : {
-               "id" : 257,
-               "size" : 1,
-               "states" : [0,1,4]
-           },
-           "dbus" : {
-               "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
-               "interface": "xyz.openbmc_project.State.Decorator.PowerState",
-               "property_name": "PowerState",
-               "property_type": "string",
-               "property_values": [
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.On",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
-               ]
-           }
-      }]
-    },
-    {
-       "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
-       "effecters" : [{
-           "set" : {
-               "id" : 257,
-               "size" : 1,
-               "states" : [0,1,4]
-           },
-           "dbus" : {
-               "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
-               "interface": "xyz.openbmc_project.State.Decorator.PowerState",
-               "property_name": "PowerState",
-               "property_type": "string",
-               "property_values": [
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.On",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
-               ]
-           }
-      }]
-    },
-    {
-       "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
-       "effecters" : [{
-           "set" : {
-               "id" : 257,
-               "size" : 1,
-               "states" : [0,1,4]
-           },
-           "dbus" : {
-               "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
-               "interface": "xyz.openbmc_project.State.Decorator.PowerState",
-               "property_name": "PowerState",
-               "property_type": "string",
-               "property_values": [
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.On",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
-               ]
-           }
-      }]
-    },
-    {
-       "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
-       "effecters" : [{
-           "set" : {
-               "id" : 257,
-               "size" : 1,
-               "states" : [0,1,4]
-           },
-           "dbus" : {
-               "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
-               "interface": "xyz.openbmc_project.State.Decorator.PowerState",
-               "property_name": "PowerState",
-               "property_type": "string",
-               "property_values": [
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.On",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
-               ]
-           }
-      }]
-    },
-    {
-       "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
-       "effecters" : [{
-           "set" : {
-               "id" : 257,
-               "size" : 1,
-               "states" : [0,1,4]
-           },
-           "dbus" : {
-               "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
-               "interface": "xyz.openbmc_project.State.Decorator.PowerState",
-               "property_name": "PowerState",
-               "property_type": "string",
-               "property_values": [
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.On",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
-               ]
-           }
-      }]
-    },
-    {
-       "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
-       "effecters" : [{
-           "set" : {
-               "id" : 257,
-               "size" : 1,
-               "states" : [0,1,4]
-           },
-           "dbus" : {
-               "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
-               "interface": "xyz.openbmc_project.State.Decorator.PowerState",
-               "property_name": "PowerState",
-               "property_type": "string",
-               "property_values": [
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.On",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
-               ]
-           }
-      }]
-    },
-    {
-       "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
-       "effecters" : [{
-           "set" : {
-               "id" : 257,
-               "size" : 1,
-               "states" : [0,1,4]
-           },
-           "dbus" : {
-               "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
-               "interface": "xyz.openbmc_project.State.Decorator.PowerState",
-               "property_name": "PowerState",
-               "property_type": "string",
-               "property_values": [
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.On",
-                        "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
-               ]
-           }
-      }]
-    },
-    {
-       "entity_path" : "/xyz/openbmc_project/inventory/system/chassis",
-       "effecters" : [{
-           "set" : {
-               "id" : 260,
-               "size" : 2,
-               "states" : [9]
-           },
-           "dbus" : {
-                "path": "/xyz/openbmc_project/state/chassis0",
-                "interface": "xyz.openbmc_project.State.Chassis",
-                "property_name": "RequestedPowerTransition",
-                "property_type": "string",
-                "property_values":[
-                        "xyz.openbmc_project.State.Chassis.Transition.Off"
-                ]
-           }
-       }]
-    },
-    {
-        "type" : 31,
-        "instance" : 0,
-        "container" : 1,
-        "effecters" : [{
-            "set" : {
-                "id" : 129,
-                "size" : 1,
-                "states" : [6]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/state/host0",
-                "interface": "xyz.openbmc_project.State.Host",
-                "property_name": "RequestedHostTransition",
-                "property_type": "string",
-                "property_values": [
-                        "xyz.openbmc_project.State.Host.Transition.GracefulWarmReboot"
-                ]
-            }
-        }]
-     },
-     {
-         "type" : 137,
-         "instance" : 0,
-         "container" : 3,
-         "effecters" : [{
-             "set" : {
-                 "id" : 2,
-                 "size" : 2,
-                 "states" :[8]
-             },
-             "dbus" :{
-                 "path" : "/xyz/openbmc_project/state/bmc0",
-                 "interface" : "xyz.openbmc_project.State.BMC",
-                 "property_name" : "RequestedBMCTransition",
-                 "property_type" : "string",
-                 "property_values" :[
-                     "xyz.openbmc_project.State.BMC.Transition.Reboot"
-                 ]
-             }
-         }]
-     }]
-  },
-  {
-    "pdrType" : 9,
-    "entries" : [{
-        "entity_path":"/xyz/openbmc_project/inventory/system",
-        "base_unit":72,
-        "rate_unit":0,
-        "effecter_resolutioninit":1,
-        "effecter_data_size":0,
-        "range_field_format":3,
-        "dbus" : {
-                "path": "/xyz/openbmc_project/state/host0",
-                "interface": "xyz.openbmc_project.Control.Boot.RebootAttempts",
-                "property_name": "AttemptsLeft",
-                "property_type": "uint32_t"
+    "effecterPDRs": [
+        {
+            "pdrType": 11,
+            "entries": [
+                {
+                    "type": 45,
+                    "instance": 1,
+                    "container": 1,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/enclosure_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/base_op_panel_blyth",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/base_blyth_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/ebmc_card_bmc",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/bmc_ingraham_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_bot",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard0_cxp_bot_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_top",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard0_cxp_top_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_bot",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard3_cxp_bot_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_top",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard3_cxp_top_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_bot",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard4_cxp_bot_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_top",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard4_cxp_top_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_bot",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard10_cxp_bot_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_top",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard10_cxp_top_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 1,
+                    "container": 4,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 2,
+                    "container": 4,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 3,
+                    "container": 4,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 4,
+                    "container": 4,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu0_vrm0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu1_vrm0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid2_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 1,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 2,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 3,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm2_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 4,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm3_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 5,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm4_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 6,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm5_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 7,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm6_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 8,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm7_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 9,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm8_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 10,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm9_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 11,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm10_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 12,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm11_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 13,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm12_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 14,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm13_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 15,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm14_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 16,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm15_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 17,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm16_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 18,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm17_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 19,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm18_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 20,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm19_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 21,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm20_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 22,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm21_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 23,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm22_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 24,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm23_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 25,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm24_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 26,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm25_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 27,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm26_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 28,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm27_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 29,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm28_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 30,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm29_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 31,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm30_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 32,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm31_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan2_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan3_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan4",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan4_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan5",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan5_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/lcd_op_panel_hill",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/lcd_russel_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme2_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme3",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme3_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme4",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme4_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme5",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme5_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme6",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme6_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme7",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme7_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme8_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme9_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme10_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme3",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme11_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme4",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme12_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme5",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme13_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme6",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme14_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme7",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme15_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme16_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme17_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme18_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme3",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme19_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme4",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme20_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme5",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme21_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme6",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme22_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme7",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme23_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot2_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot3_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot4_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot6_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot7_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot8_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot9_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot10_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot11_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/planar_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/powersupply0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/powersupply1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/powersupply2_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply3",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/powersupply3_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/tod_battery",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/rtc_battery_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/tpm_wilson",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/tpm_wilson_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 45,
+                    "instance": 1,
+                    "container": 1,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/enclosure_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/base_op_panel_blyth",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/base_op_panel_blyth",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/ebmc_card_bmc",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/ebmc_card_bmc",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_bot",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_bot",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_top",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_top",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_bot",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_bot",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_top",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_top",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_bot",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_bot",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_top",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_top",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_bot",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_bot",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_top",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_top",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 1,
+                    "container": 4,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dcm0/cpu0",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 2,
+                    "container": 4,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dcm0/cpu1",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 3,
+                    "container": 4,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dcm1/cpu0",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 4,
+                    "container": 4,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dcm1/cpu1",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm0",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm1",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 1,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm0",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 2,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm1",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 3,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm2",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 4,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm3",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 5,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm4",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 6,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm5",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 7,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm6",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 8,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm7",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 9,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm8",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 10,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm9",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 11,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm10",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 12,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm11",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 13,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm12",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 14,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm13",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 15,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm14",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 16,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm15",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 17,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm16",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 18,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm17",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 19,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm18",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 20,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm19",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 21,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm20",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 22,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm21",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 23,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm22",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 24,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm23",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 25,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm24",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 26,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm25",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 27,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm26",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 28,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm27",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 29,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm28",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 30,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm29",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 31,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm30",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 32,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/dimm31",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan4",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan4",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan5",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan5",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/lcd_op_panel_hill",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/lcd_op_panel_hill",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme0",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme1",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme2",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme3",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme3",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme4",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme4",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme5",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme5",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme6",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme6",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme7",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme7",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme0",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme1",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme2",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme3",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme3",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme4",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme4",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme5",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme5",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme6",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme6",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme7",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme7",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme0",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme1",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme2",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme3",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme3",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme4",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme4",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme5",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme5",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme6",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme6",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme7",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme7",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply2",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply3",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply3",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/tod_battery",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/tod_battery",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/tpm_wilson",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/tpm_wilson",
+                                "interface": "xyz.openbmc_project.State.Decorator.OperationalStatus",
+                                "property_name": "Functional",
+                                "property_type": "bool",
+                                "property_values": [true, false]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 257,
+                                "size": 1,
+                                "states": [0, 1, 4]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
+                                "interface": "xyz.openbmc_project.State.Decorator.PowerState",
+                                "property_name": "PowerState",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.On",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 257,
+                                "size": 1,
+                                "states": [0, 1, 4]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
+                                "interface": "xyz.openbmc_project.State.Decorator.PowerState",
+                                "property_name": "PowerState",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.On",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 257,
+                                "size": 1,
+                                "states": [0, 1, 4]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
+                                "interface": "xyz.openbmc_project.State.Decorator.PowerState",
+                                "property_name": "PowerState",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.On",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 257,
+                                "size": 1,
+                                "states": [0, 1, 4]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
+                                "interface": "xyz.openbmc_project.State.Decorator.PowerState",
+                                "property_name": "PowerState",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.On",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 257,
+                                "size": 1,
+                                "states": [0, 1, 4]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
+                                "interface": "xyz.openbmc_project.State.Decorator.PowerState",
+                                "property_name": "PowerState",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.On",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 257,
+                                "size": 1,
+                                "states": [0, 1, 4]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
+                                "interface": "xyz.openbmc_project.State.Decorator.PowerState",
+                                "property_name": "PowerState",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.On",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 257,
+                                "size": 1,
+                                "states": [0, 1, 4]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
+                                "interface": "xyz.openbmc_project.State.Decorator.PowerState",
+                                "property_name": "PowerState",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.On",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 257,
+                                "size": 1,
+                                "states": [0, 1, 4]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
+                                "interface": "xyz.openbmc_project.State.Decorator.PowerState",
+                                "property_name": "PowerState",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.On",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 257,
+                                "size": 1,
+                                "states": [0, 1, 4]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
+                                "interface": "xyz.openbmc_project.State.Decorator.PowerState",
+                                "property_name": "PowerState",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.On",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 257,
+                                "size": 1,
+                                "states": [0, 1, 4]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
+                                "interface": "xyz.openbmc_project.State.Decorator.PowerState",
+                                "property_name": "PowerState",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.On",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 257,
+                                "size": 1,
+                                "states": [0, 1, 4]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
+                                "interface": "xyz.openbmc_project.State.Decorator.PowerState",
+                                "property_name": "PowerState",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Unknown",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.On",
+                                    "xyz.openbmc_project.State.Decorator.PowerState.State.Off"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis",
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 260,
+                                "size": 2,
+                                "states": [9]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/state/chassis0",
+                                "interface": "xyz.openbmc_project.State.Chassis",
+                                "property_name": "RequestedPowerTransition",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.Chassis.Transition.Off"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 31,
+                    "instance": 0,
+                    "container": 1,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 129,
+                                "size": 1,
+                                "states": [6]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/state/host0",
+                                "interface": "xyz.openbmc_project.State.Host",
+                                "property_name": "RequestedHostTransition",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.Host.Transition.GracefulWarmReboot"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 137,
+                    "instance": 0,
+                    "container": 3,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 2,
+                                "size": 2,
+                                "states": [8]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/state/bmc0",
+                                "interface": "xyz.openbmc_project.State.BMC",
+                                "property_name": "RequestedBMCTransition",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.State.BMC.Transition.Reboot"
+                                ]
+                            }
+                        }
+                    ]
+                }
+            ]
+        },
+        {
+            "pdrType": 9,
+            "entries": [
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system",
+                    "base_unit": 72,
+                    "rate_unit": 0,
+                    "effecter_resolutioninit": 1,
+                    "effecter_data_size": 0,
+                    "range_field_format": 3,
+                    "dbus": {
+                        "path": "/xyz/openbmc_project/state/host0",
+                        "interface": "xyz.openbmc_project.Control.Boot.RebootAttempts",
+                        "property_name": "AttemptsLeft",
+                        "property_type": "uint32_t"
+                    }
+                },
+                {
+                    "type": 31,
+                    "instance": 0,
+                    "container": 1,
+                    "base_unit": 21,
+                    "rate_unit": 0,
+                    "effecter_resolution_init": 1,
+                    "effecter_data_size": 4,
+                    "range_field_format": 4,
+                    "dbus": {
+                        "path": "/xyz/openbmc_project/state/host0",
+                        "interface": "xyz.openbmc_project.State.ScheduledHostTransition",
+                        "property_name": "ScheduledTime",
+                        "property_type": "uint64_t"
+                    }
+                }
+            ]
         }
-    },
-    {
-      "type": 31,
-      "instance": 0,
-      "container" : 1,
-      "base_unit": 21,
-      "rate_unit": 0,
-      "effecter_resolution_init": 1,
-      "effecter_data_size": 4,
-      "range_field_format": 4,
-      "dbus" : {
-              "path":"/xyz/openbmc_project/state/host0",
-              "interface":"xyz.openbmc_project.State.ScheduledHostTransition",
-              "property_name":"ScheduledTime",
-              "property_type":"uint64_t"
-      }
-    }]
-   }]
+    ]
 }
-
diff --git a/configurations/pdr/4.json b/configurations/pdr/4.json
index b311410..98a8a3c 100644
--- a/configurations/pdr/4.json
+++ b/configurations/pdr/4.json
@@ -1,3652 +1,4064 @@
 {
- "sensorPDRs": [
-    {
-    "pdrType" : 4,
-    "entries" : [{
-        "type" : 91,
-        "instance" : 0,
-        "container" : 1,
-        "sensors" : [{
-            "set" : {
-                "id" : 21,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/alerts/thermal_fault_alert",
-                "interface": "xyz.openbmc_project.Object.Enable",
-                "property_name": "Enabled",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 5,
-        "instance" : 0,
-        "container" : 1,
-        "sensors" : [{
-            "set" : {
-                "id" : 1,
-                "size" : 2,
-                "states" : [1,9]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/sensors/temperature/Ambient_Virtual_Temp",
-                "interface": "xyz.openbmc_project.Sensor.Threshold.HardShutdown",
-                "property_name": "HardShutdownAlarmHigh",
-                "property_type": "bool",
-                "property_values" : [false, true]
-            }
-        }]
-    },
-    {
-        "type" : 5,
-        "instance" : 0,
-        "container" : 1,
-        "sensors" : [{
-            "set" : {
-                "id" : 1,
-                "size" : 1,
-                "states" : [1,7]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/sensors/temperature/Ambient_Virtual_Temp",
-                "interface": "xyz.openbmc_project.Sensor.Threshold.SoftShutdown",
-                "property_name": "SoftShutdownAlarmHigh",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 45,
-        "instance" : 1,
-        "container" : 1,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/physical/virtual_enc_id",
-                "interface": "xyz.openbmc_project.Led.Physical",
-                "property_name": "State",
-                "property_type": "string",
-                "property_values": [
-                         "xyz.openbmc_project.Led.Physical.Action.Off",
-                         "xyz.openbmc_project.Led.Physical.Action.On || xyz.openbmc_project.Led.Physical.Action.Blink"
-                ]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/base_op_panel_blyth",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/base_blyth_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/ebmc_card_bmc",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/bmc_ingraham_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_bot",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard0_cxp_bot_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_top",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard0_cxp_top_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_bot",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard3_cxp_bot_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_top",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard3_cxp_top_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_bot",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard4_cxp_bot_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_top",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard4_cxp_top_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_bot",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard10_cxp_bot_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_top",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard10_cxp_top_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 1,
-        "container" : 4,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 2,
-        "container" : 4,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 3,
-        "container" : 4,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 4,
-        "container" : 4,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm0",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu0_vrm0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm1",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu1_vrm0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid2_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 1,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 2,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 3,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm2_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 4,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm3_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 5,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm4_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 6,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm5_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 7,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm6_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 8,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm7_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 9,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm8_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 10,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm9_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 11,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm10_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 12,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm11_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 13,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm12_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 14,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm13_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 15,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm14_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 16,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm15_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 17,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm16_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 18,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm17_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 19,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm18_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 20,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm19_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 21,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm20_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 22,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm21_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 23,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm22_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 24,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm23_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 25,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm24_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 26,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm25_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 27,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm26_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 28,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm27_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 29,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm28_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 30,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm29_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 31,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm30_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 32,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm31_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan2_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan3_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan4",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan4_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan5",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan5_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/lcd_op_panel_hill",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/lcd_russel_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme0",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme1",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme2",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme2_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme3",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme3_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme4",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme4_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme5",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme5_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme6",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme6_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme7",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme7_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme0",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme8_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme1",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme9_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme2",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme10_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme3",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme11_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme4",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme12_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme5",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme13_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme6",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme14_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme7",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme15_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme0",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme16_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme1",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme17_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme2",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme18_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme3",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme19_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme4",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme20_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme5",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme21_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme6",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme22_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme7",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme23_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot2_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot3_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot4_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot6_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot7_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot8_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot9_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot10_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot11_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/planar_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/powersupply0_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/powersupply1_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply2",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/powersupply2_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply3",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/powersupply3_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/tod_battery",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/rtc_battery_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/tpm_wilson",
-        "sensors" : [{
-            "set" : {
-                "id" : 17,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/tpm_wilson_identify",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 45,
-        "instance" : 1,
-        "container" : 1,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/physical/virtual_enc_fault",
-                "interface": "xyz.openbmc_project.Led.Physical",
-                "property_name": "State",
-                "property_type": "string",
-                "property_values": [
-                         "xyz.openbmc_project.Led.Physical.Action.Off",
-                         "xyz.openbmc_project.Led.Physical.Action.On || xyz.openbmc_project.Led.Physical.Action.Blink"
-                ]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/base_op_panel_blyth",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/base_blyth_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/ebmc_card_bmc",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/bmc_ingraham_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_bot",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard0_cxp_bot_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_top",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard0_cxp_top_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_bot",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard3_cxp_bot_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_top",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard3_cxp_top_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_bot",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard4_cxp_bot_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_top",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard4_cxp_top_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_bot",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard10_cxp_bot_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_top",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cablecard10_cxp_top_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 1,
-        "container" : 4,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu0_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 2,
-        "container" : 4,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu0_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 3,
-        "container" : 4,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu1_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 135,
-        "instance" : 4,
-        "container" : 4,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu1_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm0",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu0_vrm0_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm1",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/cpu1_vrm0_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid0_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid1_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid2_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 1,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm0_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 2,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm1_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 3,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm2_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 4,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm3_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 5,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm4_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 6,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm5_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 7,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm6_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 8,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm7_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 9,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm8_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 10,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm9_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 11,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm10_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 12,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm11_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 13,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm12_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 14,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm13_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 15,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm14_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 16,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm15_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 17,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm16_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 18,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm17_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 19,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm18_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 20,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm19_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 21,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm20_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 22,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm21_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 23,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm22_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 24,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm23_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 25,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm24_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 26,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm25_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 27,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm26_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 28,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm27_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 29,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm28_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 30,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm29_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 31,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm30_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "type" : 66,
-        "instance" : 32,
-        "container" : 3,
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/ddimm31_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan0_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan1_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan2_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan3_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan4",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan4_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan5",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/fan5_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/lcd_op_panel_hill",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/lcd_russel_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme0",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme0_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme1",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme1_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme2",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme2_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme3",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme3_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme4",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme4_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme5",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme5_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme6",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme6_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme7",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme7_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme0",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme8_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme1",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme9_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme2",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme10_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme3",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme11_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme4",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme12_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme5",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme13_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme6",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme14_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme7",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme15_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme0",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme16_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme1",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme17_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme2",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme18_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme3",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme19_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme4",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme20_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme5",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme21_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme6",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme22_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme7",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/nvme23_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot0_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot1_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot2_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot3_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot4_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot6_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot7_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot8_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot9_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot10_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/pcieslot11_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/planar_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/powersupply0_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/powersupply1_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply2",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/powersupply2_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply3",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/powersupply3_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/tod_battery",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/rtc_battery_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    },
-    {
-        "entity_path" : "/xyz/openbmc_project/inventory/system/chassis/motherboard/tpm_wilson",
-        "sensors" : [{
-            "set" : {
-                "id" : 10,
-                "size" : 1,
-                "states" : [1,2]
-            },
-            "dbus" : {
-                "path": "/xyz/openbmc_project/led/groups/tpm_wilson_fault",
-                "interface": "xyz.openbmc_project.Led.Group",
-                "property_name": "Asserted",
-                "property_type": "bool",
-                "property_values" : [false, true]
-             }
-        }]
-    }]
-  }]
+    "sensorPDRs": [
+        {
+            "pdrType": 4,
+            "entries": [
+                {
+                    "type": 91,
+                    "instance": 0,
+                    "container": 1,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 21,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/alerts/thermal_fault_alert",
+                                "interface": "xyz.openbmc_project.Object.Enable",
+                                "property_name": "Enabled",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 5,
+                    "instance": 0,
+                    "container": 1,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 1,
+                                "size": 2,
+                                "states": [1, 9]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/sensors/temperature/Ambient_Virtual_Temp",
+                                "interface": "xyz.openbmc_project.Sensor.Threshold.HardShutdown",
+                                "property_name": "HardShutdownAlarmHigh",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 5,
+                    "instance": 0,
+                    "container": 1,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 1,
+                                "size": 1,
+                                "states": [1, 7]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/sensors/temperature/Ambient_Virtual_Temp",
+                                "interface": "xyz.openbmc_project.Sensor.Threshold.SoftShutdown",
+                                "property_name": "SoftShutdownAlarmHigh",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 45,
+                    "instance": 1,
+                    "container": 1,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/physical/virtual_enc_id",
+                                "interface": "xyz.openbmc_project.Led.Physical",
+                                "property_name": "State",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.Led.Physical.Action.Off",
+                                    "xyz.openbmc_project.Led.Physical.Action.On || xyz.openbmc_project.Led.Physical.Action.Blink"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/base_op_panel_blyth",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/base_blyth_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/ebmc_card_bmc",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/bmc_ingraham_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_bot",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard0_cxp_bot_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_top",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard0_cxp_top_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_bot",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard3_cxp_bot_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_top",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard3_cxp_top_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_bot",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard4_cxp_bot_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_top",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard4_cxp_top_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_bot",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard10_cxp_bot_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_top",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard10_cxp_top_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 1,
+                    "container": 4,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 2,
+                    "container": 4,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 3,
+                    "container": 4,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 4,
+                    "container": 4,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu0_vrm0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu1_vrm0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid2_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 1,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 2,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 3,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm2_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 4,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm3_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 5,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm4_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 6,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm5_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 7,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm6_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 8,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm7_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 9,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm8_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 10,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm9_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 11,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm10_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 12,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm11_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 13,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm12_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 14,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm13_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 15,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm14_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 16,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm15_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 17,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm16_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 18,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm17_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 19,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm18_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 20,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm19_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 21,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm20_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 22,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm21_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 23,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm22_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 24,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm23_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 25,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm24_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 26,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm25_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 27,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm26_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 28,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm27_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 29,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm28_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 30,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm29_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 31,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm30_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 32,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm31_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan2_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan3_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan4",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan4_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan5",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan5_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/lcd_op_panel_hill",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/lcd_russel_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme2_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme3",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme3_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme4",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme4_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme5",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme5_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme6",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme6_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme7",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme7_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme8_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme9_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme10_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme3",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme11_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme4",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme12_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme5",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme13_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme6",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme14_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme7",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme15_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme16_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme17_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme18_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme3",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme19_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme4",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme20_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme5",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme21_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme6",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme22_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme7",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme23_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot2_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot3_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot4_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot6_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot7_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot8_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot9_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot10_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot11_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/planar_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/powersupply0_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/powersupply1_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/powersupply2_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply3",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/powersupply3_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/tod_battery",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/rtc_battery_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/tpm_wilson",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 17,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/tpm_wilson_identify",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 45,
+                    "instance": 1,
+                    "container": 1,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/physical/virtual_enc_fault",
+                                "interface": "xyz.openbmc_project.Led.Physical",
+                                "property_name": "State",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.Led.Physical.Action.Off",
+                                    "xyz.openbmc_project.Led.Physical.Action.On || xyz.openbmc_project.Led.Physical.Action.Blink"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/base_op_panel_blyth",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/base_blyth_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/ebmc_card_bmc",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/bmc_ingraham_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_bot",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard0_cxp_bot_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0/pcie_card0/cxp_top",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard0_cxp_top_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_bot",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard3_cxp_bot_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3/pcie_card3/cxp_top",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard3_cxp_top_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_bot",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard4_cxp_bot_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4/pcie_card4/cxp_top",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard4_cxp_top_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_bot",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard10_cxp_bot_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10/pcie_card10/cxp_top",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cablecard10_cxp_top_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 1,
+                    "container": 4,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu0_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 2,
+                    "container": 4,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu0_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 3,
+                    "container": 4,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu1_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 135,
+                    "instance": 4,
+                    "container": 4,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu1_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu0_vrm0_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/vdd_vrm1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/cpu1_vrm0_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid0_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid1_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/dasd_pyramid2_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 1,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm0_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 2,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm1_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 3,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm2_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 4,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm3_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 5,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm4_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 6,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm5_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 7,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm6_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 8,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm7_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 9,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm8_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 10,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm9_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 11,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm10_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 12,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm11_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 13,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm12_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 14,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm13_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 15,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm14_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 16,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm15_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 17,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm16_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 18,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm17_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 19,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm18_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 20,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm19_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 21,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm20_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 22,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm21_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 23,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm22_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 24,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm23_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 25,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm24_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 26,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm25_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 27,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm26_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 28,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm27_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 29,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm28_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 30,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm29_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 31,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm30_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "type": 66,
+                    "instance": 32,
+                    "container": 3,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/ddimm31_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan0_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan1_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan2_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan3",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan3_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan4",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan4_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/fan5",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/fan5_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/lcd_op_panel_hill",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/lcd_russel_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme0_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme1_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme2_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme3",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme3_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme4",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme4_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme5",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme5_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme6",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme6_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane0/nvme7",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme7_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme8_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme9_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme10_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme3",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme11_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme4",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme12_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme5",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme13_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme6",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme14_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane1/nvme7",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme15_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme16_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme17_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme18_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme3",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme19_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme4",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme20_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme5",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme21_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme6",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme22_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/disk_backplane2/nvme7",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/nvme23_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot0_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot1_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot2_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot3",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot3_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot4",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot4_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot6",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot6_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot7",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot7_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot8",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot8_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot9",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot9_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot10",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot10_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/pcieslot11",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/pcieslot11_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/planar_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/powersupply0_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply1",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/powersupply1_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply2",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/powersupply2_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply3",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/powersupply3_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/tod_battery",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/rtc_battery_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/inventory/system/chassis/motherboard/tpm_wilson",
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 10,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/xyz/openbmc_project/led/groups/tpm_wilson_fault",
+                                "interface": "xyz.openbmc_project.Led.Group",
+                                "property_name": "Asserted",
+                                "property_type": "bool",
+                                "property_values": [false, true]
+                            }
+                        }
+                    ]
+                }
+            ]
+        }
+    ]
 }
-
diff --git a/host-bmc/test/host_effecter_jsons/good/dbus_to_host_effecter.json b/host-bmc/test/host_effecter_jsons/good/dbus_to_host_effecter.json
index dd95b17..5ae694c 100644
--- a/host-bmc/test/host_effecter_jsons/good/dbus_to_host_effecter.json
+++ b/host-bmc/test/host_effecter_jsons/good/dbus_to_host_effecter.json
@@ -20,18 +20,12 @@
                             "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular"
                         ]
                     },
-                    "state" : {
-                        "id" : 196,
-                        "state_values": [
-                            2
-                            ]
+                    "state": {
+                        "id": 196,
+                        "state_values": [2]
                     }
                 }
-
             ]
-
         }
-
     ]
-
 }
diff --git a/libpldmresponder/examples/bios/enum_attrs.json b/libpldmresponder/examples/bios/enum_attrs.json
index e18ffef..bbf04ec 100644
--- a/libpldmresponder/examples/bios/enum_attrs.json
+++ b/libpldmresponder/examples/bios/enum_attrs.json
@@ -1,53 +1,53 @@
 // This is a sample JSON configuration file for BIOS enumeration type
 {
-   "entries":[
-      {
-         "attribute_name" : "HMCManagedState",
-         "possible_values" : [ "On", "Off" ],
-         "default_values" : [ "On" ],
-         // This BIOS attribute has a D-Bus property as backend.
-         "dbus":
-            {
-               "object_path" : "/xyz/abc/def",
-               "interface" : "xyz.openbmc_project.HMCManaged.State",
-               "property_name" : "State",
-               "property_type" : "string",
-               // Number of property_values should match to the number of possible values.
-               // Each is entry in the possible_values is mapped to entry in property_values.
-               "property_values" : ["xyz.openbmc_project.State.On", "xyz.openbmc_project.State.Off"]
+    "entries": [
+        {
+            "attribute_name": "HMCManagedState",
+            "possible_values": ["On", "Off"],
+            "default_values": ["On"],
+            // This BIOS attribute has a D-Bus property as backend.
+            "dbus": {
+                "object_path": "/xyz/abc/def",
+                "interface": "xyz.openbmc_project.HMCManaged.State",
+                "property_name": "State",
+                "property_type": "string",
+                // Number of property_values should match to the number of possible values.
+                // Each is entry in the possible_values is mapped to entry in property_values.
+                "property_values": [
+                    "xyz.openbmc_project.State.On",
+                    "xyz.openbmc_project.State.Off"
+                ]
             }
-      },
-      {
-         "attribute_name" : "FWBootSide",
-         "possible_values" : [ "Perm", "Temp" ],
-         "default_values" : [ "Perm" ],
-         "dbus":
-            {
-               "object_path" : "/xyz/abc/def",
-               "interface" : "xyz.openbmc.FWBoot.Side",
-               "property_name" : "Side",
-               "property_type" : "bool",
-               "property_values" : [true, false]
+        },
+        {
+            "attribute_name": "FWBootSide",
+            "possible_values": ["Perm", "Temp"],
+            "default_values": ["Perm"],
+            "dbus": {
+                "object_path": "/xyz/abc/def",
+                "interface": "xyz.openbmc.FWBoot.Side",
+                "property_name": "Side",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
-      },
-      {
-         "attribute_name" : "InbandCodeUpdate",
-         "possible_values" : [ "Allowed", "NotAllowed" ],
-         "default_values" : [ "Allowed" ],
-         "dbus":
-            {
-               "object_path" : "/xyz/abc/def",
-               "interface" : "xyz.openbmc.InBandCodeUpdate",
-               "property_name" : "Policy",
-               "property_type" : "uint8_t",
-               "property_values" : [0, 1]
+        },
+        {
+            "attribute_name": "InbandCodeUpdate",
+            "possible_values": ["Allowed", "NotAllowed"],
+            "default_values": ["Allowed"],
+            "dbus": {
+                "object_path": "/xyz/abc/def",
+                "interface": "xyz.openbmc.InBandCodeUpdate",
+                "property_name": "Policy",
+                "property_type": "uint8_t",
+                "property_values": [0, 1]
             }
-      },
-      {
-         // This is an example of BIOS Enumeration Read only attribute
-         "attribute_name" : "CodeUpdatePolicy",
-         "possible_values" : [ "Concurrent", "Disruptive" ],
-         "default_values" : [ "Concurrent" ]
-      }
+        },
+        {
+            // This is an example of BIOS Enumeration Read only attribute
+            "attribute_name": "CodeUpdatePolicy",
+            "possible_values": ["Concurrent", "Disruptive"],
+            "default_values": ["Concurrent"]
+        }
     ]
 }
diff --git a/libpldmresponder/examples/bios/integer_attrs.json b/libpldmresponder/examples/bios/integer_attrs.json
index 17f16c1..aecc26d 100644
--- a/libpldmresponder/examples/bios/integer_attrs.json
+++ b/libpldmresponder/examples/bios/integer_attrs.json
@@ -1,35 +1,35 @@
 {
-   "entries":[
-      {
-         "attribute_name" : "VDD_AVSBUS_RAIL",
-         "lower_bound" : 0,
-         "upper_bound" : 15,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         // This BIOS attribute has a D-Bus property as backend.
-         "dbus":{
-            "object_path" : "/xyz/openbmc_project/avsbus",
-            "interface" : "xyz.openbmc.AvsBus.Manager",
-            "property_type" : "uint8_t",
-            "property_name" : "Rail"
-         }
-      },
-      {
-         // This is an example of BIOS Integer Read only attribute
-         "attribute_name" : "SBE_IMAGE_MINIMUM_VALID_ECS",
-         "lower_bound" : 1,
-         "upper_bound" : 15,
-         "scalar_increment" : 1,
-         "default_value" : 2
-      },
-      {
-         // This atttribute has invalid default value or scalar_increment, when
-         // scalar_increment=2 and lower_bound=1, default_value must be 1, 3, 5...
-         "attribute_name" : "INTEGER_INVALID_CASE",
-         "lower_bound" : 1,
-         "upper_bound" : 15,
-         "scalar_increment" : 2,
-         "default_value" : 4
-      }
-   ]
+    "entries": [
+        {
+            "attribute_name": "VDD_AVSBUS_RAIL",
+            "lower_bound": 0,
+            "upper_bound": 15,
+            "scalar_increment": 1,
+            "default_value": 0,
+            // This BIOS attribute has a D-Bus property as backend.
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/avsbus",
+                "interface": "xyz.openbmc.AvsBus.Manager",
+                "property_type": "uint8_t",
+                "property_name": "Rail"
+            }
+        },
+        {
+            // This is an example of BIOS Integer Read only attribute
+            "attribute_name": "SBE_IMAGE_MINIMUM_VALID_ECS",
+            "lower_bound": 1,
+            "upper_bound": 15,
+            "scalar_increment": 1,
+            "default_value": 2
+        },
+        {
+            // This atttribute has invalid default value or scalar_increment, when
+            // scalar_increment=2 and lower_bound=1, default_value must be 1, 3, 5...
+            "attribute_name": "INTEGER_INVALID_CASE",
+            "lower_bound": 1,
+            "upper_bound": 15,
+            "scalar_increment": 2,
+            "default_value": 4
+        }
+    ]
 }
diff --git a/libpldmresponder/examples/bios/string_attrs.json b/libpldmresponder/examples/bios/string_attrs.json
index 2e2eaf1..81b806e 100644
--- a/libpldmresponder/examples/bios/string_attrs.json
+++ b/libpldmresponder/examples/bios/string_attrs.json
@@ -1,47 +1,45 @@
 // This is a sample JSON configuration file for BIOS string type
 {
-   "entries":[
-      {
-         "attribute_name" : "str_example1",
-         // Possible values of string type {Unknown=0x00, ASCII=0x01, Hex=0x02,
-         // UTF-8=0x03, UTF-16LE=0x04, UTF-16BE=0x05, Vendor Specific=0xFF}
-         "string_type" : "ASCII",
-         "minimum_string_length" : 1,
-         "maximum_string_length" : 100,
-         "default_string_length" : 3,
-         "default_string" : "abc",
-         // This BIOS attribute has a D-Bus property as backend.
-         "dbus":
-            {
-               "object_path" : "/xyz/abc/def",
-               "interface" : "xyz.openbmc_project.str_example1.value",
-               "property_name" : "Str_example1",
-               "property_type" : "string"
+    "entries": [
+        {
+            "attribute_name": "str_example1",
+            // Possible values of string type {Unknown=0x00, ASCII=0x01, Hex=0x02,
+            // UTF-8=0x03, UTF-16LE=0x04, UTF-16BE=0x05, Vendor Specific=0xFF}
+            "string_type": "ASCII",
+            "minimum_string_length": 1,
+            "maximum_string_length": 100,
+            "default_string_length": 3,
+            "default_string": "abc",
+            // This BIOS attribute has a D-Bus property as backend.
+            "dbus": {
+                "object_path": "/xyz/abc/def",
+                "interface": "xyz.openbmc_project.str_example1.value",
+                "property_name": "Str_example1",
+                "property_type": "string"
             }
-      },
-      {
-         "attribute_name" : "str_example2",
-         "string_type" : "Hex",
-         "minimum_string_length" : 0,
-         "maximum_string_length" : 100,
-         "default_string_length" : 0,
-         "default_string" : "",
-         "dbus":
-            {
-               "object_path" : "/xyz/abc/def",
-               "interface" : "xyz.openbmc_project.str_example2.value",
-               "property_name" : "Str_example2",
-               "property_type" : "string"
+        },
+        {
+            "attribute_name": "str_example2",
+            "string_type": "Hex",
+            "minimum_string_length": 0,
+            "maximum_string_length": 100,
+            "default_string_length": 0,
+            "default_string": "",
+            "dbus": {
+                "object_path": "/xyz/abc/def",
+                "interface": "xyz.openbmc_project.str_example2.value",
+                "property_name": "Str_example2",
+                "property_type": "string"
             }
-      },
-      {
-         // This is an example of BIOS String Read only attribute
-         "attribute_name" : "str_example3",
-         "string_type" : "Unknown",
-         "minimum_string_length" : 1,
-         "maximum_string_length" : 100,
-         "default_string_length" : 2,
-         "default_string" : "ef"
-      }
+        },
+        {
+            // This is an example of BIOS String Read only attribute
+            "attribute_name": "str_example3",
+            "string_type": "Unknown",
+            "minimum_string_length": 1,
+            "maximum_string_length": 100,
+            "default_string_length": 2,
+            "default_string": "ef"
+        }
     ]
 }
diff --git a/libpldmresponder/examples/effecter/dbus_to_host_effecter.json b/libpldmresponder/examples/effecter/dbus_to_host_effecter.json
index 4646693..ecff34d 100644
--- a/libpldmresponder/examples/effecter/dbus_to_host_effecter.json
+++ b/libpldmresponder/examples/effecter/dbus_to_host_effecter.json
@@ -17,11 +17,11 @@
             },
             "effecters": [
                 {
-                // Following are the D-Bus information under each effecter
-                // which are monitored for a property change signal
+                    // Following are the D-Bus information under each effecter
+                    // which are monitored for a property change signal
 
-                // if there is a property change, the corresponding
-                // state value is picked up to set the host effecter
+                    // if there is a property change, the corresponding
+                    // state value is picked up to set the host effecter
 
                     "dbus_info": {
                         "object_path": "/xyz/abc/def",
@@ -33,14 +33,11 @@
                             "xyz.openbmc_project.State.Off"
                         ]
                     },
-                    "state" : {
-                        "id" : 197,
+                    "state": {
+                        "id": 197,
                         // This should be of same size and order as
                         // property_values
-                        "state_values": [
-                            0,
-                            1
-                        ]
+                        "state_values": [0, 1]
                     }
                 },
                 {
@@ -49,17 +46,11 @@
                         "interface": "xyz.openbmc_project.example1.value",
                         "property_name": "value2",
                         "property_type": "uint8_t",
-                        "property_values": [
-                            9,
-                            10
-                        ]
+                        "property_values": [9, 10]
                     },
-                    "state" : {
-                        "id" : 12,
-                        "state_values": [
-                            2,
-                            3
-                        ]
+                    "state": {
+                        "id": 12,
+                        "state_values": [2, 3]
                     }
                 },
                 {
@@ -68,17 +59,11 @@
                         "interface": "xyz.openbmc_project.example3.value",
                         "property_name": "value3",
                         "property_type": "bool",
-                        "property_values": [
-                            false,
-                            true
-                        ]
+                        "property_values": [false, true]
                     },
-                    "state" : {
-                        "id" : 12,
-                        "state_values": [
-                            0,
-                            1
-                        ]
+                    "state": {
+                        "id": 12,
+                        "state_values": [0, 1]
                     }
                 }
             ]
@@ -104,12 +89,9 @@
                             "xyz.openbmc_project.State.Disabled"
                         ]
                     },
-                    "state" : {
-                        "id" : 15,
-                        "state_values": [
-                            3,
-                            4
-                        ]
+                    "state": {
+                        "id": 15,
+                        "state_values": [3, 4]
                     }
                 }
             ]
diff --git a/libpldmresponder/examples/events/event_state_sensor.json b/libpldmresponder/examples/events/event_state_sensor.json
index 17ce751..d59366f 100644
--- a/libpldmresponder/examples/events/event_state_sensor.json
+++ b/libpldmresponder/examples/events/event_state_sensor.json
@@ -10,10 +10,7 @@
             "entityType": 64,
             "entityInstance": 1,
             "sensorOffset": 0,
-            "event_states": [
-                0,
-                1
-            ],
+            "event_states": [0, 1],
             "dbus": {
                 "object_path": "/xyz/abc/def",
                 "interface": "xyz.openbmc_project.example1.value",
@@ -30,19 +27,13 @@
             "entityType": 64,
             "entityInstance": 1,
             "sensorOffset": 1,
-            "event_states": [
-                2,
-                3
-            ],
+            "event_states": [2, 3],
             "dbus": {
                 "object_path": "/xyz/abc/def",
                 "interface": "xyz.openbmc_project.example2.value",
                 "property_name": "value2",
                 "property_type": "uint8_t",
-                "property_values": [
-                    9,
-                    10
-                ]
+                "property_values": [9, 10]
             }
         },
         {
@@ -50,19 +41,13 @@
             "entityType": 67,
             "entityInstance": 1,
             "sensorOffset": 0,
-            "event_states": [
-                0,
-                1
-            ],
+            "event_states": [0, 1],
             "dbus": {
                 "object_path": "/xyz/abc/ghi",
                 "interface": "xyz.openbmc_project.example3.value",
                 "property_name": "value3",
                 "property_type": "bool",
-                "property_values": [
-                    false,
-                    true
-                ]
+                "property_values": [false, true]
             }
         }
     ]
diff --git a/libpldmresponder/examples/fru/Board_General.json b/libpldmresponder/examples/fru/Board_General.json
index c9914b6..b8132e2 100644
--- a/libpldmresponder/examples/fru/Board_General.json
+++ b/libpldmresponder/examples/fru/Board_General.json
@@ -1,37 +1,33 @@
 // This JSON has the information needed to create General FRU record for FRU of
 // type Board. The FRU fields are based on the PLDM specification DSP0257.
 {
-   "record_details":
-   {
+    "record_details": {
         // FRU Record Type - General FRU Record
-        "fru_record_type" : 1,
+        "fru_record_type": 1,
         // Encoding Type for FRU fields - ASCII
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Board"
-   },
-   "fru_fields":[
-      {
-         // FRU Field Type 3 - Part Number
-         "fru_field_type" : 3,
-         // D-Bus property to read and populate the FRU field
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.Asset",
-               "property_name" : "PartNumber",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            // FRU Field Type 3 - Part Number
+            "fru_field_type": 3,
+            // D-Bus property to read and populate the FRU field
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.Asset",
+                "property_name": "PartNumber",
+                "property_type": "string"
             }
-      },
-      {
-         // FRU Field Type 4 - Serial Number
-         "fru_field_type" : 4,
-         // D-Bus property to read and populate the FRU field
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.Asset",
-               "property_name" : "SerialNumber",
-               "property_type" : "string"
+        },
+        {
+            // FRU Field Type 4 - Serial Number
+            "fru_field_type": 4,
+            // D-Bus property to read and populate the FRU field
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.Asset",
+                "property_name": "SerialNumber",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
-
diff --git a/libpldmresponder/examples/fru/Board_VINI.json b/libpldmresponder/examples/fru/Board_VINI.json
index fbb710a..45936d1 100644
--- a/libpldmresponder/examples/fru/Board_VINI.json
+++ b/libpldmresponder/examples/fru/Board_VINI.json
@@ -1,38 +1,33 @@
 // This JSON has the information needed to create OEM FRU record VINI for FRU of
 // type Board.
 {
-   "record_details":
-   {
+    "record_details": {
         // FRU Record Type - OEM FRU Record
-        "fru_record_type" : 254,
+        "fru_record_type": 254,
         // Encoding Type for FRU fields - ASCII
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Board"
-   },
-   "fru_fields":[
-      {
-         // FRU Field Type 2 - Keyword RT
-         "fru_field_type" : 2,
-         // D-Bus property to read and populate the FRU field
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "RT",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            // FRU Field Type 2 - Keyword RT
+            "fru_field_type": 2,
+            // D-Bus property to read and populate the FRU field
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "RT",
+                "property_type": "string"
             }
-      },
-      {
-         // FRU Field Type 3 - Keyword B3
-         "fru_field_type" : 3,
-         // D-Bus property to read and populate the FRU field
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B3",
-               "property_type" : "bytearray"
+        },
+        {
+            // FRU Field Type 3 - Keyword B3
+            "fru_field_type": 3,
+            // D-Bus property to read and populate the FRU field
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B3",
+                "property_type": "bytearray"
             }
-      }
-
+        }
     ]
 }
-
diff --git a/libpldmresponder/examples/fru/Cpu_General.json b/libpldmresponder/examples/fru/Cpu_General.json
index 3595d79..e0b02d9 100644
--- a/libpldmresponder/examples/fru/Cpu_General.json
+++ b/libpldmresponder/examples/fru/Cpu_General.json
@@ -1,36 +1,33 @@
 // This JSON has the information needed to create General FRU record for FRU of
 // type Cpu. The FRU fields are based on the PLDM specification DSP0257.
 {
-   "record_details":
-   {
+    "record_details": {
         // FRU Record Type - General FRU Record
-        "fru_record_type" : 1,
+        "fru_record_type": 1,
         // Encoding Type for FRU fields - ASCII
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Cpu"
-   },
-   "fru_fields":[
-      {
-         // FRU Field Type 3 - Part Number
-         "fru_field_type" : 3,
-         // D-Bus property to read and populate the FRU field
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.Asset",
-               "property_name" : "PartNumber",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            // FRU Field Type 3 - Part Number
+            "fru_field_type": 3,
+            // D-Bus property to read and populate the FRU field
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.Asset",
+                "property_name": "PartNumber",
+                "property_type": "string"
             }
-      },
-      {
-         // FRU Field Type 4 - Serial Number
-         "fru_field_type" : 4,
-         // D-Bus property to read and populate the FRU field
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.Asset",
-               "property_name" : "SerialNumber",
-               "property_type" : "string"
+        },
+        {
+            // FRU Field Type 4 - Serial Number
+            "fru_field_type": 4,
+            // D-Bus property to read and populate the FRU field
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.Asset",
+                "property_name": "SerialNumber",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/libpldmresponder/examples/fru/FRU_Master.json b/libpldmresponder/examples/fru/FRU_Master.json
index 710c5e1..54aa619 100644
--- a/libpldmresponder/examples/fru/FRU_Master.json
+++ b/libpldmresponder/examples/fru/FRU_Master.json
@@ -12,16 +12,16 @@
 // the OEM record (VINI is a record in IBM IPZ VPD format) for FRU of type Board.
 // For all instances of the same FRU, the same config JSON will apply.
 {
-    "service":"xyz.openbmc_project.Inventory.Manager",
-    "root_path":"/xyz/openbmc_project/inventory",
-    "entities":[
+    "service": "xyz.openbmc_project.Inventory.Manager",
+    "root_path": "/xyz/openbmc_project/inventory",
+    "entities": [
         {
-            "interface" : "xyz.openbmc_project.Inventory.Item.Board",
-            "entity_type" : 64
+            "interface": "xyz.openbmc_project.Inventory.Item.Board",
+            "entity_type": 64
         },
         {
-            "interface" : "xyz.openbmc_project.Inventory.Item.Cpu",
-            "entity_type" : 135
+            "interface": "xyz.openbmc_project.Inventory.Item.Cpu",
+            "entity_type": 135
         }
     ]
 }
diff --git a/libpldmresponder/examples/fru/host_frus.json b/libpldmresponder/examples/fru/host_frus.json
index d0348c1..ad8b62b 100644
--- a/libpldmresponder/examples/fru/host_frus.json
+++ b/libpldmresponder/examples/fru/host_frus.json
@@ -1,22 +1,20 @@
 {
-        "entities":[
-            {
-                // Entity Type 64 from the host has ...
-                "entity_type" : 64,
-                "parent":
-                     {
-                        // ... entity type 100 and instance 1 on the BMC as parent
-                        "entity_type" : 100,
-                        "entity_instance" : 1
-                     }
-            },
-            {
-                "entity_type" : 65,
-                "parent":
-                     {
-                        "entity_type" : 100,
-                        "entity_instance" : 1
-                     }
+    "entities": [
+        {
+            // Entity Type 64 from the host has ...
+            "entity_type": 64,
+            "parent": {
+                // ... entity type 100 and instance 1 on the BMC as parent
+                "entity_type": 100,
+                "entity_instance": 1
             }
-        ]
+        },
+        {
+            "entity_type": 65,
+            "parent": {
+                "entity_type": 100,
+                "entity_instance": 1
+            }
+        }
+    ]
 }
diff --git a/libpldmresponder/examples/pdr/effecter_pdr.json b/libpldmresponder/examples/pdr/effecter_pdr.json
index ccdc7ac..3b7fa06 100644
--- a/libpldmresponder/examples/pdr/effecter_pdr.json
+++ b/libpldmresponder/examples/pdr/effecter_pdr.json
@@ -1,127 +1,115 @@
 {
-  "effecterPDRs": [
-    {
-      "pdrType": 11,
-      "entries": [
+    "effecterPDRs": [
         {
-          "entity_path": "/xyz/openbmc_project/foo",
-          "type": 33,
-          "instance": 0,
-          "container": 0,
-          "effecters": [
-            {
-              "set": {
-                "id": 196,
-                "size": 1,
-                "states": [
-                  1
-                ]
-              },
-              "dbus": {
-                "path": "/foo/bar",
-                "interface": "xyz.openbmc_project.Foo.Bar",
-                "property_name": "propertyName",
-                "property_type": "string",
-                "property_values": [
-                  "xyz.openbmc_project.Foo.Bar.V1"
-                ]
-              }
-            },
-            {
-              "set": {
-                "id": 196,
-                "size": 1,
-                "states": [
-                  1,
-                  2
-                ]
-              },
-              "dbus": {
-                "path": "/foo/bar",
-                "interface": "xyz.openbmc_project.Foo.Bar",
-                "property_name": "propertyName",
-                "property_type": "string",
-                "property_values": [
-                  "xyz.openbmc_project.Foo.Bar.V1",
-                  "xyz.openbmc_project.Foo.Bar.V2"
-                ]
-              }
-            }
-          ]
+            "pdrType": 11,
+            "entries": [
+                {
+                    "entity_path": "/xyz/openbmc_project/foo",
+                    "type": 33,
+                    "instance": 0,
+                    "container": 0,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 196,
+                                "size": 1,
+                                "states": [1]
+                            },
+                            "dbus": {
+                                "path": "/foo/bar",
+                                "interface": "xyz.openbmc_project.Foo.Bar",
+                                "property_name": "propertyName",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.Foo.Bar.V1"
+                                ]
+                            }
+                        },
+                        {
+                            "set": {
+                                "id": 196,
+                                "size": 1,
+                                "states": [1, 2]
+                            },
+                            "dbus": {
+                                "path": "/foo/bar",
+                                "interface": "xyz.openbmc_project.Foo.Bar",
+                                "property_name": "propertyName",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.Foo.Bar.V1",
+                                    "xyz.openbmc_project.Foo.Bar.V2"
+                                ]
+                            }
+                        }
+                    ]
+                },
+                {
+                    "entity_path": "/xyz/openbmc_project/foo",
+                    "type": 100,
+                    "instance": 0,
+                    "container": 0,
+                    "effecters": [
+                        {
+                            "set": {
+                                "id": 197,
+                                "size": 1,
+                                "states": [1]
+                            },
+                            "dbus": {
+                                "path": "/foo/bar",
+                                "interface": "xyz.openbmc_project.Foo.Bar",
+                                "property_name": "propertyName",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.Foo.Bar.V1"
+                                ]
+                            }
+                        },
+                        {
+                            "set": {
+                                "id": 198,
+                                "size": 2,
+                                "states": [1, 2, 5, 15]
+                            },
+                            "dbus": {
+                                "path": "/foo/bar/baz",
+                                "interface": "xyz.openbmc_project.Foo.Bar.Baz",
+                                "property_name": "propertyName",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.Foo.Bar.Baz.V1",
+                                    "xyz.openbmc_project.Foo.Bar.Baz.V2",
+                                    "xyz.openbmc_project.Foo.Bar.Baz.V5",
+                                    "xyz.openbmc_project.Foo.Bar.Baz.V15"
+                                ]
+                            }
+                        }
+                    ]
+                }
+            ]
         },
         {
-          "entity_path": "/xyz/openbmc_project/foo",
-          "type": 100,
-          "instance": 0,
-          "container": 0,
-          "effecters": [
-            {
-              "set": {
-                "id": 197,
-                "size": 1,
-                "states": [
-                  1
-                ]
-              },
-              "dbus": {
-                "path": "/foo/bar",
-                "interface": "xyz.openbmc_project.Foo.Bar",
-                "property_name": "propertyName",
-                "property_type": "string",
-                "property_values": [
-                  "xyz.openbmc_project.Foo.Bar.V1"
-                ]
-              }
-            },
-            {
-              "set": {
-                "id": 198,
-                "size": 2,
-                "states": [
-                  1,
-                  2,
-                  5,
-                  15
-                ]
-              },
-              "dbus": {
-                "path": "/foo/bar/baz",
-                "interface": "xyz.openbmc_project.Foo.Bar.Baz",
-                "property_name": "propertyName",
-                "property_type": "string",
-                "property_values": [
-                  "xyz.openbmc_project.Foo.Bar.Baz.V1",
-                  "xyz.openbmc_project.Foo.Bar.Baz.V2",
-                  "xyz.openbmc_project.Foo.Bar.Baz.V5",
-                  "xyz.openbmc_project.Foo.Bar.Baz.V15"
-                ]
-              }
-            }
-          ]
+            "pdrType": 9,
+            "entries": [
+                {
+                    "entity_path": "/xyz/openbmc_project/foo",
+                    "type": 0,
+                    "instance": 0,
+                    "container": 0,
+                    "base_unit": 21,
+                    "rate_unit": 3,
+                    "effecter_resolution_init": 1,
+                    "effecter_data_size": 4,
+                    "range_field_format": 4,
+                    "dbus": {
+                        "path": "/foo/bar",
+                        "interface": "xyz.openbmc_project.Foo.Bar",
+                        "property_name": "propertyName",
+                        "property_type": "uint64_t"
+                    }
+                }
+            ]
         }
-      ]
-    },
-    {
-      "pdrType": 9,
-      "entries": [
-        {
-          "entity_path": "/xyz/openbmc_project/foo",
-          "type": 0,
-          "instance": 0,
-          "container": 0,
-          "base_unit": 21,
-          "rate_unit": 3,
-          "effecter_resolution_init": 1,
-          "effecter_data_size": 4,
-          "range_field_format": 4,
-          "dbus": {
-            "path": "/foo/bar",
-            "interface": "xyz.openbmc_project.Foo.Bar",
-            "property_name": "propertyName",
-            "property_type": "uint64_t"
-          }
-        }
-      ]
-    }
-  ]
-}
\ No newline at end of file
+    ]
+}
diff --git a/libpldmresponder/examples/pdr/sensor_pdr.json b/libpldmresponder/examples/pdr/sensor_pdr.json
index 1d0489a..8f0ee34 100644
--- a/libpldmresponder/examples/pdr/sensor_pdr.json
+++ b/libpldmresponder/examples/pdr/sensor_pdr.json
@@ -1,64 +1,58 @@
 // This JSON is tied with BMC's PDRs. Each entry is used to identify a group of
 // composite sensors.
 {
-  "sensorPDRs": [
-    {
-      // StateSensorPDR
-      // Each sensor in each group of composite sensors has a separate entry and the
-      // supported event states, up to eight.
-      // The "dbus" section contains information about the corresponding D-Bus
-      // property for the sensor and "property_values" are the D-Bus property values
-      // for each corresponding entry in the "states".
-      "pdrType": 4,
-      "entries": [
+    "sensorPDRs": [
         {
-          "type": 5,
-          "instance": 0,
-          "container": 0,
-          "sensors": [
-            {
-              "set": {
-                "id": 1,
-                "size": 1,
-                "states": [
-                  0,
-                  5
-                ]
-              },
-              "dbus": {
-                "path": "/foo/bar",
-                "interface": "xyz.openbmc_project.Foo.Bar",
-                "property_name": "propertyName",
-                "property_type": "string",
-                "property_values": [
-                  "xyz.openbmc_project.Foo.Bar.V0",
-                  "xyz.openbmc_project.Foo.Bar.V5"
-                ]
-              }
-            },
-            {
-              "set": {
-                "id": 2,
-                "size": 1,
-                "states": [
-                  2,
-                  3
-                ]
-              },
-              "dbus": {
-                "path": "/foo/bar",
-                "interface": "xyz.openbmc_project.Foo.Bar",
-                "property_name": "propertyName",
-                "property_type": "string",
-                "property_values": [
-                  "xyz.openbmc_project.Foo.Bar.V2",
-                  "xyz.openbmc_project.Foo.Bar.V3"
-                ]
-              }
-            }
-          ]
+            // StateSensorPDR
+            // Each sensor in each group of composite sensors has a separate entry and the
+            // supported event states, up to eight.
+            // The "dbus" section contains information about the corresponding D-Bus
+            // property for the sensor and "property_values" are the D-Bus property values
+            // for each corresponding entry in the "states".
+            "pdrType": 4,
+            "entries": [
+                {
+                    "type": 5,
+                    "instance": 0,
+                    "container": 0,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 1,
+                                "size": 1,
+                                "states": [0, 5]
+                            },
+                            "dbus": {
+                                "path": "/foo/bar",
+                                "interface": "xyz.openbmc_project.Foo.Bar",
+                                "property_name": "propertyName",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.Foo.Bar.V0",
+                                    "xyz.openbmc_project.Foo.Bar.V5"
+                                ]
+                            }
+                        },
+                        {
+                            "set": {
+                                "id": 2,
+                                "size": 1,
+                                "states": [2, 3]
+                            },
+                            "dbus": {
+                                "path": "/foo/bar",
+                                "interface": "xyz.openbmc_project.Foo.Bar",
+                                "property_name": "propertyName",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.Foo.Bar.V2",
+                                    "xyz.openbmc_project.Foo.Bar.V3"
+                                ]
+                            }
+                        }
+                    ]
+                }
+            ]
         }
-      ]
-    }
-  ]
+    ]
 }
diff --git a/libpldmresponder/test/bios_jsons/enum_attrs.json b/libpldmresponder/test/bios_jsons/enum_attrs.json
index bee666f..ef4f684 100644
--- a/libpldmresponder/test/bios_jsons/enum_attrs.json
+++ b/libpldmresponder/test/bios_jsons/enum_attrs.json
@@ -1,60 +1,60 @@
 {
-   "entries":[
-      {
-         "attribute_name" : "HMCManagedState",
-         "possible_values" : [ "On", "Off" ],
-         "default_values" : [ "On" ],
-         "readOnly" : false,
-         "helpText" : "HMCManagedState HelpText",
-         "displayName" : "HMCManagedState DisplayName",
-         "dbus":
-            {
-               "object_path" : "/xyz/abc/def",
-               "interface" : "xyz.openbmc_project.HMCManaged.State",
-               "property_name" : "State",
-               "property_type" : "string",
-               "property_values" : ["xyz.openbmc_project.State.On", "xyz.openbmc_project.State.Off"]
+    "entries": [
+        {
+            "attribute_name": "HMCManagedState",
+            "possible_values": ["On", "Off"],
+            "default_values": ["On"],
+            "readOnly": false,
+            "helpText": "HMCManagedState HelpText",
+            "displayName": "HMCManagedState DisplayName",
+            "dbus": {
+                "object_path": "/xyz/abc/def",
+                "interface": "xyz.openbmc_project.HMCManaged.State",
+                "property_name": "State",
+                "property_type": "string",
+                "property_values": [
+                    "xyz.openbmc_project.State.On",
+                    "xyz.openbmc_project.State.Off"
+                ]
             }
-      },
-      {
-         "attribute_name" : "FWBootSide",
-         "possible_values" : [ "Perm", "Temp" ],
-         "default_values" : [ "Perm" ],
-         "readOnly" : false,
-         "helpText" : "FWBootSide HelpText",
-         "displayName" : "FWBootSide DisplayName",
-         "dbus":
-            {
-               "object_path" : "/xyz/abc/def",
-               "interface" : "xyz.openbmc.FWBoot.Side",
-               "property_name" : "Side",
-               "property_type" : "bool",
-               "property_values" : [true, false]
+        },
+        {
+            "attribute_name": "FWBootSide",
+            "possible_values": ["Perm", "Temp"],
+            "default_values": ["Perm"],
+            "readOnly": false,
+            "helpText": "FWBootSide HelpText",
+            "displayName": "FWBootSide DisplayName",
+            "dbus": {
+                "object_path": "/xyz/abc/def",
+                "interface": "xyz.openbmc.FWBoot.Side",
+                "property_name": "Side",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
-      },
-      {
-         "attribute_name" : "InbandCodeUpdate",
-         "possible_values" : [ "Allowed", "NotAllowed" ],
-         "default_values" : [ "Allowed" ],
-         "readOnly" : false,
-         "helpText" : "InbandCodeUpdate HelpText",
-         "displayName" : "InbandCodeUpdate DisplayName",
-         "dbus":
-            {
-               "object_path" : "/xyz/abc/def",
-               "interface" : "xyz.openbmc.InBandCodeUpdate",
-               "property_name" : "Policy",
-               "property_type" : "uint8_t",
-               "property_values" : [0, 1]
+        },
+        {
+            "attribute_name": "InbandCodeUpdate",
+            "possible_values": ["Allowed", "NotAllowed"],
+            "default_values": ["Allowed"],
+            "readOnly": false,
+            "helpText": "InbandCodeUpdate HelpText",
+            "displayName": "InbandCodeUpdate DisplayName",
+            "dbus": {
+                "object_path": "/xyz/abc/def",
+                "interface": "xyz.openbmc.InBandCodeUpdate",
+                "property_name": "Policy",
+                "property_type": "uint8_t",
+                "property_values": [0, 1]
             }
-      },
-      {
-         "attribute_name" : "CodeUpdatePolicy",
-         "possible_values" : [ "Concurrent", "Disruptive" ],
-         "default_values" : [ "Concurrent" ],
-         "readOnly" : true,
-         "helpText" : "CodeUpdatePolicy HelpText",
-         "displayName" : "CodeUpdatePolicy DisplayName"
-      }
+        },
+        {
+            "attribute_name": "CodeUpdatePolicy",
+            "possible_values": ["Concurrent", "Disruptive"],
+            "default_values": ["Concurrent"],
+            "readOnly": true,
+            "helpText": "CodeUpdatePolicy HelpText",
+            "displayName": "CodeUpdatePolicy DisplayName"
+        }
     ]
 }
diff --git a/libpldmresponder/test/bios_jsons/integer_attrs.json b/libpldmresponder/test/bios_jsons/integer_attrs.json
index e6833aa..4d7cd61 100644
--- a/libpldmresponder/test/bios_jsons/integer_attrs.json
+++ b/libpldmresponder/test/bios_jsons/integer_attrs.json
@@ -1,40 +1,40 @@
 {
-   "entries":[
-      {
-         "attribute_name" : "VDD_AVSBUS_RAIL",
-         "lower_bound" : 0,
-         "upper_bound" : 15,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "readOnly" : false,
-         "helpText" : "VDD_AVSBUS_RAIL HelpText",
-         "displayName" : "VDD_AVSBUS_RAIL DisplayName",
-         "dbus":{
-            "object_path" : "/xyz/openbmc_project/avsbus",
-            "interface" : "xyz.openbmc.AvsBus.Manager",
-            "property_type" : "uint8_t",
-            "property_name" : "Rail"
-         }
-      },
-      {
-         "attribute_name" : "SBE_IMAGE_MINIMUM_VALID_ECS",
-         "lower_bound" : 1,
-         "upper_bound" : 15,
-         "scalar_increment" : 1,
-         "default_value" : 2,
-         "readOnly" : true,
-         "helpText" : "SBE_IMAGE_MINIMUM_VALID_ECS HelpText",
-         "displayName" : "SBE_IMAGE_MINIMUM_VALID_ECS DisplayName"
-      },
-      {
-         "attribute_name" : "INTEGER_INVALID_CASE",
-         "lower_bound" : 1,
-         "upper_bound" : 15,
-         "scalar_increment" : 2,
-         "default_value" : 3,
-         "readOnly" : true,
-         "helpText" : "INTEGER_INVALID_CASE HelpText",
-         "displayName" : "INTEGER_INVALID_CASE DisplayName"
-      }
-   ]
+    "entries": [
+        {
+            "attribute_name": "VDD_AVSBUS_RAIL",
+            "lower_bound": 0,
+            "upper_bound": 15,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "readOnly": false,
+            "helpText": "VDD_AVSBUS_RAIL HelpText",
+            "displayName": "VDD_AVSBUS_RAIL DisplayName",
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/avsbus",
+                "interface": "xyz.openbmc.AvsBus.Manager",
+                "property_type": "uint8_t",
+                "property_name": "Rail"
+            }
+        },
+        {
+            "attribute_name": "SBE_IMAGE_MINIMUM_VALID_ECS",
+            "lower_bound": 1,
+            "upper_bound": 15,
+            "scalar_increment": 1,
+            "default_value": 2,
+            "readOnly": true,
+            "helpText": "SBE_IMAGE_MINIMUM_VALID_ECS HelpText",
+            "displayName": "SBE_IMAGE_MINIMUM_VALID_ECS DisplayName"
+        },
+        {
+            "attribute_name": "INTEGER_INVALID_CASE",
+            "lower_bound": 1,
+            "upper_bound": 15,
+            "scalar_increment": 2,
+            "default_value": 3,
+            "readOnly": true,
+            "helpText": "INTEGER_INVALID_CASE HelpText",
+            "displayName": "INTEGER_INVALID_CASE DisplayName"
+        }
+    ]
 }
diff --git a/libpldmresponder/test/bios_jsons/string_attrs.json b/libpldmresponder/test/bios_jsons/string_attrs.json
index 09e0e4c..5213aaf 100644
--- a/libpldmresponder/test/bios_jsons/string_attrs.json
+++ b/libpldmresponder/test/bios_jsons/string_attrs.json
@@ -1,49 +1,49 @@
 {
-    "entries" : [
+    "entries": [
         {
-            "attribute_name" : "str_example1",
-            "string_type" : "ASCII",
-            "minimum_string_length" : 1,
-            "maximum_string_length" : 100,
-            "default_string_length" : 3,
-            "default_string" : "abc",
-            "readOnly" : false,
-            "helpText" : "str_example1 HelpText",
-            "displayName" : "str_example1 DisplayName",
-            "dbus" : {
-                "object_path" : "/xyz/abc/def",
-                "interface" : "xyz.openbmc_project.str_example1.value",
-                "property_name" : "Str_example1",
-                "property_type" : "string"
+            "attribute_name": "str_example1",
+            "string_type": "ASCII",
+            "minimum_string_length": 1,
+            "maximum_string_length": 100,
+            "default_string_length": 3,
+            "default_string": "abc",
+            "readOnly": false,
+            "helpText": "str_example1 HelpText",
+            "displayName": "str_example1 DisplayName",
+            "dbus": {
+                "object_path": "/xyz/abc/def",
+                "interface": "xyz.openbmc_project.str_example1.value",
+                "property_name": "Str_example1",
+                "property_type": "string"
             }
         },
         {
-            "attribute_name" : "str_example2",
-            "string_type" : "Hex",
-            "minimum_string_length" : 0,
-            "maximum_string_length" : 100,
-            "default_string_length" : 0,
-            "default_string" : "",
-            "readOnly" : false,
-            "helpText" : "str_example2 HelpText",
-            "displayName" : "str_example2 DisplayName",
-            "dbus" : {
-                "object_path" : "/xyz/abc/def",
-                "interface" : "xyz.openbmc_project.str_example2.value",
-                "property_name" : "Str_example2",
-                "property_type" : "string"
+            "attribute_name": "str_example2",
+            "string_type": "Hex",
+            "minimum_string_length": 0,
+            "maximum_string_length": 100,
+            "default_string_length": 0,
+            "default_string": "",
+            "readOnly": false,
+            "helpText": "str_example2 HelpText",
+            "displayName": "str_example2 DisplayName",
+            "dbus": {
+                "object_path": "/xyz/abc/def",
+                "interface": "xyz.openbmc_project.str_example2.value",
+                "property_name": "Str_example2",
+                "property_type": "string"
             }
         },
         {
-            "attribute_name" : "str_example3",
-            "string_type" : "Unknown",
-            "minimum_string_length" : 1,
-            "maximum_string_length" : 100,
-            "default_string_length" : 2,
-            "default_string" : "ef",
-            "readOnly" : true,
-            "helpText" : "str_example3 HelpText",
-            "displayName" : "str_example3 DisplayName"
+            "attribute_name": "str_example3",
+            "string_type": "Unknown",
+            "minimum_string_length": 1,
+            "maximum_string_length": 100,
+            "default_string_length": 2,
+            "default_string": "ef",
+            "readOnly": true,
+            "helpText": "str_example3 HelpText",
+            "displayName": "str_example3 DisplayName"
         }
     ]
 }
diff --git a/libpldmresponder/test/event_jsons/good/event_state_sensor.json b/libpldmresponder/test/event_jsons/good/event_state_sensor.json
index 9dc613c..f917b90 100644
--- a/libpldmresponder/test/event_jsons/good/event_state_sensor.json
+++ b/libpldmresponder/test/event_jsons/good/event_state_sensor.json
@@ -5,11 +5,7 @@
             "entityType": 64,
             "entityInstance": 1,
             "sensorOffset": 0,
-            "event_states": [
-                0,
-                1,
-                2
-            ],
+            "event_states": [0, 1, 2],
             "dbus": {
                 "object_path": "/xyz/abc/def",
                 "interface": "xyz.openbmc_project.example1.value",
@@ -27,19 +23,13 @@
             "entityType": 64,
             "entityInstance": 1,
             "sensorOffset": 1,
-            "event_states": [
-                2,
-                3
-            ],
+            "event_states": [2, 3],
             "dbus": {
                 "object_path": "/xyz/abc/def",
                 "interface": "xyz.openbmc_project.example2.value",
                 "property_name": "value2",
                 "property_type": "uint8_t",
-                "property_values": [
-                    9,
-                    10
-                ]
+                "property_values": [9, 10]
             }
         },
         {
@@ -47,19 +37,13 @@
             "entityType": 67,
             "entityInstance": 2,
             "sensorOffset": 0,
-            "event_states": [
-                0,
-                1
-            ],
+            "event_states": [0, 1],
             "dbus": {
                 "object_path": "/xyz/abc/ghi",
                 "interface": "xyz.openbmc_project.example3.value",
                 "property_name": "value3",
                 "property_type": "bool",
-                "property_values": [
-                    false,
-                    true
-                ]
+                "property_values": [false, true]
             }
         }
     ]
diff --git a/libpldmresponder/test/fru_jsons/fru_master/fru_master.json b/libpldmresponder/test/fru_jsons/fru_master/fru_master.json
index 5a87eb7..ab3f13a 100644
--- a/libpldmresponder/test/fru_jsons/fru_master/fru_master.json
+++ b/libpldmresponder/test/fru_jsons/fru_master/fru_master.json
@@ -1,21 +1,21 @@
 {
-        "FruDBusLookupMap":{
-                        "xyz.openbmc_project.Inventory.Item.Chassis" : 45,
-                        "xyz.openbmc_project.Inventory.Item.Board": 60,
-                        "xyz.openbmc_project.Inventory.Item.PCIeDevice": 61,
-                        "xyz.openbmc_project.Inventory.Item.Board.Motherboard": 64,
-                        "xyz.openbmc_project.Inventory.Item.Dimm": 66,
-                        "xyz.openbmc_project.Inventory.Item.Panel": 69,
-                        "xyz.openbmc_project.Inventory.Item.DiskBackplane": 73,
-                        "xyz.openbmc_project.Inventory.Item.Fan": 93,
-                        "xyz.openbmc_project.Inventory.Item.PowerSupply": 120,
-                        "xyz.openbmc_project.Inventory.Item.Battery": 121,
-                        "xyz.openbmc_project.Inventory.Item.Vrm": 123,
-                        "xyz.openbmc_project.Inventory.Item.Cpu": 135,
-                        "xyz.openbmc_project.Inventory.Item.Bmc": 137,
-                        "xyz.openbmc_project.Inventory.Item.Connector": 185,
-                        "xyz.openbmc_project.Inventory.Item.PCIeSlot": 186,
-                        "xyz.openbmc_project.Inventory.Item.System": 11521,
-                        "xyz.openbmc_project.Inventory.Item.Tpm": 24576
-           }
+    "FruDBusLookupMap": {
+        "xyz.openbmc_project.Inventory.Item.Chassis": 45,
+        "xyz.openbmc_project.Inventory.Item.Board": 60,
+        "xyz.openbmc_project.Inventory.Item.PCIeDevice": 61,
+        "xyz.openbmc_project.Inventory.Item.Board.Motherboard": 64,
+        "xyz.openbmc_project.Inventory.Item.Dimm": 66,
+        "xyz.openbmc_project.Inventory.Item.Panel": 69,
+        "xyz.openbmc_project.Inventory.Item.DiskBackplane": 73,
+        "xyz.openbmc_project.Inventory.Item.Fan": 93,
+        "xyz.openbmc_project.Inventory.Item.PowerSupply": 120,
+        "xyz.openbmc_project.Inventory.Item.Battery": 121,
+        "xyz.openbmc_project.Inventory.Item.Vrm": 123,
+        "xyz.openbmc_project.Inventory.Item.Cpu": 135,
+        "xyz.openbmc_project.Inventory.Item.Bmc": 137,
+        "xyz.openbmc_project.Inventory.Item.Connector": 185,
+        "xyz.openbmc_project.Inventory.Item.PCIeSlot": 186,
+        "xyz.openbmc_project.Inventory.Item.System": 11521,
+        "xyz.openbmc_project.Inventory.Item.Tpm": 24576
+    }
 }
diff --git a/libpldmresponder/test/fru_jsons/good/Board_General.json b/libpldmresponder/test/fru_jsons/good/Board_General.json
index d4efdab..79b9acf 100644
--- a/libpldmresponder/test/fru_jsons/good/Board_General.json
+++ b/libpldmresponder/test/fru_jsons/good/Board_General.json
@@ -1,29 +1,25 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 1,
+    "record_details": {
+        "fru_record_type": 1,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Board"
-   },
-   "fru_fields":[
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.Asset",
-               "property_name" : "PartNumber",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.Asset",
+                "property_name": "PartNumber",
+                "property_type": "string"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.Asset",
-               "property_name" : "SerialNumber",
-               "property_type" : "string"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.Asset",
+                "property_name": "SerialNumber",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
-
diff --git a/libpldmresponder/test/fru_jsons/good/Board_VINI.json b/libpldmresponder/test/fru_jsons/good/Board_VINI.json
index 1ef87ef..c14f7c3 100644
--- a/libpldmresponder/test/fru_jsons/good/Board_VINI.json
+++ b/libpldmresponder/test/fru_jsons/good/Board_VINI.json
@@ -1,30 +1,25 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Board"
-   },
-   "fru_fields":[
-      {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "RT",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "RT",
+                "property_type": "string"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B3",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B3",
+                "property_type": "bytearray"
             }
-      }
-
+        }
     ]
 }
-
diff --git a/libpldmresponder/test/fru_jsons/good/Cpu_General.json b/libpldmresponder/test/fru_jsons/good/Cpu_General.json
index 01a378a..8f3d3be 100644
--- a/libpldmresponder/test/fru_jsons/good/Cpu_General.json
+++ b/libpldmresponder/test/fru_jsons/good/Cpu_General.json
@@ -1,28 +1,25 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 1,
+    "record_details": {
+        "fru_record_type": 1,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Cpu"
-   },
-   "fru_fields":[
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.Asset",
-               "property_name" : "PartNumber",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.Asset",
+                "property_name": "PartNumber",
+                "property_type": "string"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.Asset",
-               "property_name" : "SerialNumber",
-               "property_type" : "string"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.Asset",
+                "property_name": "SerialNumber",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/libpldmresponder/test/fru_jsons/good/FRU_Master.json b/libpldmresponder/test/fru_jsons/good/FRU_Master.json
index fa2c405..9444d80 100644
--- a/libpldmresponder/test/fru_jsons/good/FRU_Master.json
+++ b/libpldmresponder/test/fru_jsons/good/FRU_Master.json
@@ -1,14 +1,14 @@
 {
-    "service":"xyz.openbmc_project.Inventory.Manager",
-    "root_path":"/xyz/openbmc_project/inventory/system/",
-    "entities":[
+    "service": "xyz.openbmc_project.Inventory.Manager",
+    "root_path": "/xyz/openbmc_project/inventory/system/",
+    "entities": [
         {
-            "interface" : "xyz.openbmc_project.Inventory.Item.Board",
-            "entity_type" : 64
+            "interface": "xyz.openbmc_project.Inventory.Item.Board",
+            "entity_type": 64
         },
         {
-            "interface" : "xyz.openbmc_project.Inventory.Item.Cpu",
-            "entity_type" : 135
+            "interface": "xyz.openbmc_project.Inventory.Item.Cpu",
+            "entity_type": 135
         }
     ]
 }
diff --git a/libpldmresponder/test/pdr_jsons/state_effecter/good/effecter_pdr.json b/libpldmresponder/test/pdr_jsons/state_effecter/good/effecter_pdr.json
index 1514a59..1143153 100644
--- a/libpldmresponder/test/pdr_jsons/state_effecter/good/effecter_pdr.json
+++ b/libpldmresponder/test/pdr_jsons/state_effecter/good/effecter_pdr.json
@@ -13,9 +13,7 @@
                             "set": {
                                 "id": 196,
                                 "size": 1,
-                                "states": [
-                                    1
-                                ]
+                                "states": [1]
                             },
                             "dbus": {
                                 "path": "/foo/bar",
@@ -31,10 +29,7 @@
                             "set": {
                                 "id": 196,
                                 "size": 1,
-                                "states": [
-                                    1,
-                                    2
-                                ]
+                                "states": [1, 2]
                             },
                             "dbus": {
                                 "path": "/foo/bar",
@@ -59,9 +54,7 @@
                             "set": {
                                 "id": 197,
                                 "size": 1,
-                                "states": [
-                                    1
-                                ]
+                                "states": [1]
                             },
                             "dbus": {
                                 "path": "/foo/bar",
@@ -77,12 +70,7 @@
                             "set": {
                                 "id": 198,
                                 "size": 2,
-                                "states": [
-                                    1,
-                                    2,
-                                    5,
-                                    15
-                                ]
+                                "states": [1, 2, 5, 15]
                             },
                             "dbus": {
                                 "path": "/foo/bar",
@@ -124,4 +112,4 @@
             ]
         }
     ]
-}
\ No newline at end of file
+}
diff --git a/libpldmresponder/test/pdr_jsons/state_sensor/good/sensor_pdr.json b/libpldmresponder/test/pdr_jsons/state_sensor/good/sensor_pdr.json
index 5e1141a..637ccb5 100644
--- a/libpldmresponder/test/pdr_jsons/state_sensor/good/sensor_pdr.json
+++ b/libpldmresponder/test/pdr_jsons/state_sensor/good/sensor_pdr.json
@@ -1,36 +1,33 @@
 {
-  "sensorPDRs": [
-    {
-      "pdrType": 4,
-      "entries": [
+    "sensorPDRs": [
         {
-          "type": 5,
-          "instance": 0,
-          "container": 0,
-          "sensors": [
-            {
-              "set": {
-                "id": 1,
-                "size": 1,
-                "states": [
-                  0,
-                  5
-                ]
-              },
-              "dbus": {
-                "path": "/foo/bar",
-                "interface": "xyz.openbmc_project.Foo.Bar",
-                "property_name": "propertyName",
-                "property_type": "string",
-                "property_values": [
-                  "xyz.openbmc_project.Foo.Bar.V0",
-                  "xyz.openbmc_project.Foo.Bar.V5"
-                ]
-              }
-            }
-          ]
+            "pdrType": 4,
+            "entries": [
+                {
+                    "type": 5,
+                    "instance": 0,
+                    "container": 0,
+                    "sensors": [
+                        {
+                            "set": {
+                                "id": 1,
+                                "size": 1,
+                                "states": [0, 5]
+                            },
+                            "dbus": {
+                                "path": "/foo/bar",
+                                "interface": "xyz.openbmc_project.Foo.Bar",
+                                "property_name": "propertyName",
+                                "property_type": "string",
+                                "property_values": [
+                                    "xyz.openbmc_project.Foo.Bar.V0",
+                                    "xyz.openbmc_project.Foo.Bar.V5"
+                                ]
+                            }
+                        }
+                    ]
+                }
+            ]
         }
-      ]
-    }
-  ]
-}
\ No newline at end of file
+    ]
+}
diff --git a/oem/ibm/configurations/bios/enum_attrs.json b/oem/ibm/configurations/bios/enum_attrs.json
index eda03c6..62d170e 100644
--- a/oem/ibm/configurations/bios/enum_attrs.json
+++ b/oem/ibm/configurations/bios/enum_attrs.json
@@ -1,703 +1,443 @@
 {
-   "entries":[
-      {
-         "attribute_name":"fw_boot_side",
-         "possible_values":[
-            "Perm",
-            "Temp"
-         ],
-         "default_values":[
-            "Temp"
-         ],
-         "helpText" : "Specifies the next boot side to the host, i.e. Temp or Perm. Host can set/query this attribute at anytime to know which is the side the host would boot in the next reboot.",
-         "displayName" : "Current Firmware Boot Side (pending)"
-      },
-      {
-         "attribute_name":"fw_boot_side_current",
-         "possible_values":[
-            "Perm",
-            "Temp"
-         ],
-         "default_values":[
-            "Temp"
-         ],
-         "helpText" : "Specifies the current boot side to the host, i.e. Temp or Perm. Host can query this attribute at anytime to know which side it is running on. This attribute is set by the BMC. Set fw_boot_side instead.",
-         "displayName" : "Current Firmware Boot Side (current)"
-      },
-      {
-         "attribute_name":"pvm_pcie_error_inject",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Enabled"
-         ],
-         "helpText" : "pvm_pcie_error_inject",
-         "displayName" : "pvm_pcie_error_inject"
-      },
-      {
-         "attribute_name":"vmi_if0_ipv4_method",
-         "possible_values":[
-            "IPv4Static",
-            "IPv4DHCP"
-         ],
-         "default_values":[
-            "IPv4Static"
-         ],
-         "helpText" : "vmi_if0_ipv4_method",
-         "displayName" : "vmi_if0_ipv4_method"
-      },
-      {
-         "attribute_name":"vmi_if1_ipv4_method",
-         "possible_values":[
-            "IPv4Static",
-            "IPv4DHCP"
-         ],
-         "default_values":[
-            "IPv4Static"
-         ],
-         "helpText" : "vmi_if1_ipv4_method",
-         "displayName" : "vmi_if1_ipv4_method"
-      },
-      {
-         "attribute_name":"vmi_if0_ipv6_method",
-         "possible_values":[
-            "IPv6Static",
-            "IPv6DHCP",
-            "SLAAC"
-         ],
-         "default_values":[
-            "IPv6Static"
-         ],
-         "helpText" : "vmi_if0_ipv6_method",
-         "displayName" : "vmi_if0_ipv6_method"
-      },
-      {
-         "attribute_name":"vmi_if1_ipv6_method",
-         "possible_values":[
-            "IPv6Static",
-            "IPv6DHCP",
-            "SLAAC"
-         ],
-         "default_values":[
-            "IPv6Static"
-         ],
-         "helpText" : "vmi_if1_ipv6_method",
-         "displayName" : "vmi_if1_ipv6_method"
-      },
-      {
-         "attribute_name":"hb_hyp_switch",
-         "possible_values":[
-            "PowerVM",
-            "OPAL"
-         ],
-         "default_values":[
-            "PowerVM"
-         ],
-         "helpText" : "Tells the host boot fw which type of hypervisor will be loaded.",
-         "displayName" : "hb_hyp_switch",
-         "dbus":
-            {
-             "object_path" : "/com/ibm/host0/hypervisor",
-             "interface" : "com.ibm.Host.Target",
-             "property_name" : "Target",
-             "property_type" : "string",
-             "property_values" : ["com.ibm.Host.Target.Hypervisor.PowerVM" , "com.ibm.Host.Target.Hypervisor.OPAL"]
+    "entries": [
+        {
+            "attribute_name": "fw_boot_side",
+            "possible_values": ["Perm", "Temp"],
+            "default_values": ["Temp"],
+            "helpText": "Specifies the next boot side to the host, i.e. Temp or Perm. Host can set/query this attribute at anytime to know which is the side the host would boot in the next reboot.",
+            "displayName": "Current Firmware Boot Side (pending)"
+        },
+        {
+            "attribute_name": "fw_boot_side_current",
+            "possible_values": ["Perm", "Temp"],
+            "default_values": ["Temp"],
+            "helpText": "Specifies the current boot side to the host, i.e. Temp or Perm. Host can query this attribute at anytime to know which side it is running on. This attribute is set by the BMC. Set fw_boot_side instead.",
+            "displayName": "Current Firmware Boot Side (current)"
+        },
+        {
+            "attribute_name": "pvm_pcie_error_inject",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Enabled"],
+            "helpText": "pvm_pcie_error_inject",
+            "displayName": "pvm_pcie_error_inject"
+        },
+        {
+            "attribute_name": "vmi_if0_ipv4_method",
+            "possible_values": ["IPv4Static", "IPv4DHCP"],
+            "default_values": ["IPv4Static"],
+            "helpText": "vmi_if0_ipv4_method",
+            "displayName": "vmi_if0_ipv4_method"
+        },
+        {
+            "attribute_name": "vmi_if1_ipv4_method",
+            "possible_values": ["IPv4Static", "IPv4DHCP"],
+            "default_values": ["IPv4Static"],
+            "helpText": "vmi_if1_ipv4_method",
+            "displayName": "vmi_if1_ipv4_method"
+        },
+        {
+            "attribute_name": "vmi_if0_ipv6_method",
+            "possible_values": ["IPv6Static", "IPv6DHCP", "SLAAC"],
+            "default_values": ["IPv6Static"],
+            "helpText": "vmi_if0_ipv6_method",
+            "displayName": "vmi_if0_ipv6_method"
+        },
+        {
+            "attribute_name": "vmi_if1_ipv6_method",
+            "possible_values": ["IPv6Static", "IPv6DHCP", "SLAAC"],
+            "default_values": ["IPv6Static"],
+            "helpText": "vmi_if1_ipv6_method",
+            "displayName": "vmi_if1_ipv6_method"
+        },
+        {
+            "attribute_name": "hb_hyp_switch",
+            "possible_values": ["PowerVM", "OPAL"],
+            "default_values": ["PowerVM"],
+            "helpText": "Tells the host boot fw which type of hypervisor will be loaded.",
+            "displayName": "hb_hyp_switch",
+            "dbus": {
+                "object_path": "/com/ibm/host0/hypervisor",
+                "interface": "com.ibm.Host.Target",
+                "property_name": "Target",
+                "property_type": "string",
+                "property_values": [
+                    "com.ibm.Host.Target.Hypervisor.PowerVM",
+                    "com.ibm.Host.Target.Hypervisor.OPAL"
+                ]
             }
-      },
-      {
-         "attribute_name":"hb_hyp_switch_current",
-         "possible_values":[
-            "PowerVM",
-            "OPAL"
-         ],
-         "default_values":[
-            "PowerVM"
-         ],
-         "helpText" : "Do not set this attribute directly; set hb_hyp_switch instead.",
-         "displayName" : "hb_hyp_switch (current)",
-         "readOnly":true
-      },
-      {
-         "attribute_name":"pvm_stop_at_standby",
-         "possible_values":[
-            "Disabled",
-            "Enabled",
-            "ManualOnly"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "Select hypervisor boot policy, requires a reboot for a change to be applied. Disabled: Instructs server not to activate server firmware and partitions for either a user-initated power on or a recovery power on, Enabled: Instructs the server to automatically activate certain partitions for either a user-initated power on or a recovery power on, ManualOnly: Instructs the server to activate server firmware and partitions automatically only in case of a recovery power on after an abnormal termination.",
-         "displayName" : "pvm_stop_at_standby",
-         "dbus":
-            {
-               "object_path" : "/xyz/openbmc_project/control/host0/boot",
-               "interface" : "xyz.openbmc_project.Control.Boot.Mode",
-               "property_name" : "BootMode",
-               "property_type" : "string",
-               "property_values" : ["xyz.openbmc_project.Control.Boot.Mode.Modes.Regular", "xyz.openbmc_project.Control.Boot.Mode.Modes.Setup", "xyz.openbmc_project.Control.Boot.Mode.Modes.Safe"]
+        },
+        {
+            "attribute_name": "hb_hyp_switch_current",
+            "possible_values": ["PowerVM", "OPAL"],
+            "default_values": ["PowerVM"],
+            "helpText": "Do not set this attribute directly; set hb_hyp_switch instead.",
+            "displayName": "hb_hyp_switch (current)",
+            "readOnly": true
+        },
+        {
+            "attribute_name": "pvm_stop_at_standby",
+            "possible_values": ["Disabled", "Enabled", "ManualOnly"],
+            "default_values": ["Disabled"],
+            "helpText": "Select hypervisor boot policy, requires a reboot for a change to be applied. Disabled: Instructs server not to activate server firmware and partitions for either a user-initated power on or a recovery power on, Enabled: Instructs the server to automatically activate certain partitions for either a user-initated power on or a recovery power on, ManualOnly: Instructs the server to activate server firmware and partitions automatically only in case of a recovery power on after an abnormal termination.",
+            "displayName": "pvm_stop_at_standby",
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/control/host0/boot",
+                "interface": "xyz.openbmc_project.Control.Boot.Mode",
+                "property_name": "BootMode",
+                "property_type": "string",
+                "property_values": [
+                    "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular",
+                    "xyz.openbmc_project.Control.Boot.Mode.Modes.Setup",
+                    "xyz.openbmc_project.Control.Boot.Mode.Modes.Safe"
+                ]
             }
-      },
-      {
-         "attribute_name":"pvm_stop_at_standby_current",
-         "possible_values":[
-            "Disabled",
-            "Enabled",
-            "ManualOnly"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "Specifies the current hypervisor boot policy. Do not set this attribute directly; set pvm_stop_at_standby instead.",
-         "displayName" : "pvm_stop_at_standby_current (current)"
-      },
-      {
-         "attribute_name":"hb_debug_console",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "When set to Enabled Hostboot should emit debug trace information to the VUART2 device.",
-         "displayName" : "hb-debug-console"
-      },
-      {
-         "attribute_name":"hb_inhibit_bmc_reset",
-         "possible_values":[
-            "NoInhibit",
-            "Inhibit"
-         ],
-         "default_values":[
-            "NoInhibit"
-         ],
-         "helpText" : "When set to Inhibit, the hypervisor shall not reset/reload the BMC at runtime.",
-         "displayName" : "hb-inhibit-bmc-reset",
-         "readOnly":true
-      },
-      {
-         "attribute_name":"pvm_system_power_off_policy",
-         "possible_values":[
-            "Power Off",
-            "Stay On",
-            "Automatic"
-         ],
-         "default_values":[
-            "Automatic"
-          ],
-         "helpText" : "The system power off policy flag is a system parameter that controls the system's behavior when the last partition (or only partition in the case of a system that is not managed by an HMC) is powered off.",
-         "displayName" : "System Automatic Power Off Policy"
-      },
-      {
-         "attribute_name":"pvm_hmc_managed",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "This option enables or disables the system is managed by HMC.",
-         "displayName" : "HMC managed System"
-      },
-      {
-         "attribute_name":"pvm_rtad",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "This option enables or disables the Remote Trusted Attestation Daemon for host firmware.",
-         "displayName" : "Remote Trusted Attestation Daemon State"
-      },
-      {
-         "attribute_name":"pvm_default_os_type",
-         "possible_values":[
-            "AIX",
-            "Linux",
-            "IBM I",
-            "Default"
-         ],
-         "default_values":[
-            "Default"
-         ],
-         "helpText" : "CEC Primary OS",
-         "displayName" : "CEC Primary OS"
-      },
-      {
-         "attribute_name":"pvm_default_os_type_current",
-         "possible_values":[
-            "AIX",
-            "Linux",
-            "IBM I",
-            "Default"
-         ],
-         "default_values":[
-            "Default"
-         ],
-         "helpText" : "Specifies the current CEC Primary OS type. Do not set this attribute directly; set pvm_default_os_type instead.",
-         "displayName" : "CEC Primary OS (current)"
-      },
-      {
-         "attribute_name":"pvm_system_operating_mode",
-         "possible_values":[
-            "Normal",
-            "Manual"
-         ],
-         "default_values":[
-            "Normal"
-         ],
-         "helpText" : "Manual mode is used for service or maintenance purpose of the system hardware. When the system is in manual mode, various automatic functions such as recovery on error, system poweron on power loss and reboot of host on failure are disabled.",
-         "displayName" : "Server Operating Mode"
-      },
-      {
-         "attribute_name":"pvm_rpa_boot_mode",
-         "possible_values":[
-            "Normal",
-            "SavedList",
-            "SmsMenu",
-            "OkPrompt",
-            "DefaultList"
-         ],
-         "default_values":[
-            "Normal"
-         ],
-         "helpText" : "Select the boot type for an AIX/Linux partition. Normal: The partition boots directly to the operating system, SavedList: The system boots from the saved service mode boot list, SmsMenu: The partition stops at the System Management Services(SMS) menu, OkPrompt: The system stops at the open firmware prompt, DefaultList: The system boots from the default boot list.",
-         "displayName" : "AIX/Linux Partition Boot Mode"
-      },
-      {
-         "attribute_name":"pvm_rpa_boot_mode_current",
-         "possible_values":[
-            "Normal",
-            "SavedList",
-            "SmsMenu",
-            "OkPrompt",
-            "DefaultList"
-         ],
-         "default_values":[
-            "Normal"
-         ],
-         "helpText" : "Specifies the current boot type for an AIX/Linux partition. Do not set this attribute directly; set pvm_rpa_boot_mode instead.",
-         "displayName" : "AIX/Linux Partition Boot Mode (current)"
-      },
-      {
-         "attribute_name":"pvm_os_boot_type",
-         "possible_values":[
-            "A_Mode",
-            "B_Mode",
-            "C_Mode",
-            "D_Mode"
-         ],
-         "default_values":[
-            "D_Mode"
-         ],
-         "helpText" : "Select the IBMi partition boot mode for next system boot. A_Mode: Boot from disk using copy A, B_Mode: Boot from disk using copy B, C_Mode: Reserved for IBM lab use only, D_Mode: Boot from media/drives.",
-         "displayName" : "IBMi Partition Boot Mode"
-      },
-      {
-         "attribute_name":"pvm_os_boot_type_current",
-         "possible_values":[
-            "A_Mode",
-            "B_Mode",
-            "C_Mode",
-            "D_Mode"
-         ],
-         "default_values":[
-            "D_Mode"
-         ],
-         "helpText" : "Specifies the current IBMi partition boot mode for next system boot. Do not set this attribute directly; set pvm_os_boot_type instead.",
-         "displayName" : "IBMi Partition Boot Mode (current)"
-      },
-      {
-         "attribute_name":"pvm_vtpm",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Enabled"
-         ],
-         "helpText" : "Enabling vTPM makes a TPM available to the guest operating system.",
-         "displayName" : "Virtual Trusted Platform Module"
-      },
-      {
-         "attribute_name":"pvm_vtpm_current",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Enabled"
-         ],
-         "helpText" : "Specifies the current vTPM policy. Do not set this attribute directly; set pvm_vtpm instead.",
-         "displayName" : "Virtual Trusted Platform Module (current)"
-      },
-      {
-         "attribute_name":"pvm_sys_dump_active",
-         "possible_values":[
-            "Enabled",
-            "Disabled"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "Enabled when a system dump is in progress or stored in hypervisor memory and ready for offload, Disabled otherwise.",
-         "displayName" : "System Dump Active"
-      },
-      {
-         "attribute_name":"hb_memory_region_size",
-         "possible_values":[
-            "128MB",
-            "256MB"
-         ],
-         "default_values":[
-            "256MB"
-         ],
-         "helpText" : "Specifies the size of the logical memory block the system uses to read memory, requires a reboot for a change to be applied.",
-         "displayName" : "Memory Region Size (pending)"
-      },
-      {
-         "attribute_name":"hb_memory_region_size_current",
-         "possible_values":[
-            "128MB",
-            "256MB"
-         ],
-         "default_values":[
-            "256MB"
-         ],
-         "helpText" : "Specifies the size of the logical memory block the system uses to read memory for the current IPL. Do not set this attribute directly; set hb_memory_region_size instead.",
-         "displayName" : "Memory Region Size (current)"
-      },
-      {
-         "attribute_name":"hb_power_limit_enable",
-         "possible_values":[
-            "Enabled",
-            "Disabled"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "Specifies whether the power limit is enabled.",
-         "displayName" : "Power Limit Enable",
-         "dbus":
-            {
-               "object_path" : "/xyz/openbmc_project/control/host0/power_cap",
-               "interface" : "xyz.openbmc_project.Control.Power.Cap",
-               "property_name" : "PowerCapEnable",
-               "property_type" : "bool",
-               "property_values" : [true, false]
+        },
+        {
+            "attribute_name": "pvm_stop_at_standby_current",
+            "possible_values": ["Disabled", "Enabled", "ManualOnly"],
+            "default_values": ["Disabled"],
+            "helpText": "Specifies the current hypervisor boot policy. Do not set this attribute directly; set pvm_stop_at_standby instead.",
+            "displayName": "pvm_stop_at_standby_current (current)"
+        },
+        {
+            "attribute_name": "hb_debug_console",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Disabled"],
+            "helpText": "When set to Enabled Hostboot should emit debug trace information to the VUART2 device.",
+            "displayName": "hb-debug-console"
+        },
+        {
+            "attribute_name": "hb_inhibit_bmc_reset",
+            "possible_values": ["NoInhibit", "Inhibit"],
+            "default_values": ["NoInhibit"],
+            "helpText": "When set to Inhibit, the hypervisor shall not reset/reload the BMC at runtime.",
+            "displayName": "hb-inhibit-bmc-reset",
+            "readOnly": true
+        },
+        {
+            "attribute_name": "pvm_system_power_off_policy",
+            "possible_values": ["Power Off", "Stay On", "Automatic"],
+            "default_values": ["Automatic"],
+            "helpText": "The system power off policy flag is a system parameter that controls the system's behavior when the last partition (or only partition in the case of a system that is not managed by an HMC) is powered off.",
+            "displayName": "System Automatic Power Off Policy"
+        },
+        {
+            "attribute_name": "pvm_hmc_managed",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Disabled"],
+            "helpText": "This option enables or disables the system is managed by HMC.",
+            "displayName": "HMC managed System"
+        },
+        {
+            "attribute_name": "pvm_rtad",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Disabled"],
+            "helpText": "This option enables or disables the Remote Trusted Attestation Daemon for host firmware.",
+            "displayName": "Remote Trusted Attestation Daemon State"
+        },
+        {
+            "attribute_name": "pvm_default_os_type",
+            "possible_values": ["AIX", "Linux", "IBM I", "Default"],
+            "default_values": ["Default"],
+            "helpText": "CEC Primary OS",
+            "displayName": "CEC Primary OS"
+        },
+        {
+            "attribute_name": "pvm_default_os_type_current",
+            "possible_values": ["AIX", "Linux", "IBM I", "Default"],
+            "default_values": ["Default"],
+            "helpText": "Specifies the current CEC Primary OS type. Do not set this attribute directly; set pvm_default_os_type instead.",
+            "displayName": "CEC Primary OS (current)"
+        },
+        {
+            "attribute_name": "pvm_system_operating_mode",
+            "possible_values": ["Normal", "Manual"],
+            "default_values": ["Normal"],
+            "helpText": "Manual mode is used for service or maintenance purpose of the system hardware. When the system is in manual mode, various automatic functions such as recovery on error, system poweron on power loss and reboot of host on failure are disabled.",
+            "displayName": "Server Operating Mode"
+        },
+        {
+            "attribute_name": "pvm_rpa_boot_mode",
+            "possible_values": [
+                "Normal",
+                "SavedList",
+                "SmsMenu",
+                "OkPrompt",
+                "DefaultList"
+            ],
+            "default_values": ["Normal"],
+            "helpText": "Select the boot type for an AIX/Linux partition. Normal: The partition boots directly to the operating system, SavedList: The system boots from the saved service mode boot list, SmsMenu: The partition stops at the System Management Services(SMS) menu, OkPrompt: The system stops at the open firmware prompt, DefaultList: The system boots from the default boot list.",
+            "displayName": "AIX/Linux Partition Boot Mode"
+        },
+        {
+            "attribute_name": "pvm_rpa_boot_mode_current",
+            "possible_values": [
+                "Normal",
+                "SavedList",
+                "SmsMenu",
+                "OkPrompt",
+                "DefaultList"
+            ],
+            "default_values": ["Normal"],
+            "helpText": "Specifies the current boot type for an AIX/Linux partition. Do not set this attribute directly; set pvm_rpa_boot_mode instead.",
+            "displayName": "AIX/Linux Partition Boot Mode (current)"
+        },
+        {
+            "attribute_name": "pvm_os_boot_type",
+            "possible_values": ["A_Mode", "B_Mode", "C_Mode", "D_Mode"],
+            "default_values": ["D_Mode"],
+            "helpText": "Select the IBMi partition boot mode for next system boot. A_Mode: Boot from disk using copy A, B_Mode: Boot from disk using copy B, C_Mode: Reserved for IBM lab use only, D_Mode: Boot from media/drives.",
+            "displayName": "IBMi Partition Boot Mode"
+        },
+        {
+            "attribute_name": "pvm_os_boot_type_current",
+            "possible_values": ["A_Mode", "B_Mode", "C_Mode", "D_Mode"],
+            "default_values": ["D_Mode"],
+            "helpText": "Specifies the current IBMi partition boot mode for next system boot. Do not set this attribute directly; set pvm_os_boot_type instead.",
+            "displayName": "IBMi Partition Boot Mode (current)"
+        },
+        {
+            "attribute_name": "pvm_vtpm",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Enabled"],
+            "helpText": "Enabling vTPM makes a TPM available to the guest operating system.",
+            "displayName": "Virtual Trusted Platform Module"
+        },
+        {
+            "attribute_name": "pvm_vtpm_current",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Enabled"],
+            "helpText": "Specifies the current vTPM policy. Do not set this attribute directly; set pvm_vtpm instead.",
+            "displayName": "Virtual Trusted Platform Module (current)"
+        },
+        {
+            "attribute_name": "pvm_sys_dump_active",
+            "possible_values": ["Enabled", "Disabled"],
+            "default_values": ["Disabled"],
+            "helpText": "Enabled when a system dump is in progress or stored in hypervisor memory and ready for offload, Disabled otherwise.",
+            "displayName": "System Dump Active"
+        },
+        {
+            "attribute_name": "hb_memory_region_size",
+            "possible_values": ["128MB", "256MB"],
+            "default_values": ["256MB"],
+            "helpText": "Specifies the size of the logical memory block the system uses to read memory, requires a reboot for a change to be applied.",
+            "displayName": "Memory Region Size (pending)"
+        },
+        {
+            "attribute_name": "hb_memory_region_size_current",
+            "possible_values": ["128MB", "256MB"],
+            "default_values": ["256MB"],
+            "helpText": "Specifies the size of the logical memory block the system uses to read memory for the current IPL. Do not set this attribute directly; set hb_memory_region_size instead.",
+            "displayName": "Memory Region Size (current)"
+        },
+        {
+            "attribute_name": "hb_power_limit_enable",
+            "possible_values": ["Enabled", "Disabled"],
+            "default_values": ["Disabled"],
+            "helpText": "Specifies whether the power limit is enabled.",
+            "displayName": "Power Limit Enable",
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/control/host0/power_cap",
+                "interface": "xyz.openbmc_project.Control.Power.Cap",
+                "property_name": "PowerCapEnable",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
-      },
-      {
-         "attribute_name":"hb_power_limit_enable_current",
-         "possible_values":[
-            "Enabled",
-            "Disabled"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "Specifies if the power limit is enabled for the current IPL. Do not set this attribute directly; set hb_power_limit_enable instead.",
-         "displayName" : "Power Limit Enable (current)"
-      },
-      {
-         "attribute_name":"hb_secure_ver_lockin_enabled",
-         "possible_values":[
-            "Enabled",
-            "Disabled"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "Specifies whether the secure version lockin functionality is enabled.",
-         "displayName" : "Secure Version Lockin Enabled"
-      },
-      {
-         "attribute_name":"hb_memory_mirror_mode",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "Specifies if the memory mirroring is enabled, requires a reboot for a change to be applied.",
-         "displayName" : "Memory Mirror Mode (pending)"
-      },
-      {
-         "attribute_name":"hb_memory_mirror_mode_current",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "Specifies if the memory mirroring is enabled for the current IPL. Do not set this attribute directly; set hb_memory_mirror_mode instead.",
-         "displayName" : "Memory Mirror Mode (current)"
-      },
-      {
-         "attribute_name":"hb_tpm_required",
-         "possible_values":[
-            "Required",
-            "Not Required"
-         ],
-         "default_values":[
-            "Required"
-         ],
-         "helpText" : "When the 'TPM Required Policy' is 'Required', a functional TPM is required to boot the system",
-         "displayName" : "TPM Required Policy (pending)",
-         "dbus":
-            {
-               "object_path" : "/xyz/openbmc_project/control/host0/TPMEnable",
-               "interface" : "xyz.openbmc_project.Control.TPM.Policy",
-               "property_name" : "TPMEnable",
-               "property_type" : "bool",
-               "property_values" : [true, false]
+        },
+        {
+            "attribute_name": "hb_power_limit_enable_current",
+            "possible_values": ["Enabled", "Disabled"],
+            "default_values": ["Disabled"],
+            "helpText": "Specifies if the power limit is enabled for the current IPL. Do not set this attribute directly; set hb_power_limit_enable instead.",
+            "displayName": "Power Limit Enable (current)"
+        },
+        {
+            "attribute_name": "hb_secure_ver_lockin_enabled",
+            "possible_values": ["Enabled", "Disabled"],
+            "default_values": ["Disabled"],
+            "helpText": "Specifies whether the secure version lockin functionality is enabled.",
+            "displayName": "Secure Version Lockin Enabled"
+        },
+        {
+            "attribute_name": "hb_memory_mirror_mode",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Disabled"],
+            "helpText": "Specifies if the memory mirroring is enabled, requires a reboot for a change to be applied.",
+            "displayName": "Memory Mirror Mode (pending)"
+        },
+        {
+            "attribute_name": "hb_memory_mirror_mode_current",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Disabled"],
+            "helpText": "Specifies if the memory mirroring is enabled for the current IPL. Do not set this attribute directly; set hb_memory_mirror_mode instead.",
+            "displayName": "Memory Mirror Mode (current)"
+        },
+        {
+            "attribute_name": "hb_tpm_required",
+            "possible_values": ["Required", "Not Required"],
+            "default_values": ["Required"],
+            "helpText": "When the 'TPM Required Policy' is 'Required', a functional TPM is required to boot the system",
+            "displayName": "TPM Required Policy (pending)",
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/control/host0/TPMEnable",
+                "interface": "xyz.openbmc_project.Control.TPM.Policy",
+                "property_name": "TPMEnable",
+                "property_type": "bool",
+                "property_values": [true, false]
             }
-      },
-      {
-         "attribute_name":"hb_tpm_required_current",
-         "possible_values":[
-            "Required",
-            "Not Required"
-         ],
-         "default_values":[
-            "Required"
-         ],
-         "helpText" : "When the 'TPM Required Policy' is 'Required', a functional TPM is required to boot the system. Do not set this attribute directly; set hb_tpm_required instead.",
-         "displayName" : "TPM Required Policy (current)"
-      },
-      {
-         "attribute_name":"hb_key_clear_request",
-         "possible_values":[
-            "NONE",
-            "ALL",
-            "OS_KEYS",
-            "POWERVM_SYSKEY",
-            "MFG_ALL",
-            "MFG"
-         ],
-         "default_values":[
-            "NONE"
-         ],
-         "helpText" : "Specifies the requested level of security keys to be cleared from the system, requires a reboot to take effect",
-         "displayName" : "Key Clear Request (pending)"
-      },
-      {
-         "attribute_name":"hb_key_clear_request_current",
-         "possible_values":[
-            "NONE",
-            "ALL",
-            "OS_KEYS",
-            "POWERVM_SYSKEY",
-            "MFG_ALL",
-            "MFG"
-         ],
-         "default_values":[
-            "NONE"
-         ],
-         "helpText" : "Specifies the requested level of security keys to be cleared from the system for the current IPL. Do not set this attribute directly; set hb_key_clear_request instead.",
-         "displayName" : "Key Clear Request (current)"
-      },
-      {
-         "attribute_name":"hb_host_usb_enablement",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Enabled"
-         ],
-         "helpText" : "Specifies if Host USB is disabled or enabled for security reasons, requires a reboot for a change to be applied.",
-         "displayName" : "Host USB Enablement (pending)"
-      },
-      {
-         "attribute_name":"hb_host_usb_enablement_current",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Enabled"
-         ],
-         "helpText" : "Specifies if Host USB is disabled or enabled for security reasons. Do not set this attribute directly; set hb_host_usb_enablement instead.",
-         "displayName" : "Host USB Enablement (current)"
-     },
-     {
-        "attribute_name":"pvm_auto_poweron_restart",
-        "possible_values":[
-           "Disabled",
-           "Enabled"
-        ],
-        "default_values":[
-           "Disabled"
-        ],
-        "helpText" : "Select auto poweron policy. Disabled: Instructs server not to activate any auto poweron logic, Enabled: The system will boot automatically once power is restored after a power disturbance.",
-        "displayName" : "pvm_auto_poweron_restart",
-        "dbus":
-           {
-              "object_path" : "/xyz/openbmc_project/control/host0/power_restore_policy",
-              "interface" : "xyz.openbmc_project.Control.Power.RestorePolicy",
-              "property_name" : "PowerRestorePolicy",
-              "property_type" : "string",
-              "property_values" : ["xyz.openbmc_project.Control.Power.RestorePolicy.Policy.None", "xyz.openbmc_project.Control.Power.RestorePolicy.Policy.AlwaysOn"]
-           }
-      },
-      {
-         "attribute_name":"hb_lateral_cast_out_mode",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Enabled"
-         ],
-         "helpText" : "Only change this value if instructed by service provider as it might degrade system performance. Specifies if Lateral Cast Out mode is disabled or enabled, requires a reboot for a change to be applied.",
-         "displayName" : "Lateral Cast Out mode (pending)"
-      },
-      {
-         "attribute_name":"hb_lateral_cast_out_mode_current",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Enabled"
-         ],
-         "helpText" : "Only change this value if instructed by service provider as it might degrade system performance. Specifies if Lateral Cast Out mode is disabled or enabled. Do not set this attribute directly; set hb_lateral_cast_out_mode instead.",
-         "displayName" : "Lateral Cast Out mode (current)"
-      },
-      {
-         "attribute_name":"hb_proc_favor_aggressive_prefetch",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "Only change this value if instructed by service provider as it might degrade system performance. Specifies if Proc Favor Aggressive Prefetch is disabled or enabled, requires a reboot for a change to be applied.",
-         "displayName" : "Proc Favor Aggressive Prefetch (pending)"
-      },
-      {
-         "attribute_name":"hb_proc_favor_aggressive_prefetch_current",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "Only change this value if instructed by service provider as it might degrade system performance. Specifies if Proc Favor Aggressive Prefetch is disabled or enabled. Do not set this attribute directly; set hb_proc_favor_aggressive_prefetch instead.",
-         "displayName" : "Proc Favor Aggressive Prefetch (current)"
-      },
-      {
-         "attribute_name":"pvm_create_default_lpar",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "When enabled creates a new default partition after NVRAM is cleared. This is primarily for machines that are managed by hardware management console.",
-         "displayName" : "pvm_create_default_lpar (pending)"
-      },
-      {
-         "attribute_name":"pvm_create_default_lpar_current",
-         "possible_values":[
-            "Disabled",
-            "Enabled"
-         ],
-         "default_values":[
-            "Disabled"
-         ],
-         "helpText" : "When enabled creates a new default partition after NVRAM is cleared. This is primarily for machines that are managed by hardware management console.Do not set this attribute directly; set pvm_create_default_lpar instead.",
-         "displayName" : "pvm_create_default_lpar (current)"
-      },
-      {
-        "attribute_name":"pvm_keep_and_clear",
-        "possible_values":[
-           "Disabled",
-           "Enabled"
-        ],
-        "default_values":[
-           "Disabled"
-        ],
-        "helpText" : "The hypervisor needs to clear most of PHYP NVRAM, but preserve the NVRAM for the manufacturing default partition",
-        "displayName" : "pvm_keep_and_clear"
-     },
-     {
-        "attribute_name":"pvm_clear_nvram",
-        "possible_values":[
-           "Disabled",
-           "Enabled"
-        ],
-        "default_values":[
-           "Disabled"
-        ],
-        "helpText" : "Specifies if the hypervisor needs to clear PHYP NVRAM",
-        "displayName" : "pvm_clear_nvram"
-     },
-     {
-         "attribute_name":"pvm_boot_initiator",
-         "possible_values":[
-             "User",
-             "HMC",
-             "Host",
-             "Auto"
-         ],
-         "default_values":[
-            "User"
-         ],
-         "helpText" : "Specifies who initiated the IPL.",
-         "displayName" : "IPL Initiator (pending)"
-      },
-      {
-         "attribute_name":"pvm_boot_initiator_current",
-         "possible_values":[
-             "User",
-             "HMC",
-             "Host",
-             "Auto"
-         ],
-         "default_values":[
-            "User"
-         ],
-         "helpText" : "Specifies who initiated the IPL. Set pvm_boot_initiator instead.",
-         "displayName" : "IPL Initiator (current)",
-         "readOnly":true
-      },
-      {
-         "attribute_name":"pvm_boot_type",
-         "possible_values":[
-            "IPL",
-            "ReIPL"
-         ],
-         "default_values":[
-            "IPL"
-         ],
-         "helpText" : "Specifies if the boot type is an IPL or a ReIPL",
-         "displayName" : "Boot Type Indicator (pending)"
-      },
-      {
-         "attribute_name":"pvm_boot_type_current",
-         "possible_values":[
-            "IPL",
-            "ReIPL"
-         ],
-         "default_values":[
-            "IPL"
-         ],
-         "helpText" : "Specifies if the boot type is an IPL or a ReIPL. Set pvm_boot_type instead",
-         "displayName" : "Boot Type Indicator (current)",
-         "readOnly":true
-      }
-   ]
+        },
+        {
+            "attribute_name": "hb_tpm_required_current",
+            "possible_values": ["Required", "Not Required"],
+            "default_values": ["Required"],
+            "helpText": "When the 'TPM Required Policy' is 'Required', a functional TPM is required to boot the system. Do not set this attribute directly; set hb_tpm_required instead.",
+            "displayName": "TPM Required Policy (current)"
+        },
+        {
+            "attribute_name": "hb_key_clear_request",
+            "possible_values": [
+                "NONE",
+                "ALL",
+                "OS_KEYS",
+                "POWERVM_SYSKEY",
+                "MFG_ALL",
+                "MFG"
+            ],
+            "default_values": ["NONE"],
+            "helpText": "Specifies the requested level of security keys to be cleared from the system, requires a reboot to take effect",
+            "displayName": "Key Clear Request (pending)"
+        },
+        {
+            "attribute_name": "hb_key_clear_request_current",
+            "possible_values": [
+                "NONE",
+                "ALL",
+                "OS_KEYS",
+                "POWERVM_SYSKEY",
+                "MFG_ALL",
+                "MFG"
+            ],
+            "default_values": ["NONE"],
+            "helpText": "Specifies the requested level of security keys to be cleared from the system for the current IPL. Do not set this attribute directly; set hb_key_clear_request instead.",
+            "displayName": "Key Clear Request (current)"
+        },
+        {
+            "attribute_name": "hb_host_usb_enablement",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Enabled"],
+            "helpText": "Specifies if Host USB is disabled or enabled for security reasons, requires a reboot for a change to be applied.",
+            "displayName": "Host USB Enablement (pending)"
+        },
+        {
+            "attribute_name": "hb_host_usb_enablement_current",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Enabled"],
+            "helpText": "Specifies if Host USB is disabled or enabled for security reasons. Do not set this attribute directly; set hb_host_usb_enablement instead.",
+            "displayName": "Host USB Enablement (current)"
+        },
+        {
+            "attribute_name": "pvm_auto_poweron_restart",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Disabled"],
+            "helpText": "Select auto poweron policy. Disabled: Instructs server not to activate any auto poweron logic, Enabled: The system will boot automatically once power is restored after a power disturbance.",
+            "displayName": "pvm_auto_poweron_restart",
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/control/host0/power_restore_policy",
+                "interface": "xyz.openbmc_project.Control.Power.RestorePolicy",
+                "property_name": "PowerRestorePolicy",
+                "property_type": "string",
+                "property_values": [
+                    "xyz.openbmc_project.Control.Power.RestorePolicy.Policy.None",
+                    "xyz.openbmc_project.Control.Power.RestorePolicy.Policy.AlwaysOn"
+                ]
+            }
+        },
+        {
+            "attribute_name": "hb_lateral_cast_out_mode",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Enabled"],
+            "helpText": "Only change this value if instructed by service provider as it might degrade system performance. Specifies if Lateral Cast Out mode is disabled or enabled, requires a reboot for a change to be applied.",
+            "displayName": "Lateral Cast Out mode (pending)"
+        },
+        {
+            "attribute_name": "hb_lateral_cast_out_mode_current",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Enabled"],
+            "helpText": "Only change this value if instructed by service provider as it might degrade system performance. Specifies if Lateral Cast Out mode is disabled or enabled. Do not set this attribute directly; set hb_lateral_cast_out_mode instead.",
+            "displayName": "Lateral Cast Out mode (current)"
+        },
+        {
+            "attribute_name": "hb_proc_favor_aggressive_prefetch",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Disabled"],
+            "helpText": "Only change this value if instructed by service provider as it might degrade system performance. Specifies if Proc Favor Aggressive Prefetch is disabled or enabled, requires a reboot for a change to be applied.",
+            "displayName": "Proc Favor Aggressive Prefetch (pending)"
+        },
+        {
+            "attribute_name": "hb_proc_favor_aggressive_prefetch_current",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Disabled"],
+            "helpText": "Only change this value if instructed by service provider as it might degrade system performance. Specifies if Proc Favor Aggressive Prefetch is disabled or enabled. Do not set this attribute directly; set hb_proc_favor_aggressive_prefetch instead.",
+            "displayName": "Proc Favor Aggressive Prefetch (current)"
+        },
+        {
+            "attribute_name": "pvm_create_default_lpar",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Disabled"],
+            "helpText": "When enabled creates a new default partition after NVRAM is cleared. This is primarily for machines that are managed by hardware management console.",
+            "displayName": "pvm_create_default_lpar (pending)"
+        },
+        {
+            "attribute_name": "pvm_create_default_lpar_current",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Disabled"],
+            "helpText": "When enabled creates a new default partition after NVRAM is cleared. This is primarily for machines that are managed by hardware management console.Do not set this attribute directly; set pvm_create_default_lpar instead.",
+            "displayName": "pvm_create_default_lpar (current)"
+        },
+        {
+            "attribute_name": "pvm_keep_and_clear",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Disabled"],
+            "helpText": "The hypervisor needs to clear most of PHYP NVRAM, but preserve the NVRAM for the manufacturing default partition",
+            "displayName": "pvm_keep_and_clear"
+        },
+        {
+            "attribute_name": "pvm_clear_nvram",
+            "possible_values": ["Disabled", "Enabled"],
+            "default_values": ["Disabled"],
+            "helpText": "Specifies if the hypervisor needs to clear PHYP NVRAM",
+            "displayName": "pvm_clear_nvram"
+        },
+        {
+            "attribute_name": "pvm_boot_initiator",
+            "possible_values": ["User", "HMC", "Host", "Auto"],
+            "default_values": ["User"],
+            "helpText": "Specifies who initiated the IPL.",
+            "displayName": "IPL Initiator (pending)"
+        },
+        {
+            "attribute_name": "pvm_boot_initiator_current",
+            "possible_values": ["User", "HMC", "Host", "Auto"],
+            "default_values": ["User"],
+            "helpText": "Specifies who initiated the IPL. Set pvm_boot_initiator instead.",
+            "displayName": "IPL Initiator (current)",
+            "readOnly": true
+        },
+        {
+            "attribute_name": "pvm_boot_type",
+            "possible_values": ["IPL", "ReIPL"],
+            "default_values": ["IPL"],
+            "helpText": "Specifies if the boot type is an IPL or a ReIPL",
+            "displayName": "Boot Type Indicator (pending)"
+        },
+        {
+            "attribute_name": "pvm_boot_type_current",
+            "possible_values": ["IPL", "ReIPL"],
+            "default_values": ["IPL"],
+            "helpText": "Specifies if the boot type is an IPL or a ReIPL. Set pvm_boot_type instead",
+            "displayName": "Boot Type Indicator (current)",
+            "readOnly": true
+        }
+    ]
 }
diff --git a/oem/ibm/configurations/bios/integer_attrs.json b/oem/ibm/configurations/bios/integer_attrs.json
index 5507aaf..cce37b5 100644
--- a/oem/ibm/configurations/bios/integer_attrs.json
+++ b/oem/ibm/configurations/bios/integer_attrs.json
@@ -1,186 +1,186 @@
 {
-   "entries":[
-      {
-         "attribute_name" : "vmi_if0_ipv4_prefix_length",
-         "lower_bound" : 0,
-         "upper_bound" : 32,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "helpText" : "vmi_if0_ipv4_prefix_length",
-         "displayName" : "vmi_if0_ipv4_prefix_length"
-      },
-      {
-         "attribute_name" : "vmi_if1_ipv4_prefix_length",
-         "lower_bound" : 0,
-         "upper_bound" : 32,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "helpText" : "vmi_if1_ipv4_prefix_length",
-         "displayName" : "vmi_if1_ipv4_prefix_length"
-      },
-      {
-         "attribute_name" : "vmi_if0_ipv6_prefix_length",
-         "lower_bound" : 1,
-         "upper_bound" : 128,
-         "scalar_increment" : 1,
-         "default_value" : 128,
-         "helpText" : "vmi_if0_ipv6_prefix_length",
-         "displayName" : "vmi_if0_ipv6_prefix_length"
-      },
-      {
-         "attribute_name" : "vmi_if1_ipv6_prefix_length",
-         "lower_bound" : 1,
-         "upper_bound" : 128,
-         "scalar_increment" : 1,
-         "default_value" : 128,
-         "helpText" : "vmi_if1_ipv6_prefix_length",
-         "displayName" : "vmi_if1_ipv6_prefix_length"
-      },
-      {
-         "attribute_name" : "hb_number_huge_pages",
-         "lower_bound" : 0,
-         "upper_bound" : 65535,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "helpText" : "Specifies the number of huge pages available for memory management, requires a reboot for a change to be applied.",
-         "displayName" : "Number Huge Pages (pending)"
-      },
-      {
-         "attribute_name" : "hb_number_huge_pages_current",
-         "lower_bound" : 0,
-         "upper_bound" : 65535,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "helpText" : "Specifies the number of huge pages available for memory management for the current IPL. Do not set this attribute directly; set hb_number_huge_pages instead.",
-         "displayName" : "Number Huge Pages (current)"
-      },
-      {
-         "attribute_name" : "hb_huge_page_size",
-         "lower_bound" : 0,
-         "upper_bound" : 255,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "helpText" : "Specifies the size of huge pages, 0 = 16GB, requires a reboot for a change to be applied.",
-         "displayName" : "Huge Page Size (pending)"
-      },
-      {
-         "attribute_name" : "hb_huge_page_size_current",
-         "lower_bound" : 0,
-         "upper_bound" : 255,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "helpText" : "Specifies the size of huge pages, 0 = 16GB, for the current IPL. Do not set this attribute directly; set hb_huge_page_size instead.",
-         "displayName" : "Huge Page Size (current)"
-      },
-      {
-         "attribute_name" : "hb_field_core_override",
-         "lower_bound" : 0,
-         "upper_bound" : 255,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "helpText" : "The maximum number of cores to activate where 0 being to activate all available cores. Requires a reboot for a change to be applied.",
-         "displayName" : "Field Core Override (pending)"
-      },
-      {
-         "attribute_name" : "hb_field_core_override_current",
-         "lower_bound" : 0,
-         "upper_bound" : 255,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "helpText" : "The maximum number of cores to activate where 0 being to activate all available cores. Value applicable for the current IPL. Do not set this attribute directly; set hb_field_core_override instead.",
-         "displayName" : "Field Core Override (current)"
-      },
-      {
-         "attribute_name" : "hb_power_limit_in_watts",
-         "lower_bound" : 0,
-         "upper_bound" : 65535,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "helpText" : "Specifies the power limit in watts.",
-         "displayName" : "Power Limit In Watts",
-         "dbus":{
-            "object_path" : "/xyz/openbmc_project/control/host0/power_cap",
-            "interface" : "xyz.openbmc_project.Control.Power.Cap",
-            "property_type" : "uint32_t",
-            "property_name" : "PowerCap"
-         }
-      },
-      {
-         "attribute_name" : "hb_max_number_huge_pages",
-         "lower_bound" : 0,
-         "upper_bound" : 65535,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "readOnly":true,
-         "helpText" : "Specifies the actual maximum number of huge pages available given the current system configuration.",
-         "displayName" : "Max Number Huge Pages"
-      },
-      {
-         "attribute_name" : "hb_ioadapter_enlarged_capacity",
-         "lower_bound" : 0,
-         "upper_bound" : 255,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "helpText" : "Specifies the enlarged IO capacity, requires a reboot for a change to be applied.",
-         "displayName" : "Enlarged IO Capacity (pending)"
-      },
-      {
-         "attribute_name" : "hb_ioadapter_enlarged_capacity_current",
-         "lower_bound" : 0,
-         "upper_bound" : 255,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "readOnly" : true,
-         "helpText" : "Specifies the enlarged IO capacity for the current IPL. Do not set this attribute directly; set hb_ioadapter_enlarged_capacity instead.",
-         "displayName" : "Enlarged IO Capacity (current)"
-      },
-      {
-         "attribute_name" : "hb_effective_secure_version",
-         "lower_bound" : 0,
-         "upper_bound" : 255,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "readOnly":true,
-         "helpText" : "Specifies the effective secure version of the host FW. In secure mode, the secure version value of a driver must be greater than or equal to this effective secure version to allow the system to boot.",
-         "displayName" : "Effective Secure Version"
-      },
-      {
-         "attribute_name" : "hb_cap_freq_mhz_min",
-         "lower_bound" : 0,
-         "upper_bound" : 4294967295,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "readOnly":true,
-         "helpText" : "Specifies the lowest floor frequency across all chips in the system.",
-         "displayName" : "Minimum Core Freq MHZ"
-      },
-      {
-         "attribute_name" : "hb_cap_freq_mhz_max",
-         "lower_bound" : 0,
-         "upper_bound" : 4294967295,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "readOnly":true,
-         "helpText" : "Specifies the highest ceiling frequency across all chips in the system.",
-         "displayName" : "Maximum Core Freq MHZ"
-      },
-      {
-         "attribute_name" : "hb_cap_freq_mhz_request",
-         "lower_bound" : 0,
-         "upper_bound" : 4294967295,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "helpText" : "Specifies the desired frequency across all chips in the system.  Requires a reboot for a change to be applied.",
-         "displayName" : "Requested Core Freq MHZ (pending)"
-      },
-      {
-         "attribute_name" : "hb_cap_freq_mhz_request_current",
-         "lower_bound" : 0,
-         "upper_bound" : 4294967295,
-         "scalar_increment" : 1,
-         "default_value" : 0,
-         "helpText" : "Specifies the desired frequency across all chips in the system.  Do not set this attribute directly; set hb_cap_freq_mhz_request instead.",
-         "displayName" : "Requested Core Freq MHZ (current)"
-      }
-   ]
+    "entries": [
+        {
+            "attribute_name": "vmi_if0_ipv4_prefix_length",
+            "lower_bound": 0,
+            "upper_bound": 32,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "helpText": "vmi_if0_ipv4_prefix_length",
+            "displayName": "vmi_if0_ipv4_prefix_length"
+        },
+        {
+            "attribute_name": "vmi_if1_ipv4_prefix_length",
+            "lower_bound": 0,
+            "upper_bound": 32,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "helpText": "vmi_if1_ipv4_prefix_length",
+            "displayName": "vmi_if1_ipv4_prefix_length"
+        },
+        {
+            "attribute_name": "vmi_if0_ipv6_prefix_length",
+            "lower_bound": 1,
+            "upper_bound": 128,
+            "scalar_increment": 1,
+            "default_value": 128,
+            "helpText": "vmi_if0_ipv6_prefix_length",
+            "displayName": "vmi_if0_ipv6_prefix_length"
+        },
+        {
+            "attribute_name": "vmi_if1_ipv6_prefix_length",
+            "lower_bound": 1,
+            "upper_bound": 128,
+            "scalar_increment": 1,
+            "default_value": 128,
+            "helpText": "vmi_if1_ipv6_prefix_length",
+            "displayName": "vmi_if1_ipv6_prefix_length"
+        },
+        {
+            "attribute_name": "hb_number_huge_pages",
+            "lower_bound": 0,
+            "upper_bound": 65535,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "helpText": "Specifies the number of huge pages available for memory management, requires a reboot for a change to be applied.",
+            "displayName": "Number Huge Pages (pending)"
+        },
+        {
+            "attribute_name": "hb_number_huge_pages_current",
+            "lower_bound": 0,
+            "upper_bound": 65535,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "helpText": "Specifies the number of huge pages available for memory management for the current IPL. Do not set this attribute directly; set hb_number_huge_pages instead.",
+            "displayName": "Number Huge Pages (current)"
+        },
+        {
+            "attribute_name": "hb_huge_page_size",
+            "lower_bound": 0,
+            "upper_bound": 255,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "helpText": "Specifies the size of huge pages, 0 = 16GB, requires a reboot for a change to be applied.",
+            "displayName": "Huge Page Size (pending)"
+        },
+        {
+            "attribute_name": "hb_huge_page_size_current",
+            "lower_bound": 0,
+            "upper_bound": 255,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "helpText": "Specifies the size of huge pages, 0 = 16GB, for the current IPL. Do not set this attribute directly; set hb_huge_page_size instead.",
+            "displayName": "Huge Page Size (current)"
+        },
+        {
+            "attribute_name": "hb_field_core_override",
+            "lower_bound": 0,
+            "upper_bound": 255,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "helpText": "The maximum number of cores to activate where 0 being to activate all available cores. Requires a reboot for a change to be applied.",
+            "displayName": "Field Core Override (pending)"
+        },
+        {
+            "attribute_name": "hb_field_core_override_current",
+            "lower_bound": 0,
+            "upper_bound": 255,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "helpText": "The maximum number of cores to activate where 0 being to activate all available cores. Value applicable for the current IPL. Do not set this attribute directly; set hb_field_core_override instead.",
+            "displayName": "Field Core Override (current)"
+        },
+        {
+            "attribute_name": "hb_power_limit_in_watts",
+            "lower_bound": 0,
+            "upper_bound": 65535,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "helpText": "Specifies the power limit in watts.",
+            "displayName": "Power Limit In Watts",
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/control/host0/power_cap",
+                "interface": "xyz.openbmc_project.Control.Power.Cap",
+                "property_type": "uint32_t",
+                "property_name": "PowerCap"
+            }
+        },
+        {
+            "attribute_name": "hb_max_number_huge_pages",
+            "lower_bound": 0,
+            "upper_bound": 65535,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "readOnly": true,
+            "helpText": "Specifies the actual maximum number of huge pages available given the current system configuration.",
+            "displayName": "Max Number Huge Pages"
+        },
+        {
+            "attribute_name": "hb_ioadapter_enlarged_capacity",
+            "lower_bound": 0,
+            "upper_bound": 255,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "helpText": "Specifies the enlarged IO capacity, requires a reboot for a change to be applied.",
+            "displayName": "Enlarged IO Capacity (pending)"
+        },
+        {
+            "attribute_name": "hb_ioadapter_enlarged_capacity_current",
+            "lower_bound": 0,
+            "upper_bound": 255,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "readOnly": true,
+            "helpText": "Specifies the enlarged IO capacity for the current IPL. Do not set this attribute directly; set hb_ioadapter_enlarged_capacity instead.",
+            "displayName": "Enlarged IO Capacity (current)"
+        },
+        {
+            "attribute_name": "hb_effective_secure_version",
+            "lower_bound": 0,
+            "upper_bound": 255,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "readOnly": true,
+            "helpText": "Specifies the effective secure version of the host FW. In secure mode, the secure version value of a driver must be greater than or equal to this effective secure version to allow the system to boot.",
+            "displayName": "Effective Secure Version"
+        },
+        {
+            "attribute_name": "hb_cap_freq_mhz_min",
+            "lower_bound": 0,
+            "upper_bound": 4294967295,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "readOnly": true,
+            "helpText": "Specifies the lowest floor frequency across all chips in the system.",
+            "displayName": "Minimum Core Freq MHZ"
+        },
+        {
+            "attribute_name": "hb_cap_freq_mhz_max",
+            "lower_bound": 0,
+            "upper_bound": 4294967295,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "readOnly": true,
+            "helpText": "Specifies the highest ceiling frequency across all chips in the system.",
+            "displayName": "Maximum Core Freq MHZ"
+        },
+        {
+            "attribute_name": "hb_cap_freq_mhz_request",
+            "lower_bound": 0,
+            "upper_bound": 4294967295,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "helpText": "Specifies the desired frequency across all chips in the system.  Requires a reboot for a change to be applied.",
+            "displayName": "Requested Core Freq MHZ (pending)"
+        },
+        {
+            "attribute_name": "hb_cap_freq_mhz_request_current",
+            "lower_bound": 0,
+            "upper_bound": 4294967295,
+            "scalar_increment": 1,
+            "default_value": 0,
+            "helpText": "Specifies the desired frequency across all chips in the system.  Do not set this attribute directly; set hb_cap_freq_mhz_request instead.",
+            "displayName": "Requested Core Freq MHZ (current)"
+        }
+    ]
 }
diff --git a/oem/ibm/configurations/bios/string_attrs.json b/oem/ibm/configurations/bios/string_attrs.json
index e83fadf..a91ff6f 100644
--- a/oem/ibm/configurations/bios/string_attrs.json
+++ b/oem/ibm/configurations/bios/string_attrs.json
@@ -1,141 +1,140 @@
 {
-   "entries":[
-      {
-         "attribute_name" : "pvm_system_name",
-         "string_type" : "ASCII",
-         "minimum_string_length" : 0,
-         "maximum_string_length" : 100,
-         "default_string_length" : 0,
-         "default_string" : "",
-         "helpText" : "pvm_system_name",
-         "displayName" : "pvm_system_name",
-         "dbus":
-            {
-               "object_path" : "/xyz/openbmc_project/inventory/system",
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.AssetTag",
-               "property_name" : "AssetTag",
-               "property_type" : "string"
+    "entries": [
+        {
+            "attribute_name": "pvm_system_name",
+            "string_type": "ASCII",
+            "minimum_string_length": 0,
+            "maximum_string_length": 100,
+            "default_string_length": 0,
+            "default_string": "",
+            "helpText": "pvm_system_name",
+            "displayName": "pvm_system_name",
+            "dbus": {
+                "object_path": "/xyz/openbmc_project/inventory/system",
+                "interface": "xyz.openbmc_project.Inventory.Decorator.AssetTag",
+                "property_name": "AssetTag",
+                "property_type": "string"
             }
-      },
-      {
-         "attribute_name" : "vmi_hostname",
-         "string_type" : "ASCII",
-         "minimum_string_length" : 0,
-         "maximum_string_length" : 255,
-         "default_string_length" : 0,
-         "default_string" : "",
-         "helpText" : "vmi_hostname",
-         "displayName" : "vmi_hostname"
-      },
-      {
-         "attribute_name" : "vmi_if0_ipv4_gateway",
-         "string_type" : "ASCII",
-         "minimum_string_length" : 7,
-         "maximum_string_length" : 15,
-         "default_string_length" : 7,
-         "default_string" : "0.0.0.0",
-         "helpText" : "vmi_if0_ipv4_gateway",
-         "displayName" : "vmi_if0_ipv4_gateway"
-      },
-	  {
-         "attribute_name" : "vmi_if1_ipv4_gateway",
-         "string_type" : "ASCII",
-         "minimum_string_length" : 7,
-         "maximum_string_length" : 15,
-         "default_string_length" : 7,
-         "default_string" : "0.0.0.0",
-         "helpText" : "vmi_if1_ipv4_gateway",
-         "displayName" : "vmi_if1_ipv4_gateway"
-      },
-      {
-         "attribute_name" : "vmi_if0_ipv4_ipaddr",
-         "string_type" : "ASCII",
-         "minimum_string_length" : 7,
-         "maximum_string_length" : 15,
-         "default_string_length" : 7,
-         "default_string" : "0.0.0.0",
-         "helpText" : "vmi_if0_ipv4_ipaddr",
-         "displayName" : "vmi_if0_ipv4_ipaddr"
-      },
-      {
-         "attribute_name" : "vmi_if1_ipv4_ipaddr",
-         "string_type" : "ASCII",
-         "minimum_string_length" : 7,
-         "maximum_string_length" : 15,
-         "default_string_length" : 7,
-         "default_string" : "0.0.0.0",
-         "helpText" : "vmi_if1_ipv4_ipaddr",
-         "displayName" : "vmi_if1_ipv4_ipaddr"
-      },
-      {
-         "attribute_name" : "vmi_if0_ipv6_gateway",
-         "string_type" : "ASCII",
-         "minimum_string_length" : 2,
-         "maximum_string_length" : 39,
-         "default_string_length" : 2,
-         "default_string" : "::",
-         "helpText" : "vmi_if0_ipv6_gateway",
-         "displayName" : "vmi_if0_ipv6_gateway"
-      },
-      {
-         "attribute_name" : "vmi_if1_ipv6_gateway",
-         "string_type" : "ASCII",
-         "minimum_string_length" : 2,
-         "maximum_string_length" : 39,
-         "default_string_length" : 2,
-         "default_string" : "::",
-         "helpText" : "vmi_if1_ipv6_gateway",
-         "displayName" : "vmi_if1_ipv6_gateway"
-      },
-      {
-         "attribute_name" : "vmi_if0_ipv6_ipaddr",
-         "string_type" : "ASCII",
-         "minimum_string_length" : 2,
-         "maximum_string_length" : 39,
-         "default_string_length" : 2,
-         "default_string" : "::",
-         "helpText" : "vmi_if0_ipv6_ipaddr",
-         "displayName" : "vmi_if0_ipv6_ipaddr"
-      },
-      {
-         "attribute_name" : "vmi_if1_ipv6_ipaddr",
-         "string_type" : "ASCII",
-         "minimum_string_length" : 2,
-         "maximum_string_length" : 39,
-         "default_string_length" : 2,
-         "default_string" : "::",
-         "helpText" : "vmi_if1_ipv6_ipaddr",
-         "displayName" : "vmi_if1_ipv6_ipaddr"
-      },
-      {
-         "attribute_name" : "hb_mfg_flags",
-         "string_type" : "Hex",
-         "minimum_string_length" : 32,
-         "maximum_string_length" : 32,
-         "default_string_length" : 32,
-         "default_string" : "00000000000000000000000000000000",
-         "helpText" : "Specifies the configuration flags used by manufacturing, requires a reboot for a change to be applied.",
-         "displayName" : "Manufacturing Flags (pending)"
-      },
-      {
-         "attribute_name" : "hb_mfg_flags_current",
-         "string_type" : "Hex",
-         "minimum_string_length" : 32,
-         "maximum_string_length" : 32,
-         "default_string_length" : 32,
-         "default_string" : "00000000000000000000000000000000",
-         "helpText" : "Specifies the configuration flags used by manufacturing for the current IPL. Do not set this attribute directly; set hb_mfg_flags instead.",
-         "displayName" : "Manufacturing Flags (current)"
-      },
-      {
-         "attribute_name" : "hb_lid_ids",
-         "string_type" : "ASCII",
-         "minimum_string_length" : 0,
-         "maximum_string_length" : 1024,
-         "default_string_length" : 0,
-         "default_string" : "",
-         "helpText" : "Provides the host a mapping of the lid IDs to human readable names.",
-         "displayName" : "Hostboot Lid IDs"
-      }
+        },
+        {
+            "attribute_name": "vmi_hostname",
+            "string_type": "ASCII",
+            "minimum_string_length": 0,
+            "maximum_string_length": 255,
+            "default_string_length": 0,
+            "default_string": "",
+            "helpText": "vmi_hostname",
+            "displayName": "vmi_hostname"
+        },
+        {
+            "attribute_name": "vmi_if0_ipv4_gateway",
+            "string_type": "ASCII",
+            "minimum_string_length": 7,
+            "maximum_string_length": 15,
+            "default_string_length": 7,
+            "default_string": "0.0.0.0",
+            "helpText": "vmi_if0_ipv4_gateway",
+            "displayName": "vmi_if0_ipv4_gateway"
+        },
+        {
+            "attribute_name": "vmi_if1_ipv4_gateway",
+            "string_type": "ASCII",
+            "minimum_string_length": 7,
+            "maximum_string_length": 15,
+            "default_string_length": 7,
+            "default_string": "0.0.0.0",
+            "helpText": "vmi_if1_ipv4_gateway",
+            "displayName": "vmi_if1_ipv4_gateway"
+        },
+        {
+            "attribute_name": "vmi_if0_ipv4_ipaddr",
+            "string_type": "ASCII",
+            "minimum_string_length": 7,
+            "maximum_string_length": 15,
+            "default_string_length": 7,
+            "default_string": "0.0.0.0",
+            "helpText": "vmi_if0_ipv4_ipaddr",
+            "displayName": "vmi_if0_ipv4_ipaddr"
+        },
+        {
+            "attribute_name": "vmi_if1_ipv4_ipaddr",
+            "string_type": "ASCII",
+            "minimum_string_length": 7,
+            "maximum_string_length": 15,
+            "default_string_length": 7,
+            "default_string": "0.0.0.0",
+            "helpText": "vmi_if1_ipv4_ipaddr",
+            "displayName": "vmi_if1_ipv4_ipaddr"
+        },
+        {
+            "attribute_name": "vmi_if0_ipv6_gateway",
+            "string_type": "ASCII",
+            "minimum_string_length": 2,
+            "maximum_string_length": 39,
+            "default_string_length": 2,
+            "default_string": "::",
+            "helpText": "vmi_if0_ipv6_gateway",
+            "displayName": "vmi_if0_ipv6_gateway"
+        },
+        {
+            "attribute_name": "vmi_if1_ipv6_gateway",
+            "string_type": "ASCII",
+            "minimum_string_length": 2,
+            "maximum_string_length": 39,
+            "default_string_length": 2,
+            "default_string": "::",
+            "helpText": "vmi_if1_ipv6_gateway",
+            "displayName": "vmi_if1_ipv6_gateway"
+        },
+        {
+            "attribute_name": "vmi_if0_ipv6_ipaddr",
+            "string_type": "ASCII",
+            "minimum_string_length": 2,
+            "maximum_string_length": 39,
+            "default_string_length": 2,
+            "default_string": "::",
+            "helpText": "vmi_if0_ipv6_ipaddr",
+            "displayName": "vmi_if0_ipv6_ipaddr"
+        },
+        {
+            "attribute_name": "vmi_if1_ipv6_ipaddr",
+            "string_type": "ASCII",
+            "minimum_string_length": 2,
+            "maximum_string_length": 39,
+            "default_string_length": 2,
+            "default_string": "::",
+            "helpText": "vmi_if1_ipv6_ipaddr",
+            "displayName": "vmi_if1_ipv6_ipaddr"
+        },
+        {
+            "attribute_name": "hb_mfg_flags",
+            "string_type": "Hex",
+            "minimum_string_length": 32,
+            "maximum_string_length": 32,
+            "default_string_length": 32,
+            "default_string": "00000000000000000000000000000000",
+            "helpText": "Specifies the configuration flags used by manufacturing, requires a reboot for a change to be applied.",
+            "displayName": "Manufacturing Flags (pending)"
+        },
+        {
+            "attribute_name": "hb_mfg_flags_current",
+            "string_type": "Hex",
+            "minimum_string_length": 32,
+            "maximum_string_length": 32,
+            "default_string_length": 32,
+            "default_string": "00000000000000000000000000000000",
+            "helpText": "Specifies the configuration flags used by manufacturing for the current IPL. Do not set this attribute directly; set hb_mfg_flags instead.",
+            "displayName": "Manufacturing Flags (current)"
+        },
+        {
+            "attribute_name": "hb_lid_ids",
+            "string_type": "ASCII",
+            "minimum_string_length": 0,
+            "maximum_string_length": 1024,
+            "default_string_length": 0,
+            "default_string": "",
+            "helpText": "Provides the host a mapping of the lid IDs to human readable names.",
+            "displayName": "Hostboot Lid IDs"
+        }
     ]
 }
diff --git a/oem/ibm/configurations/events/oem_ibm_event_state_sensor.json b/oem/ibm/configurations/events/oem_ibm_event_state_sensor.json
index 8eb25f8..280a011 100644
--- a/oem/ibm/configurations/events/oem_ibm_event_state_sensor.json
+++ b/oem/ibm/configurations/events/oem_ibm_event_state_sensor.json
@@ -5,21 +5,13 @@
             "entityType": 57346,
             "entityInstance": 0,
             "sensorOffset": 1,
-            "event_states": [
-                1,
-                2,
-                3
-            ],
+            "event_states": [1, 2, 3],
             "dbus": {
                 "object_path": "/xyz/openbmc_project/network/hypervisor/eth0/ipv4/addr0",
                 "interface": "xyz.openbmc_project.Object.Enable",
                 "property_name": "Enabled",
                 "property_type": "bool",
-                "property_values": [
-                    true,
-                    false,
-                    false
-                ]
+                "property_values": [true, false, false]
             }
         },
         {
@@ -27,21 +19,13 @@
             "entityType": 57346,
             "entityInstance": 1,
             "sensorOffset": 1,
-            "event_states": [
-                1,
-                2,
-                3
-            ],
+            "event_states": [1, 2, 3],
             "dbus": {
                 "object_path": "/xyz/openbmc_project/network/hypervisor/eth1/ipv4/addr0",
                 "interface": "xyz.openbmc_project.Object.Enable",
                 "property_name": "Enabled",
                 "property_type": "bool",
-                "property_values": [
-                    true,
-                    false,
-                    false
-                ]
+                "property_values": [true, false, false]
             }
         },
         {
@@ -50,19 +34,13 @@
             "entityInstance": 0,
             "sensorOffset": 0,
             "stateSetId": 32777,
-            "event_states":[
-                1,
-                2
-            ],
+            "event_states": [1, 2],
             "dbus": {
                 "object_path": "/com/ibm/panel_app",
                 "interface": "com.ibm.panel",
-                "property_name":  "OSIPLMode",
+                "property_name": "OSIPLMode",
                 "property_type": "bool",
-                "property_values": [
-                    true,
-                    false
-                ]
+                "property_values": [true, false]
             }
         }
     ]
diff --git a/oem/ibm/configurations/fileTable.json b/oem/ibm/configurations/fileTable.json
index 896b713..1a5a6e5 100644
--- a/oem/ibm/configurations/fileTable.json
+++ b/oem/ibm/configurations/fileTable.json
@@ -1,190 +1,190 @@
 [
-   {
-      "path":"/var/lib/phosphor-software-manager/hostfw/nvram/PHYP-NVRAM",
-      "file_traits":1
-   },
-   {
-      "path":"/var/lib/phosphor-software-manager/hostfw/nvram/PHYP-NVRAM-CKSUM",
-      "file_traits":4
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0065d.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0065d.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0065a.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0065a.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00661.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00661.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00696.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00696.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00660.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00660.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0068e.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0068e.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0068d.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0068d.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00667.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00667.lid",
-      "file_traits":6
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00668.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00668.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0066b.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0066b.lid",
-      "file_traits":6
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00688.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00688.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00664.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00664.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00663.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00663.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00662.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00662.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0065b.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0065b.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00620.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00620.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00692.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00692.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0066c.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0066c.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0066f.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0066f.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00669.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00669.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00679.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00679.lid",
-      "file_traits":6
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00672.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00672.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00658.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00658.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0067b.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0067b.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0067a.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0067a.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00694.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00694.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00697.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00697.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0067f.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0067f.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00673.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00673.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00695.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00695.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0066d.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0066d.lid",
-      "file_traits":6
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0066e.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0066e.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0065e.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0065e.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0067e.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0067e.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00678.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00678.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00678.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00678.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00693.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00693.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00675.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00675.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00676.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00676.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00683.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00683.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e00684.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00684.lid",
-      "file_traits":2
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0069d.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0069d.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0069e.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0069e.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e0069f.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0069f.lid",
-      "file_traits":1
-   },
-   {
-      "path":"/usr/local/share/hostfw/running/81e006a0.lid,/var/lib/phosphor-software-manager/hostfw/running/81e006a0.lid",
-      "file_traits":1
-   }
+    {
+        "path": "/var/lib/phosphor-software-manager/hostfw/nvram/PHYP-NVRAM",
+        "file_traits": 1
+    },
+    {
+        "path": "/var/lib/phosphor-software-manager/hostfw/nvram/PHYP-NVRAM-CKSUM",
+        "file_traits": 4
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0065d.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0065d.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0065a.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0065a.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00661.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00661.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00696.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00696.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00660.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00660.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0068e.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0068e.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0068d.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0068d.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00667.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00667.lid",
+        "file_traits": 6
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00668.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00668.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0066b.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0066b.lid",
+        "file_traits": 6
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00688.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00688.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00664.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00664.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00663.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00663.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00662.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00662.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0065b.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0065b.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00620.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00620.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00692.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00692.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0066c.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0066c.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0066f.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0066f.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00669.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00669.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00679.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00679.lid",
+        "file_traits": 6
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00672.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00672.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00658.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00658.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0067b.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0067b.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0067a.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0067a.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00694.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00694.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00697.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00697.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0067f.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0067f.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00673.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00673.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00695.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00695.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0066d.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0066d.lid",
+        "file_traits": 6
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0066e.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0066e.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0065e.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0065e.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0067e.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0067e.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00678.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00678.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00678.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00678.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00693.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00693.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00675.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00675.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00676.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00676.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00683.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00683.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e00684.lid,/var/lib/phosphor-software-manager/hostfw/running/81e00684.lid",
+        "file_traits": 2
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0069d.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0069d.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0069e.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0069e.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e0069f.lid,/var/lib/phosphor-software-manager/hostfw/running/81e0069f.lid",
+        "file_traits": 1
+    },
+    {
+        "path": "/usr/local/share/hostfw/running/81e006a0.lid,/var/lib/phosphor-software-manager/hostfw/running/81e006a0.lid",
+        "file_traits": 1
+    }
 ]
diff --git a/oem/ibm/configurations/fru/Battery_LocationCode.json b/oem/ibm/configurations/fru/Battery_LocationCode.json
index 663e8bb..6a22ac9 100644
--- a/oem/ibm/configurations/fru/Battery_LocationCode.json
+++ b/oem/ibm/configurations/fru/Battery_LocationCode.json
@@ -1,19 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Battery"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/oem/ibm/configurations/fru/Bmc_LocationCode.json b/oem/ibm/configurations/fru/Bmc_LocationCode.json
index 7335fc3..c98e665 100644
--- a/oem/ibm/configurations/fru/Bmc_LocationCode.json
+++ b/oem/ibm/configurations/fru/Bmc_LocationCode.json
@@ -1,20 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Bmc"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/Bmc_VINI.json b/oem/ibm/configurations/fru/Bmc_VINI.json
index df1c78a..076f75d 100644
--- a/oem/ibm/configurations/fru/Bmc_VINI.json
+++ b/oem/ibm/configurations/fru/Bmc_VINI.json
@@ -1,165 +1,145 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Bmc"
-   },
-   "fru_fields":[
-      {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B3",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B3",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B4",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B4",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 5,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B7",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B7",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 6,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CC",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CC",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 7,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 7,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 8,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CT",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 8,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 9,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "DR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 9,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "DR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 10,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FG",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 10,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FG",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 11,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 11,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 12,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 12,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 13,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HW",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 13,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HW",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 14,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HX",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 14,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HX",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 15,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "PN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 15,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "PN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 16,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "SN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 16,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "SN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 17,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "TS",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 17,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "TS",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 18,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "VZ",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 18,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "VZ",
+                "property_type": "bytearray"
             }
-      }
-
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/Bmc_VR10.json b/oem/ibm/configurations/fru/Bmc_VR10.json
index 2427b99..9db3d90 100644
--- a/oem/ibm/configurations/fru/Bmc_VR10.json
+++ b/oem/ibm/configurations/fru/Bmc_VR10.json
@@ -1,56 +1,49 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Bmc"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VR10",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VR10",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VR10",
-               "property_name" : "DC",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VR10",
+                "property_name": "DC",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VR10",
-               "property_name" : "DR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VR10",
+                "property_name": "DR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 5,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VR10",
-               "property_name" : "FL",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VR10",
+                "property_name": "FL",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 6,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VR10",
-               "property_name" : "WA",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VR10",
+                "property_name": "WA",
+                "property_type": "bytearray"
             }
-      }
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/Bmc_VW10.json b/oem/ibm/configurations/fru/Bmc_VW10.json
index 7b469a5..7fbde1d 100644
--- a/oem/ibm/configurations/fru/Bmc_VW10.json
+++ b/oem/ibm/configurations/fru/Bmc_VW10.json
@@ -1,38 +1,33 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Bmc"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VW10",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VW10",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VW10",
-               "property_name" : "DR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VW10",
+                "property_name": "DR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VW10",
-               "property_name" : "GD",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VW10",
+                "property_name": "GD",
+                "property_type": "bytearray"
             }
-      }
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/Chassis_LocationCode.json b/oem/ibm/configurations/fru/Chassis_LocationCode.json
index 84bba68..9b30f71 100644
--- a/oem/ibm/configurations/fru/Chassis_LocationCode.json
+++ b/oem/ibm/configurations/fru/Chassis_LocationCode.json
@@ -1,19 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Chassis"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/oem/ibm/configurations/fru/Chassis_VCEN.json b/oem/ibm/configurations/fru/Chassis_VCEN.json
index 25ffeea..01aa661 100644
--- a/oem/ibm/configurations/fru/Chassis_VCEN.json
+++ b/oem/ibm/configurations/fru/Chassis_VCEN.json
@@ -1,46 +1,41 @@
 {
-    "record_details":
-    {
-         "fru_record_type" : 254,
-         "fru_encoding_type": 1,
-         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Chassis"
+    "record_details": {
+        "fru_record_type": 254,
+        "fru_encoding_type": 1,
+        "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Chassis"
     },
-    "fru_fields":[
+    "fru_fields": [
         {
-          "fru_field_type" : 2,
-          "dbus":
-             {
-               "interface" : "com.ibm.ipzvpd.VCEN",
-                "property_name" : "RT",
-                "property_type" : "bytearray"
-             }
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VCEN",
+                "property_name": "RT",
+                "property_type": "bytearray"
+            }
         },
         {
-          "fru_field_type" : 4,
-          "dbus":
-             {
-                "interface" : "com.ibm.ipzvpd.VCEN",
-                "property_name" : "SE",
-                "property_type" : "bytearray"
-             }
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VCEN",
+                "property_name": "SE",
+                "property_type": "bytearray"
+            }
         },
         {
-        "fru_field_type" : 5,
-        "dbus":
-           {
-              "interface" : "com.ibm.ipzvpd.VCEN",
-              "property_name" : "FC",
-              "property_type" : "bytearray"
-           }
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VCEN",
+                "property_name": "FC",
+                "property_type": "bytearray"
+            }
         },
         {
-          "fru_field_type" : 6,
-          "dbus":
-             {
-                "interface" : "com.ibm.ipzvpd.VCEN",
-                "property_name" : "FC",
-                "property_type" : "bytearray"
-             }
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VCEN",
+                "property_name": "FC",
+                "property_type": "bytearray"
+            }
         }
     ]
 }
diff --git a/oem/ibm/configurations/fru/Chassis_VINI.json b/oem/ibm/configurations/fru/Chassis_VINI.json
index 72012a0..dacfca9 100644
--- a/oem/ibm/configurations/fru/Chassis_VINI.json
+++ b/oem/ibm/configurations/fru/Chassis_VINI.json
@@ -1,164 +1,145 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Chassis"
-   },
-   "fru_fields":[
-      {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B3",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B3",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B4",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B4",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 5,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B7",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B7",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 6,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CC",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CC",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 7,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 7,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 8,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CT",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 8,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 9,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "DR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 9,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "DR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 10,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FG",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 10,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FG",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 11,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 11,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 12,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 12,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 13,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HW",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 13,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HW",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 14,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HX",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 14,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HX",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 15,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "PN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 15,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "PN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 16,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "SN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 16,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "SN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 17,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "TS",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 17,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "TS",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 18,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "VZ",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 18,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "VZ",
+                "property_type": "bytearray"
             }
-      }
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/Connector_LocationCode.json b/oem/ibm/configurations/fru/Connector_LocationCode.json
index 9782ae2..60730e7 100644
--- a/oem/ibm/configurations/fru/Connector_LocationCode.json
+++ b/oem/ibm/configurations/fru/Connector_LocationCode.json
@@ -1,19 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Connector"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/oem/ibm/configurations/fru/DiskBackplane_LocationCode.json b/oem/ibm/configurations/fru/DiskBackplane_LocationCode.json
index f93afc5..cab7ef8 100644
--- a/oem/ibm/configurations/fru/DiskBackplane_LocationCode.json
+++ b/oem/ibm/configurations/fru/DiskBackplane_LocationCode.json
@@ -1,19 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.DiskBackplane"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/oem/ibm/configurations/fru/DiskBackplane_VINI.json b/oem/ibm/configurations/fru/DiskBackplane_VINI.json
index b326edc..71997db 100644
--- a/oem/ibm/configurations/fru/DiskBackplane_VINI.json
+++ b/oem/ibm/configurations/fru/DiskBackplane_VINI.json
@@ -1,164 +1,145 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.DiskBackplane"
-   },
-   "fru_fields":[
-      {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B3",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B3",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B4",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B4",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 5,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B7",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B7",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 6,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CC",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CC",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 7,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 7,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 8,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CT",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 8,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 9,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "DR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 9,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "DR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 10,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FG",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 10,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FG",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 11,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 11,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 12,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 12,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 13,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HW",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 13,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HW",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 14,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HX",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 14,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HX",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 15,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "PN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 15,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "PN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 16,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "SN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 16,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "SN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 17,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "TS",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 17,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "TS",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 18,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "VZ",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 18,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "VZ",
+                "property_type": "bytearray"
             }
-      }
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/Fan_LocationCode.json b/oem/ibm/configurations/fru/Fan_LocationCode.json
index e3ae750..402c5ca 100644
--- a/oem/ibm/configurations/fru/Fan_LocationCode.json
+++ b/oem/ibm/configurations/fru/Fan_LocationCode.json
@@ -1,19 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Fan"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/oem/ibm/configurations/fru/Fan_VINI.json b/oem/ibm/configurations/fru/Fan_VINI.json
index 31ee415..73c63e4 100644
--- a/oem/ibm/configurations/fru/Fan_VINI.json
+++ b/oem/ibm/configurations/fru/Fan_VINI.json
@@ -1,165 +1,145 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Fan"
-   },
-   "fru_fields":[
-      {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B3",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B3",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B4",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B4",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 5,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B7",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B7",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 6,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CC",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CC",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 7,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 7,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 8,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CT",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 8,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 9,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "DR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 9,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "DR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 10,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FG",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 10,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FG",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 11,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 11,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 12,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 12,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 13,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HW",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 13,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HW",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 14,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HX",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 14,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HX",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 15,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "PN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 15,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "PN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 16,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "SN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 16,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "SN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 17,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "TS",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 17,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "TS",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 18,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "VZ",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 18,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "VZ",
+                "property_type": "bytearray"
             }
-      }
-
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/Motherboard_DINF.json b/oem/ibm/configurations/fru/Motherboard_DINF.json
index 63a3964..97d7ac6 100644
--- a/oem/ibm/configurations/fru/Motherboard_DINF.json
+++ b/oem/ibm/configurations/fru/Motherboard_DINF.json
@@ -1,29 +1,25 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Board.Motherboard"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.DINF",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.DINF",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-     },
-     {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.DINF",
-               "property_name" : "RI",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.DINF",
+                "property_name": "RI",
+                "property_type": "bytearray"
             }
-      }
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/Motherboard_LXR0.json b/oem/ibm/configurations/fru/Motherboard_LXR0.json
index cb260e7..c873ebc 100644
--- a/oem/ibm/configurations/fru/Motherboard_LXR0.json
+++ b/oem/ibm/configurations/fru/Motherboard_LXR0.json
@@ -1,38 +1,33 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Board.Motherboard"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.LXR0",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.LXR0",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.LXR0",
-               "property_name" : "LX",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.LXR0",
+                "property_name": "LX",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.LXR0",
-               "property_name" : "VZ",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.LXR0",
+                "property_name": "VZ",
+                "property_type": "bytearray"
             }
-      }
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/Motherboard_LocationCode.json b/oem/ibm/configurations/fru/Motherboard_LocationCode.json
index db3e37f..edbb502 100644
--- a/oem/ibm/configurations/fru/Motherboard_LocationCode.json
+++ b/oem/ibm/configurations/fru/Motherboard_LocationCode.json
@@ -1,19 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Board.Motherboard"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/oem/ibm/configurations/fru/Motherboard_VCEN.json b/oem/ibm/configurations/fru/Motherboard_VCEN.json
index 1ec9a32..634ce64 100644
--- a/oem/ibm/configurations/fru/Motherboard_VCEN.json
+++ b/oem/ibm/configurations/fru/Motherboard_VCEN.json
@@ -1,47 +1,41 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Board.Motherboard"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VCEN",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VCEN",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-     },
-     {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VCEN",
-               "property_name" : "SE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VCEN",
+                "property_name": "SE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 5,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VCEN",
-               "property_name" : "FC",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VCEN",
+                "property_name": "FC",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 6,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VCEN",
-               "property_name" : "FC",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VCEN",
+                "property_name": "FC",
+                "property_type": "bytearray"
             }
-      }
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/Motherboard_VINI.json b/oem/ibm/configurations/fru/Motherboard_VINI.json
index c58b4d5..10bacb0 100644
--- a/oem/ibm/configurations/fru/Motherboard_VINI.json
+++ b/oem/ibm/configurations/fru/Motherboard_VINI.json
@@ -1,165 +1,145 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Board.Motherboard"
-   },
-   "fru_fields":[
-      {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B3",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B3",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B4",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B4",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 5,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B7",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B7",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 6,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CC",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CC",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 7,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 7,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 8,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CT",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 8,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 9,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "DR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 9,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "DR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 10,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FG",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 10,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FG",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 11,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 11,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 12,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 12,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 13,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HW",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 13,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HW",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 14,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HX",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 14,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HX",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 15,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "PN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 15,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "PN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 16,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "SN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 16,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "SN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 17,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "TS",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 17,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "TS",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 18,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "VZ",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 18,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "VZ",
+                "property_type": "bytearray"
             }
-      }
-
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/Motherboard_VSYS.json b/oem/ibm/configurations/fru/Motherboard_VSYS.json
index 973e50b..99d2364 100644
--- a/oem/ibm/configurations/fru/Motherboard_VSYS.json
+++ b/oem/ibm/configurations/fru/Motherboard_VSYS.json
@@ -1,146 +1,129 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Board.Motherboard"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "BR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "BR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "DR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "DR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 5,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "FV",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "FV",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 6,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "ID",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "ID",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 7,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "MN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 7,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "MN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 8,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "NN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 8,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "NN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 9,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "RB",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 9,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "RB",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 10,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "RG",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 10,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "RG",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 11,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "SE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 11,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "SE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 12,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "SG",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 12,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "SG",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 13,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "SU",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 13,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "SU",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 14,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "TM",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 14,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "TM",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 15,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "TN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 15,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "TN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 16,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VSYS",
-               "property_name" : "WN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 16,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "WN",
+                "property_type": "bytearray"
             }
-      }
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/PCIeDevice_LocationCode.json b/oem/ibm/configurations/fru/PCIeDevice_LocationCode.json
index 4b54acd..43669c4 100644
--- a/oem/ibm/configurations/fru/PCIeDevice_LocationCode.json
+++ b/oem/ibm/configurations/fru/PCIeDevice_LocationCode.json
@@ -1,19 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.PCIeDevice"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/oem/ibm/configurations/fru/PCIeDevice_VINI.json b/oem/ibm/configurations/fru/PCIeDevice_VINI.json
index d3aa6fa..2d6dbd5 100644
--- a/oem/ibm/configurations/fru/PCIeDevice_VINI.json
+++ b/oem/ibm/configurations/fru/PCIeDevice_VINI.json
@@ -1,164 +1,145 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.PCIeDevice"
-   },
-   "fru_fields":[
-      {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B3",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B3",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B4",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B4",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 5,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B7",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B7",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 6,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CC",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CC",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 7,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 7,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 8,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CT",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 8,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 9,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "DR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 9,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "DR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 10,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FG",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 10,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FG",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 11,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 11,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 12,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 12,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 13,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HW",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 13,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HW",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 14,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HX",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 14,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HX",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 15,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "PN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 15,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "PN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 16,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "SN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 16,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "SN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 17,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "TS",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 17,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "TS",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 18,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "VZ",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 18,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "VZ",
+                "property_type": "bytearray"
             }
-      }
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/PCIeSlot_LocationCode.json b/oem/ibm/configurations/fru/PCIeSlot_LocationCode.json
index ac53afd..cf8e2bd 100644
--- a/oem/ibm/configurations/fru/PCIeSlot_LocationCode.json
+++ b/oem/ibm/configurations/fru/PCIeSlot_LocationCode.json
@@ -1,19 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.PCIeSlot"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/oem/ibm/configurations/fru/Panel_LocationCode.json b/oem/ibm/configurations/fru/Panel_LocationCode.json
index fc7d981..c72da54 100644
--- a/oem/ibm/configurations/fru/Panel_LocationCode.json
+++ b/oem/ibm/configurations/fru/Panel_LocationCode.json
@@ -1,19 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Panel"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/oem/ibm/configurations/fru/Panel_VINI.json b/oem/ibm/configurations/fru/Panel_VINI.json
index dd5ca41..a8477c5 100644
--- a/oem/ibm/configurations/fru/Panel_VINI.json
+++ b/oem/ibm/configurations/fru/Panel_VINI.json
@@ -1,165 +1,145 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Panel"
-   },
-   "fru_fields":[
-      {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B3",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B3",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B4",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B4",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 5,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B7",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B7",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 6,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CC",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CC",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 7,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 7,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 8,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CT",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 8,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 9,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "DR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 9,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "DR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 10,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FG",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 10,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FG",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 11,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 11,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 12,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 12,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 13,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HW",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 13,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HW",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 14,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HX",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 14,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HX",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 15,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "PN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 15,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "PN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 16,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "SN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 16,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "SN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 17,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "TS",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 17,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "TS",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 18,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "VZ",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 18,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "VZ",
+                "property_type": "bytearray"
             }
-      }
-
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/PowerSupply_LocationCode.json b/oem/ibm/configurations/fru/PowerSupply_LocationCode.json
index 73fb84b..4422b09 100644
--- a/oem/ibm/configurations/fru/PowerSupply_LocationCode.json
+++ b/oem/ibm/configurations/fru/PowerSupply_LocationCode.json
@@ -1,19 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.PowerSupply"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/oem/ibm/configurations/fru/PowerSupply_VINI.json b/oem/ibm/configurations/fru/PowerSupply_VINI.json
index cd74b44..beb8db1 100644
--- a/oem/ibm/configurations/fru/PowerSupply_VINI.json
+++ b/oem/ibm/configurations/fru/PowerSupply_VINI.json
@@ -1,164 +1,145 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.PowerSupply"
-   },
-   "fru_fields":[
-      {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B3",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B3",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B4",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B4",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 5,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B7",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B7",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 6,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CC",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CC",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 7,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 7,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 8,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CT",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 8,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 9,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "DR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 9,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "DR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 10,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FG",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 10,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FG",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 11,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 11,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 12,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 12,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 13,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HW",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 13,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HW",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 14,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HX",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 14,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HX",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 15,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "PN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 15,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "PN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 16,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "SN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 16,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "SN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 17,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "TS",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 17,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "TS",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 18,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "VZ",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 18,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "VZ",
+                "property_type": "bytearray"
             }
-      }
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/System_LocationCode.json b/oem/ibm/configurations/fru/System_LocationCode.json
index 787514a..1128c3c 100644
--- a/oem/ibm/configurations/fru/System_LocationCode.json
+++ b/oem/ibm/configurations/fru/System_LocationCode.json
@@ -1,19 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.System"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/oem/ibm/configurations/fru/System_VSYS.json b/oem/ibm/configurations/fru/System_VSYS.json
index fceab71..ffc18b4 100644
--- a/oem/ibm/configurations/fru/System_VSYS.json
+++ b/oem/ibm/configurations/fru/System_VSYS.json
@@ -1,128 +1,129 @@
 {
-	"record_details": {
-		"fru_record_type": 254,
-		"fru_encoding_type": 1,
-		"dbus_interface_name": "xyz.openbmc_project.Inventory.Item.System"
-	},
-	"fru_fields": [{
-			"fru_field_type": 2,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "RT",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 3,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "BR",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 4,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "DR",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 5,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "FV",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 6,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "ID",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 7,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "MN",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 8,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "NN",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 9,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "RB",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 10,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "RG",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 11,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "SE",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 12,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "SG",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 13,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "SU",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 14,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "TM",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 15,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "TN",
-				"property_type": "bytearray"
-			}
-		},
-		{
-			"fru_field_type": 16,
-			"dbus": {
-				"interface": "com.ibm.ipzvpd.VSYS",
-				"property_name": "WN",
-				"property_type": "bytearray"
-			}
-		}
-	]
+    "record_details": {
+        "fru_record_type": 254,
+        "fru_encoding_type": 1,
+        "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.System"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "RT",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "BR",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "DR",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "FV",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "ID",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 7,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "MN",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 8,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "NN",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 9,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "RB",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 10,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "RG",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 11,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "SE",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 12,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "SG",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 13,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "SU",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 14,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "TM",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 15,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "TN",
+                "property_type": "bytearray"
+            }
+        },
+        {
+            "fru_field_type": 16,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VSYS",
+                "property_name": "WN",
+                "property_type": "bytearray"
+            }
+        }
+    ]
 }
diff --git a/oem/ibm/configurations/fru/Tpm_LocationCode.json b/oem/ibm/configurations/fru/Tpm_LocationCode.json
index 7d73f91..cf52259 100644
--- a/oem/ibm/configurations/fru/Tpm_LocationCode.json
+++ b/oem/ibm/configurations/fru/Tpm_LocationCode.json
@@ -1,19 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Tpm"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/oem/ibm/configurations/fru/Tpm_VINI.json b/oem/ibm/configurations/fru/Tpm_VINI.json
index 1622e56..139132c 100644
--- a/oem/ibm/configurations/fru/Tpm_VINI.json
+++ b/oem/ibm/configurations/fru/Tpm_VINI.json
@@ -1,165 +1,145 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Tpm"
-   },
-   "fru_fields":[
-      {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B3",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B3",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B4",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B4",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 5,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B7",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B7",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 6,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CC",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CC",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 7,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 7,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 8,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CT",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 8,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 9,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "DR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 9,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "DR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 10,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FG",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 10,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FG",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 11,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 11,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 12,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 12,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 13,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HW",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 13,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HW",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 14,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HX",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 14,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HX",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 15,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "PN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 15,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "PN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 16,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "SN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 16,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "SN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 17,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "TS",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 17,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "TS",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 18,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "VZ",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 18,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "VZ",
+                "property_type": "bytearray"
             }
-      }
-
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru/Vrm_LocationCode.json b/oem/ibm/configurations/fru/Vrm_LocationCode.json
index d201c4c..155aeee 100644
--- a/oem/ibm/configurations/fru/Vrm_LocationCode.json
+++ b/oem/ibm/configurations/fru/Vrm_LocationCode.json
@@ -1,19 +1,17 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Vrm"
-   },
-   "fru_fields":[
-     {
-         "fru_field_type" : 254,
-         "dbus":
-            {
-               "interface" : "xyz.openbmc_project.Inventory.Decorator.LocationCode",
-               "property_name" : "LocationCode",
-               "property_type" : "string"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 254,
+            "dbus": {
+                "interface": "xyz.openbmc_project.Inventory.Decorator.LocationCode",
+                "property_name": "LocationCode",
+                "property_type": "string"
             }
-      }
+        }
     ]
 }
diff --git a/oem/ibm/configurations/fru/Vrm_VINI.json b/oem/ibm/configurations/fru/Vrm_VINI.json
index 3326911..5985193 100644
--- a/oem/ibm/configurations/fru/Vrm_VINI.json
+++ b/oem/ibm/configurations/fru/Vrm_VINI.json
@@ -1,165 +1,145 @@
 {
-   "record_details":
-   {
-        "fru_record_type" : 254,
+    "record_details": {
+        "fru_record_type": 254,
         "fru_encoding_type": 1,
         "dbus_interface_name": "xyz.openbmc_project.Inventory.Item.Vrm"
-   },
-   "fru_fields":[
-      {
-         "fru_field_type" : 2,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "RT",
-               "property_type" : "bytearray"
+    },
+    "fru_fields": [
+        {
+            "fru_field_type": 2,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "RT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 3,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B3",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 3,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B3",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 4,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B4",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 4,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B4",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 5,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "B7",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 5,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "B7",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 6,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CC",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 6,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CC",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 7,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 7,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 8,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "CT",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 8,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "CT",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 9,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "DR",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 9,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "DR",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 10,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FG",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 10,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FG",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 11,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "FN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 11,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "FN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 12,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HE",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 12,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HE",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 13,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HW",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 13,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HW",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 14,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "HX",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 14,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "HX",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 15,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "PN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 15,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "PN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 16,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "SN",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 16,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "SN",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 17,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "TS",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 17,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "TS",
+                "property_type": "bytearray"
             }
-      },
-      {
-         "fru_field_type" : 18,
-         "dbus":
-            {
-               "interface" : "com.ibm.ipzvpd.VINI",
-               "property_name" : "VZ",
-               "property_type" : "bytearray"
+        },
+        {
+            "fru_field_type": 18,
+            "dbus": {
+                "interface": "com.ibm.ipzvpd.VINI",
+                "property_name": "VZ",
+                "property_type": "bytearray"
             }
-      }
-
+        }
     ]
 }
-
diff --git a/oem/ibm/configurations/fru_master.json b/oem/ibm/configurations/fru_master.json
index 1b913ea..327679c 100644
--- a/oem/ibm/configurations/fru_master.json
+++ b/oem/ibm/configurations/fru_master.json
@@ -1,19 +1,19 @@
 {
-        "FruDBusLookupMap":{
-                        "xyz.openbmc_project.Inventory.Item.Chassis" : 45,
-                        "xyz.openbmc_project.Inventory.Item.Board": 60,
-                        "xyz.openbmc_project.Inventory.Item.PCIeDevice": 61,
-                        "xyz.openbmc_project.Inventory.Item.Board.Motherboard": 64,
-                        "xyz.openbmc_project.Inventory.Item.Panel": 69,
-                        "xyz.openbmc_project.Inventory.Item.DiskBackplane": 73,
-                        "xyz.openbmc_project.Inventory.Item.Fan": 93,
-                        "xyz.openbmc_project.Inventory.Item.PowerSupply": 120,
-                        "xyz.openbmc_project.Inventory.Item.Battery": 121,
-                        "xyz.openbmc_project.Inventory.Item.Vrm": 123,
-                        "xyz.openbmc_project.Inventory.Item.Bmc": 137,
-                        "xyz.openbmc_project.Inventory.Item.Connector": 185,
-                        "xyz.openbmc_project.Inventory.Item.PCIeSlot": 186,
-                        "xyz.openbmc_project.Inventory.Item.System": 11521,
-                        "xyz.openbmc_project.Inventory.Item.Tpm": 24576
-           }
+    "FruDBusLookupMap": {
+        "xyz.openbmc_project.Inventory.Item.Chassis": 45,
+        "xyz.openbmc_project.Inventory.Item.Board": 60,
+        "xyz.openbmc_project.Inventory.Item.PCIeDevice": 61,
+        "xyz.openbmc_project.Inventory.Item.Board.Motherboard": 64,
+        "xyz.openbmc_project.Inventory.Item.Panel": 69,
+        "xyz.openbmc_project.Inventory.Item.DiskBackplane": 73,
+        "xyz.openbmc_project.Inventory.Item.Fan": 93,
+        "xyz.openbmc_project.Inventory.Item.PowerSupply": 120,
+        "xyz.openbmc_project.Inventory.Item.Battery": 121,
+        "xyz.openbmc_project.Inventory.Item.Vrm": 123,
+        "xyz.openbmc_project.Inventory.Item.Bmc": 137,
+        "xyz.openbmc_project.Inventory.Item.Connector": 185,
+        "xyz.openbmc_project.Inventory.Item.PCIeSlot": 186,
+        "xyz.openbmc_project.Inventory.Item.System": 11521,
+        "xyz.openbmc_project.Inventory.Item.Tpm": 24576
+    }
 }
diff --git a/pldmtool/README.md b/pldmtool/README.md
index 953848e..ae5c611 100644
--- a/pldmtool/README.md
+++ b/pldmtool/README.md
@@ -16,12 +16,12 @@
 please refer the DMTF PLDM specifications with respect to the pldm types.
 https://www.dmtf.org/
 
-
 ## Code organization
 
 Source files in pldmtool repository are named with respect to the PLDM type.
 
 Example:
+
 ```
 pldm_base_cmd.[hpp/cpp], pldm_fru_cmd.[hpp/cpp]
 ```
@@ -40,8 +40,8 @@
 ```
 
 If PLDM commands are not yet supported in the pldmtool repository user can
-directly send the request message with the help of **pldmtool raw -d <data>** option.
-
+directly send the request message with the help of **pldmtool raw -d <data>**
+option.
 
 ## Usage
 
@@ -65,12 +65,14 @@
   oem-ibm                     oem type command
 
 ```
+
 pldmtool command prompt expects a PLDM type to display the list of supported
 commands that are already implemented for that particular PLDM type.
 
 ```
 Command format: pldmtool <pldmType> -h
 ```
+
 Example:
 
 ```
@@ -89,6 +91,7 @@
   GetPLDMCommands             get supported commands of pldm type
 
 ```
+
 More help on the command usage can be found by specifying the PLDM type and the
 command name with **-h** argument as shown below.
 
@@ -97,6 +100,7 @@
 ```
 
 Example:
+
 ```
 $ pldmtool base GetPLDMTypes -h
 
@@ -109,11 +113,10 @@
   -v,--verbose
 ```
 
-
 ## pldmtool raw command usage
 
-pldmtool raw command option accepts request message in the hexadecimal
-bytes and send the response message in hexadecimal bytes.
+pldmtool raw command option accepts request message in the hexadecimal bytes and
+send the response message in hexadecimal bytes.
 
 ```
 $ pldmtool raw -h
@@ -144,6 +147,7 @@
 payloadResp - stream of bytes displayed based on the response message format
               defined for the command type as per the spec.
 ```
+
 Example:
 
 ```
@@ -155,12 +159,14 @@
 08 01 00 00 04 00 1d 00 00 00 00 00 00 80
 
 ```
+
 ## pldmtool output format
 
 In the current pldmtool implementation response message from pldmtool is parsed
 and displayed in the JSON format.
 
 Example:
+
 ```
 $ pldmtool base GetPLDMTypes
 [
@@ -186,6 +192,7 @@
     }
 ]
 ```
+
 ## pldmtool with mctp_eid option
 
 Use **-m** or **--mctp_eid** option to send pldm request message to remote mctp
@@ -199,6 +206,7 @@
 ```
 
 Example:
+
 ```
 $ pldmtool base GetPLDMTypes -m 8
 
diff --git a/requester/README.md b/requester/README.md
index fd5ebd1..93d1b4d 100644
--- a/requester/README.md
+++ b/requester/README.md
@@ -1,7 +1,7 @@
 ## Overview
 
-PLDM requester infrastructure enables the requester code in PLDM daemon to
-meet the requirements of PLDM requesters. It provides the following features:
+PLDM requester infrastructure enables the requester code in PLDM daemon to meet
+the requirements of PLDM requesters. It provides the following features:
 
 - Register a PLDM request and the response handler to be invoked on receiving
   the response.
@@ -29,6 +29,7 @@
 ```
 
 The signature of the response function handler:
+
 ```
 void handler(mctp_eid_t eid, const pldm_msg* response, size_t respMsgLen)
 ```
diff --git a/tools/fw-update/README.md b/tools/fw-update/README.md
index 7dff704..7736342 100644
--- a/tools/fw-update/README.md
+++ b/tools/fw-update/README.md
@@ -1,12 +1,14 @@
 # Overview
+
 pldm_fwup_pkg_creator.py is a python script that can package one or more
 firmware image blobs into a PLDM firmware update package, as per the DSP0267
 specification v1.1.0 - Section 7.
 
 # Requirements
+
 - Python 3.6+
 - Python bitarray module
-    - For example on Ubuntu: sudo pip3 install bitarray
+  - For example on Ubuntu: sudo pip3 install bitarray
 
 # Usage
 
@@ -21,122 +23,120 @@
                          ComponentImageInformationArea entries
 
 - Provide name for the PLDM FW update package, output will be written to a file
-with this name
+  with this name
 - Providing the metadata JSON file is a must
 - The file path of at least one image file must be provided
-- In case there are more than one images, they should be specified in the
-*same order* as the entries in the "ComponentImageInformationArea" list in the
-metadata json
+- In case there are more than one images, they should be specified in the _same
+  order_ as the entries in the "ComponentImageInformationArea" list in the
+  metadata json
 
 # Metadata JSON file
-Some fields corresponding to the PLDM firmware update package must be
-specified in an input metadata file (see the section 'Mapping fields to
-DSP0267') that's in JSON format. Typically it is not necessary to write this
-file each time the PLDM firmware update package has to be generated - one or
-more platform specific metadata JSON files can be reused. The key names used in
-the metadata JSON *match with the proprerty names* used in DSP0267.
-There is an example metadata json file included - metadata-example.json, which
-has example entries for preparing a PLDM firmware update package that targets
-three devices, and there are a total of three component images.
+
+Some fields corresponding to the PLDM firmware update package must be specified
+in an input metadata file (see the section 'Mapping fields to DSP0267') that's
+in JSON format. Typically it is not necessary to write this file each time the
+PLDM firmware update package has to be generated - one or more platform specific
+metadata JSON files can be reused. The key names used in the metadata JSON
+_match with the proprerty names_ used in DSP0267. There is an example metadata
+json file included - metadata-example.json, which has example entries for
+preparing a PLDM firmware update package that targets three devices, and there
+are a total of three component images.
 
 # Mapping fields to DSP0267
+
 This section describes the following:
+
 - which fields of the PLDM firmware update package are supported by the script
 - whether those fields need to be specified in the JSON, or are generated by the
-script
+  script
 
 ## Package Header Information
+
 Metadata JSON must have a key called "PackageHeaderInformation", which is of
 type Object. See below for details on properties:
+
 - PackageHeaderIdentifier: Supported, must be specified in metadata file
 - PackageHeaderFormatRevision: Supported, must be specified in metadata file
 - PackageHeaderSize: Supported, generated by the script
 - PackageReleaseDateTime: Supported, this is an optional field in the metadata
-file and the format is dd/MM/yyyy HH:mm:ss. If not specified in the metadata
-file, current time is taken.
+  file and the format is dd/MM/yyyy HH:mm:ss. If not specified in the metadata
+  file, current time is taken.
 - ComponentBitmapBitLength: Supported, generated by the script
-    - Only 32 components supported at the moment
+  - Only 32 components supported at the moment
 - PackageVersionStringType: Supported - only ASCII at the moment. Generated by
-the script
+  the script
 - PackageVersionStringLength: Supported, generated by the script
 - PackageVersionString: Supported, must be specified in metadata file
 
 ## Firmware Device Identification Area
+
 Metadata JSON must have a key called "FirmwareDeviceIdentificationArea", which
 is of type List. Each List entry corresponds to an firmware device ID record.
 See below for details on properties:
+
 - DeviceIDRecordCount: Supported, generated by the script
 - FirmwareDeviceIDRecords: which is a list of Individual Firmware Device ID
-Records. Each such record can have the following properties:
-    - RecordLength: Supported, generated by the script
-    - DescriptorCount: Supported, generated by the script
-    - DeviceUpdateOptionFlags: Supported, must be specified in metadata file
-        - add each bit that is to be set to 1 to the list
-        "DeviceUpdateOptionFlags"
-    - ComponentImageSetVersionStringType: Supported - only ASCII at the moment.
-    Generated by the script
-    - ComponentImageSetVersionStringLength: Supported, generated by the script
-    - FirmwareDevicePackageDataLength: Not supported. Set to 0 by the script
-    - ApplicableComponents: Supported, must be specified in metadata file
-        - specify all "ComponentIdentifier" values that apply in the
-        "ApplicableComponents" list
-    - ComponentImageSetVersionString: Supported, must be specified in metadata
-    file
-    - RecordDescriptors:
-    Metadata JSON must have a key called "Descriptors", which is of type List.
-    Each List entry corresponds to a descriptor. The first entry is considered
-    as the initial descriptor and the type shall be one of the following
-    0x0000(PCI Vendor ID), 0x0001(IANA Enterprise ID), 0x0002(UUID),
-    0x0003(PnP Vendor ID), 0x0004(ACPI Vendor ID). The additional
-    descriptors support initial descriptor types and additionally
-    0x0100(PCI Device ID), 0x0101(PCI Subsystem Vendor ID),
-    0x0102(PCI Subsystem ID), 0x0103(PCI Revision ID),
-    0x0104(PnP Product Identifier), 0x0105(ACPI Product Identifier),
-    0xFFFF(Vendor defined). For descriptor types other than vendor defined the
-    properties expected are DescriptorType and DescriptorData. If the descriptor
-    type is vendor defined, the properties expected are DescriptorType,
-    VendorDefinedDescriptorTitleString and VendorDefinedDescriptorData.
-    See below for details on properties:
-        - DescriptorType: Supported, must be specified in metadata file
-        - DescriptorLength: Supported, generated by the script
-        - DescriptorData: Supported, must be specified in metadata
-        file as a hex string
-        - VendorDefinedDescriptorTitleStringType: Supported - only ASCII at the
-        moment.
-        - VendorDefinedDescriptorTitleStringLength: Supported, generated by the
-        script
-        - VendorDefinedDescriptorTitleString: Supported, must be specified in
-        metadata file
-        - VendorDefinedDescriptorData: Supported, must be specified in metadata
-        file as a hex string
-    - FirmwareDevicePackageData: Not supported at the moment
+  Records. Each such record can have the following properties: - RecordLength:
+  Supported, generated by the script - DescriptorCount: Supported, generated by
+  the script - DeviceUpdateOptionFlags: Supported, must be specified in metadata
+  file - add each bit that is to be set to 1 to the list
+  "DeviceUpdateOptionFlags" - ComponentImageSetVersionStringType: Supported -
+  only ASCII at the moment. Generated by the script -
+  ComponentImageSetVersionStringLength: Supported, generated by the script -
+  FirmwareDevicePackageDataLength: Not supported. Set to 0 by the script -
+  ApplicableComponents: Supported, must be specified in metadata file - specify
+  all "ComponentIdentifier" values that apply in the "ApplicableComponents"
+  list - ComponentImageSetVersionString: Supported, must be specified in
+  metadata file - RecordDescriptors: Metadata JSON must have a key called
+  "Descriptors", which is of type List. Each List entry corresponds to a
+  descriptor. The first entry is considered as the initial descriptor and the
+  type shall be one of the following 0x0000(PCI Vendor ID), 0x0001(IANA
+  Enterprise ID), 0x0002(UUID), 0x0003(PnP Vendor ID), 0x0004(ACPI Vendor ID).
+  The additional descriptors support initial descriptor types and additionally
+  0x0100(PCI Device ID), 0x0101(PCI Subsystem Vendor ID), 0x0102(PCI Subsystem
+  ID), 0x0103(PCI Revision ID), 0x0104(PnP Product Identifier), 0x0105(ACPI
+  Product Identifier), 0xFFFF(Vendor defined). For descriptor types other than
+  vendor defined the properties expected are DescriptorType and DescriptorData.
+  If the descriptor type is vendor defined, the properties expected are
+  DescriptorType, VendorDefinedDescriptorTitleString and
+  VendorDefinedDescriptorData. See below for details on properties: -
+  DescriptorType: Supported, must be specified in metadata file -
+  DescriptorLength: Supported, generated by the script - DescriptorData:
+  Supported, must be specified in metadata file as a hex string -
+  VendorDefinedDescriptorTitleStringType: Supported - only ASCII at the
+  moment. - VendorDefinedDescriptorTitleStringLength: Supported, generated by
+  the script - VendorDefinedDescriptorTitleString: Supported, must be specified
+  in metadata file - VendorDefinedDescriptorData: Supported, must be specified
+  in metadata file as a hex string - FirmwareDevicePackageData: Not supported at
+  the moment
 
 ## Downstream Device Identification Area
+
 Not supported at the moment
 
 ## Component Image Information Area
-Metadata JSON must have a key called "ComponentImageInformationArea", which
-is of type List. Each List entry corresponds to an Individual Component Image
+
+Metadata JSON must have a key called "ComponentImageInformationArea", which is
+of type List. Each List entry corresponds to an Individual Component Image
 Information. See below for details on properties:
+
 - ComponentImageCount: Supported, generated by the script
-- ComponentImageInformation:  which is a list of Individual Component Image
-Information records. Each such record can have the following properties:
-    - ComponentClassification: Supported, must be specified in metadata file
-    - ComponentIdentifier: Supported, must be specified in metadata file
-    - ComponentComparisonStamp: Not supported. Set to 0xFFFFFFFF by the script
-    - ComponentOptions: Supported, must be specified in metadata file
-        - add each bit that is to be set to 1 to the list "ComponentOptions"
-        - only supported option at the moment is Force Update (0x0)
-    - RequestedComponentActivationMethod: Supported, must be specified in
-    metadata file
-        - add each bit that is to be set to 1 to the list
-        "RequestedComponentActivationMethod"
-    - ComponentLocationOffset: Supported, generated by the script
-    - ComponentSize: Supported, generated by the script
-    - ComponentVersionStringType:  Supported - only ASCII at the moment.
-    Generated by the script
-    - ComponentVersionStringLength: Supported, generated by the script
-    - ComponentVersionString: Supported, must be specified in metadata file
+- ComponentImageInformation: which is a list of Individual Component Image
+  Information records. Each such record can have the following properties: -
+  ComponentClassification: Supported, must be specified in metadata file -
+  ComponentIdentifier: Supported, must be specified in metadata file -
+  ComponentComparisonStamp: Not supported. Set to 0xFFFFFFFF by the script -
+  ComponentOptions: Supported, must be specified in metadata file - add each bit
+  that is to be set to 1 to the list "ComponentOptions" - only supported option
+  at the moment is Force Update (0x0) - RequestedComponentActivationMethod:
+  Supported, must be specified in metadata file - add each bit that is to be set
+  to 1 to the list "RequestedComponentActivationMethod" -
+  ComponentLocationOffset: Supported, generated by the script - ComponentSize:
+  Supported, generated by the script - ComponentVersionStringType: Supported -
+  only ASCII at the moment. Generated by the script -
+  ComponentVersionStringLength: Supported, generated by the script -
+  ComponentVersionString: Supported, must be specified in metadata file
 
 ## Package Header Checksum
+
 Supported, generated by the script
diff --git a/tools/fw-update/metadata-example.json b/tools/fw-update/metadata-example.json
index 6584ed9..1e232d9 100644
--- a/tools/fw-update/metadata-example.json
+++ b/tools/fw-update/metadata-example.json
@@ -7,14 +7,9 @@
     },
     "FirmwareDeviceIdentificationArea": [
         {
-            "DeviceUpdateOptionFlags": [
-                0
-            ],
+            "DeviceUpdateOptionFlags": [0],
             "ComponentImageSetVersionString": "VersionString2",
-            "ApplicableComponents": [
-                100,
-                200
-            ],
+            "ApplicableComponents": [100, 200],
             "Descriptors": [
                 {
                     "DescriptorType": 2,
@@ -32,14 +27,9 @@
             ]
         },
         {
-            "DeviceUpdateOptionFlags": [
-            ],
+            "DeviceUpdateOptionFlags": [],
             "ComponentImageSetVersionString": "VersionString3",
-            "ApplicableComponents": [
-                100,
-                200,
-                300
-            ],
+            "ApplicableComponents": [100, 200, 300],
             "Descriptors": [
                 {
                     "DescriptorType": 2,
@@ -48,12 +38,9 @@
             ]
         },
         {
-            "DeviceUpdateOptionFlags": [
-            ],
+            "DeviceUpdateOptionFlags": [],
             "ComponentImageSetVersionString": "VersionString4",
-            "ApplicableComponents": [
-                100
-            ],
+            "ApplicableComponents": [100],
             "Descriptors": [
                 {
                     "DescriptorType": 2,
@@ -66,32 +53,22 @@
         {
             "ComponentClassification": 10,
             "ComponentIdentifier": 100,
-            "ComponentOptions": [
-            ],
-            "RequestedComponentActivationMethod": [
-            ],
+            "ComponentOptions": [],
+            "RequestedComponentActivationMethod": [],
             "ComponentVersionString": "VersionString5"
         },
         {
             "ComponentClassification": 10,
             "ComponentIdentifier": 200,
-            "ComponentOptions": [
-            ],
-            "RequestedComponentActivationMethod": [
-                0
-             ],
+            "ComponentOptions": [],
+            "RequestedComponentActivationMethod": [0],
             "ComponentVersionString": "VersionString6"
         },
         {
             "ComponentClassification": 16,
             "ComponentIdentifier": 300,
-            "ComponentOptions": [
-                0
-            ],
-            "RequestedComponentActivationMethod": [
-                2,
-                3
-            ],
+            "ComponentOptions": [0],
+            "RequestedComponentActivationMethod": [2, 3],
             "ComponentVersionString": "VersionString7"
         }
     ]
diff --git a/tools/visualize-pdr/README.md b/tools/visualize-pdr/README.md
index b414781..abb68af 100644
--- a/tools/visualize-pdr/README.md
+++ b/tools/visualize-pdr/README.md
@@ -1,36 +1,40 @@
 # Overview
 
-The `pldmtool` for `GetPDR` command lacks to display all PDRs at once. It fetches only
-one PDR at a time. With a lot of sensors/effecters & with a lot of Host FRU pdrs
-coming in due to concurrent maintenance of the system,where the fru's are added/
-removed at runtime, it's really necessary to have a full system view.
+The `pldmtool` for `GetPDR` command lacks to display all PDRs at once. It
+fetches only one PDR at a time. With a lot of sensors/effecters & with a lot of
+Host FRU pdrs coming in due to concurrent maintenance of the system,where the
+fru's are added/ removed at runtime, it's really necessary to have a full system
+view.
 
 `pldm_visualise_pdrs.py` is a python script that can be used to fetch the PDR's
-from the BMC and can parse them to display a full view of available PDR's on system
-at any given point in time.
+from the BMC and can parse them to display a full view of available PDR's on
+system at any given point in time.
 
 # Requirements
+
 - Python 3.6+
 - graphviz
-    - Graphviz is open source graph visualization software. Graph visualization is
-      a way of representing structural information as diagrams of abstract graphs
-      and networks.
-    - There are standard package availabe for graphviz for both rpm based as well
-      as the debian based sytems, it can be installed using :
+  - Graphviz is open source graph visualization software. Graph visualization is
+    a way of representing structural information as diagrams of abstract graphs
+    and networks.
+  - There are standard package availabe for graphviz for both rpm based as well
+    as the debian based sytems, it can be installed using :
 
 ```bash
    RPM Distro : sudo dnf install graphviz
    Debian Distro : sudo apt install graphviz
    Mac Distro : brew install graphviz
 ```
-- The `requirements.txt` file should list all Python libraries that the tool depend
-on, and that can be installed using:
+
+- The `requirements.txt` file should list all Python libraries that the tool
+  depend on, and that can be installed using:
 
 ```bash
     sudo pip3 install -r requirements.txt
               (or)
     pip3 install -r requirements.txt --user
 ```
+
 # Usage
 
 ```ascii