{
  "$ref": "#/definitions/MessageSignResponse",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {
    "MessageSignResponse": {
      "additionalProperties": false,
      "properties": {
        "message": {
          "type": "string"
        },
        "publicKey": {
          "type": "string"
        },
        "signature": {
          "type": "string"
        }
      },
      "required": [
        "message",
        "publicKey",
        "signature"
      ],
      "type": "object"
    }
  }
}
