{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "ErrorMessage": {
      "type": "object",
      "properties": {
        "errorCode": {
          "type": "string"
        },
        "msg": {
          "type": "string"
        }
      },
      "required": [
        "errorCode",
        "msg"
      ]
    }
  },
  "required": [
    "ErrorMessage"
  ]
}
