SignatureFieldModel Data Type

A signature field in the PDF document.

Properties
name data type description
signName string The signature name.
signLocation string The signature location.
signReason string The reason for signing.
signContactInformation string Information provided by the signer to enable a recipient to contact the signer to verify the signature; for example, a phone number.
signDateTime string The date and time of the signature. (ISO-8601 format)
signed boolean True if the field contains a signature.
certifying boolean True if this is a certifying signature.
fieldName string The name of the field.
signatureValidity SignatureValidityModel The signature validity information associated with the signature (will be empty if the field is not signed).
Properties inherited from FieldModel
name string The name of the field.
type string A description of the field type.
userName string The field's user name.
widgetCount number The number of widgets associated with this field.
widget array of WidgetModel The widgets associated with this field.

Example

{
  "signName" : "...",
  "signLocation" : "...",
  "signReason" : "...",
  "signContactInformation" : "...",
  "signDateTime" : "...",
  "signed" : true,
  "certifying" : true,
  "fieldName" : "...",
  "signatureValidity" : {
    "validSignatureObject" : true,
    "validSignatureHash" : true,
    "validRevocationList" : true,
    "validExpiration" : true,
    "validCertificateChain" : true,
    "trustedChain" : true,
    "contentAppended" : true,
    "validByteRange" : true,
    "documentReconstructed" : true,
    "documentTimestamp" : true,
    "tsaTimestamp" : true,
    "validTimestampToken" : true,
    "validTimestampCertificate" : true,
    "tsaTrustedChain" : true,
    "validPadesCertificate" : true,
    "validKeyUsage" : true,
    "validityText" : "..."
  },
  "name" : "...",
  "type" : "...",
  "userName" : "...",
  "widgetCount" : 12345,
  "widget" : [ {
    "rectangle" : {
      "x" : 12345.0,
      "y" : 12345.0,
      "width" : 12345.0,
      "height" : 12345.0
    },
    "pageIndex" : 12345
  }, {
    "rectangle" : {
      "x" : 12345.0,
      "y" : 12345.0,
      "width" : 12345.0,
      "height" : 12345.0
    },
    "pageIndex" : 12345
  } ]
}