{
  "$schema": "https://apidocs.iqrf.org/iqrf-gateway-daemon/latest/com.iqrftech.self-desc/schema/jsonschema/1-0-0#",
  "self": {
    "vendor": "com.iqrftech.self-desc",
    "name": "messageError-response",
    "format": "jsonschema",
    "version": "1-0-0"
  },
  "type": "object",
  "properties": {
    "mType": {
      "type": "string",
      "description": "Repeated mType from unsupported request.",
      "enum": [
        "messageError"
      ]
    },
    "data": {
      "type": "object",
      "properties": {
        "msgId": {
          "type": "string",
          "description": "Message identification for binding request with response."
        },
        "rsp": {
          "type": "object",
          "properties": {
            "wrongMsg": {
              "type": "string",
              "description": "String with content of wrong msg."
            },
            "errorStr": {
              "type": "string",
              "description": "Error description."
            }
          },
          "required": [
            "wrongMsg",
            "errorStr"
          ]
        },
        "insId": {
          "type": "string",
          "description": "IQRF GW daemon instance identification."
        },
        "status": {
          "type": "integer",
          "description": "Status of operation."
        },
        "statusStr": {
          "type": "string",
          "description": "IQRF GW daemon API (general or mcat) status in string form."
        }
      },
      "required": [
        "msgId",
        "rsp",
        "status"
      ]
    }
  },
  "required": [
    "mType",
    "data"
  ]
}
