diff --git a/TR-0073-Developer_Guide_Deploying_Semantics.md b/TR-0073-Developer_Guide_Deploying_Semantics.md
index 884e1a115b2328127c14478aa459433bc0229206..de2d3dfff90aa526d3812b6519a8717cfb005a42 100644
--- a/TR-0073-Developer_Guide_Deploying_Semantics.md
+++ b/TR-0073-Developer_Guide_Deploying_Semantics.md
@@ -196,17 +196,17 @@ Only the messages highlighted in light blue are described here as the rest of th
 - Create Information Model.  The IPE creates all the resources needed to for the clothes washing machine that it knows how to model a priori. This IPE is developed with awareness of the clothes washing machine interface and the model that it is creating in the oneM2M CSE. 
 - A <container> resource is created for the Status information of the clothes washing machine. The IPE creates <contentInstance> resources that have the following content when there are any changes in the status of the clothes washing machine:
 
-```
+``` json
 {
-"WashingMachineStatus ": "WASHING", // Or "STOPPED", "ERROR"
+"WashingMachineStatus ": "WASHING" // Or "STOPPED", "ERROR"
 }
 ```
 
 - A <container> resource is created for the command and control of the clothes washing machine. When the client application is setting the state of the device the following payload can be provided in a <contentInstance> resource:
 
-```
+``` json
 {
-"state": "ON", // Or "OFF", "Toggle"
+"state": "ON" // Or "OFF", "Toggle"
 }
 ```