{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "Response Message for 'signatureVerificationRequest'",
  "description": "Provides the terminal with confirmation of whether the customer's signature has been accepted or not.",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "jsonrpc",
    "id",
    "result"
  ],
  "properties": {
    "jsonrpc": {
      "title": "JSON-RPC Version Number",
      "description": "Identifies the JSON Remote Protocol version that this message uses.",
      "type": "string",
      "enum": [
        "2.0"
      ],
      "default": "2.0"
    },
    "id": {
      "title": "JSON-RPC2 Message ID",
      "description": "The same message id as the request JSON message this is a reply to, so that this response can be matched to the correct request.",
      "type": "integer",
      "maximum": 999999,
      "minimum": 0
    },
    "result": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "accepted"
      ],
      "properties": {
        "accepted": {
          "title": "Signature Acceptance Result",
          "description": "true if the signature has been accepted, false if not accepted.",
          "type": "boolean",
          "enum": [
            true,
            false
          ]
        }
      }
    }
  }
}