{ "$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." } } }