Dropbox · Schema

SubSignatureRequestSigner

Documents

Properties

Name Type Description
name string _t__Sub::SignatureRequestSigner::SIGNER_NAME
email_address string _t__Sub::SignatureRequestSigner::SIGNER_EMAIL_ADDRESS
order integer _t__Sub::SignatureRequestSigner::SIGNER_ORDER
pin string _t__Sub::SignatureRequestSigner::SIGNER_PIN
sms_phone_number string _t__Sub::SignatureRequestSigner::SIGNER_SMS_PHONE_NUMBER
sms_phone_number_type string _t__Sub::SignatureRequestSigner::SIGNER_SMS_PHONE_NUMBER_TYPE
View JSON Schema on GitHub

JSON Schema

dropbox-subsignaturerequestsigner-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubSignatureRequestSigner",
  "title": "SubSignatureRequestSigner",
  "required": [
    "name",
    "email_address"
  ],
  "properties": {
    "name": {
      "description": "_t__Sub::SignatureRequestSigner::SIGNER_NAME",
      "type": "string"
    },
    "email_address": {
      "description": "_t__Sub::SignatureRequestSigner::SIGNER_EMAIL_ADDRESS",
      "type": "string",
      "format": "email"
    },
    "order": {
      "description": "_t__Sub::SignatureRequestSigner::SIGNER_ORDER",
      "type": "integer",
      "nullable": true
    },
    "pin": {
      "description": "_t__Sub::SignatureRequestSigner::SIGNER_PIN",
      "type": "string",
      "maxLength": 12,
      "minLength": 4
    },
    "sms_phone_number": {
      "description": "_t__Sub::SignatureRequestSigner::SIGNER_SMS_PHONE_NUMBER",
      "type": "string"
    },
    "sms_phone_number_type": {
      "description": "_t__Sub::SignatureRequestSigner::SIGNER_SMS_PHONE_NUMBER_TYPE",
      "type": "string",
      "enum": [
        "authentication",
        "delivery"
      ]
    }
  },
  "type": "object"
}