Hi Jason,
It happens on several data actions that we made recently, we would save the body as follows:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Coles GCR Test - Check Balance Request Schema",
"description": "Request Schema under testing",
"type": "object",
"required": [
"RequestType",
"viiUserName",
"viiPassword",
"viiTranId",
"StoreId",
"CardNumber",
"PIN"
],
"properties": {
"RequestType": {
"type": "string"
},
"viiUserName": {
"type": "string"
},
"viiPassword": {
"type": "string"
},
"viiTranId": {
"type": "string"
},
"StoreId": {
"type": "string"
},
"AIIC": {
"type": "string"
},
"CATI": {
"type": "string"
},
"CAIC": {
"type": "string"
},
"CardNumber": {
"type": "string"
},
"PIN": {
"type": "string"
}
}
}
However, upon reloading it would revert to this arrangement:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Coles GCR Test - Check Balance Request Schema",
"description": "Request Schema under testing",
"type": "object",
"required": [
"RequestType",
"viiUserName",
"viiPassword",
"viiTranId",
"StoreId",
"CardNumber",
"PIN"
],
"properties": {
"CardNumber": {
"type": "string"
},
"StoreId": {
"type": "string"
},
"PIN": {
"type": "string"
},
"CAIC": {
"type": "string"
},
"viiUserName": {
"type": "string"
},
"viiTranId": {
"type": "string"
},
"AIIC": {
"type": "string"
},
"CATI": {
"type": "string"
},
"viiPassword": {
"type": "string"
},
"RequestType": {
"type": "string"
}
}
}