SignatureField Data Type

A signature field in the PDF document.

Namespace
(Default)
Schema
ns0.xsd
Properties
name data type type namespace min/max occurs description
certifying boolean element 1/1 True if this is a certifying signature.
fieldName string element 0/1 The name of the field.
signContactInformation string element 0/1 Information provided by the signer to enable a recipient to contact the signer to verify the signature; for example, a phone number.
signDateTime dateTime element 0/1 The date and time of the signature. (ISO-8601 format)
signLocation string element 0/1 The signature location.
signName string element 0/1 The signature name.
signReason string element 0/1 The reason for signing.
signatureValidity SignatureValidity element 0/1 The signature validity information associated with the signature (will be empty if the field is not signed).
signed boolean element 1/1 True if the field contains a signature.
Properties inherited from Field
name string element 0/1 The name of the field.
type string element 0/1 A description of the field type.
userName string element 0/1 The field's user name.
widget list of Widget element 0/unbounded The widgets associated with this field.
widgetCount int element 0/1 The number of widgets associated with this field.

Example

<SignatureField>
  <signName>...</signName>
  <signLocation>...</signLocation>
  <signReason>...</signReason>
  <signContactInformation>...</signContactInformation>
  <signDateTime>...</signDateTime>
  <signed>...</signed>
  <certifying>...</certifying>
  <fieldName>...</fieldName>
  <signatureValidity>
    <validSignatureObject>...</validSignatureObject>
    <validSignatureHash>...</validSignatureHash>
    <validRevocationList>...</validRevocationList>
    <validExpiration>...</validExpiration>
    <validCertificateChain>...</validCertificateChain>
    <trustedChain>...</trustedChain>
    <contentAppended>...</contentAppended>
    <validByteRange>...</validByteRange>
    <documentReconstructed>...</documentReconstructed>
    <documentTimestamp>...</documentTimestamp>
    <tsaTimestamp>...</tsaTimestamp>
    <validTimestampToken>...</validTimestampToken>
    <validTimestampCertificate>...</validTimestampCertificate>
    <tsaTrustedChain>...</tsaTrustedChain>
    <validPadesCertificate>...</validPadesCertificate>
    <validKeyUsage>...</validKeyUsage>
    <validityText>...</validityText>
  </signatureValidity>
  <name>...</name>
  <type>...</type>
  <userName>...</userName>
  <widgetCount>...</widgetCount>
  <widget>
    <rectangle/>
    <pageIndex>...</pageIndex>
  </widget>
</SignatureField>