Docusign · Schema
EnvelopeRecipientTabs
Contains the tab collections for an envelope recipient, organized by tab type.
AgreementsContractsDigital Transaction ManagementDocumentsElectronic SignatureseSignature
Properties
| Name | Type | Description |
|---|---|---|
| signHereTabs | array | Signature tabs requiring the recipient to sign. |
| initialHereTabs | array | Initial tabs requiring the recipient to initial. |
| dateSignedTabs | array | Date signed tabs auto-filled with the signing date. |
| textTabs | array | Text input tabs for free-form text entry. |
| fullNameTabs | array | Full name tabs auto-filled with the signer name. |
| emailTabs | array | Email tabs for email address input. |
| checkboxTabs | array | Checkbox tabs for boolean selection. |
| radioGroupTabs | array | Radio button group tabs for single-choice selection. |
| listTabs | array | List tabs for dropdown selection. |
| numberTabs | array | Number tabs for numeric input. |
| dateTabs | array | Date tabs for date selection. |
| formulaTabs | array | Formula tabs for calculated values. |
| noteTabs | array | Note tabs for displaying read-only text. |
| approveTabs | array | Approve tabs for document approval. |
| declineTabs | array | Decline tabs for document rejection. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EnvelopeRecipientTabs",
"type": "object",
"description": "Contains the tab collections for an envelope recipient, organized by tab type.",
"properties": {
"signHereTabs": {
"type": "array",
"description": "Signature tabs requiring the recipient to sign."
},
"initialHereTabs": {
"type": "array",
"description": "Initial tabs requiring the recipient to initial."
},
"dateSignedTabs": {
"type": "array",
"description": "Date signed tabs auto-filled with the signing date."
},
"textTabs": {
"type": "array",
"description": "Text input tabs for free-form text entry."
},
"fullNameTabs": {
"type": "array",
"description": "Full name tabs auto-filled with the signer name."
},
"emailTabs": {
"type": "array",
"description": "Email tabs for email address input."
},
"checkboxTabs": {
"type": "array",
"description": "Checkbox tabs for boolean selection."
},
"radioGroupTabs": {
"type": "array",
"description": "Radio button group tabs for single-choice selection."
},
"listTabs": {
"type": "array",
"description": "List tabs for dropdown selection."
},
"numberTabs": {
"type": "array",
"description": "Number tabs for numeric input."
},
"dateTabs": {
"type": "array",
"description": "Date tabs for date selection."
},
"formulaTabs": {
"type": "array",
"description": "Formula tabs for calculated values."
},
"noteTabs": {
"type": "array",
"description": "Note tabs for displaying read-only text."
},
"approveTabs": {
"type": "array",
"description": "Approve tabs for document approval."
},
"declineTabs": {
"type": "array",
"description": "Decline tabs for document rejection."
}
}
}