Verifone · Schema

SigningInformation

Information on the signing request.

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
provider string Signing Provider used
providerRef string Signing Provider reference to the signing request
signedFileUrl string URL to the signed file
signingRequests array
View JSON Schema on GitHub

JSON Schema

order-service-api-signinginformation.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/order-service-api-signinginformation.json",
  "title": "SigningInformation",
  "description": "Information on the signing request.",
  "type": "object",
  "properties": {
    "provider": {
      "type": "string",
      "description": "Signing Provider used",
      "enum": [
        "SIGNICAT",
        "ADOBE",
        "DOKOBIT"
      ]
    },
    "providerRef": {
      "type": "string",
      "description": "Signing Provider reference to the signing request"
    },
    "signedFileUrl": {
      "type": "string",
      "description": "URL to the signed file"
    },
    "signingRequests": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SignersInformation"
      }
    }
  },
  "required": [
    "provider",
    "providerRef"
  ]
}