{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "SignableDelivery", "description": "", "type": "object", "properties": { "id": { "type": "integer", "readOnly": true }, "failure_email_recipients": { "type": "string", "nullable": true, "maxLength": 255 }, "account": { "type": "integer" }, "parties": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "party_name": { "type": "string", "minLength": 1 }, "party_email": { "type": "string", "format": "email" }, "party_role": { "type": "string", "enum": [ "signer", "copy" ] } }, "required": [ "party_name", "party_email", "party_role" ] } }, "name": { "type": "string", "maxLength": 255 }, "type": { "enum": [ "webhook", "azure_blob_storage", "box_drive", "signature", "docu_sign", "sign_now", "zoho_crm", "dropbox", "google_drive", "podio", "one_drive", "sharepoint", "eversign", "hellosign", "aws_s3", "signable", "yousign", "email", "sftp" ], "type": "string" }, "success_callback_url": { "type": "string", "nullable": true, "maxLength": 255 }, "success_callback_payload": { "type": "object", "additionalProperties": {}, "nullable": true }, "success_callback_headers": { "type": "object", "additionalProperties": {}, "nullable": true }, "last_used_on": { "type": "string", "format": "date-time", "nullable": true }, "title": { "type": "string", "nullable": true }, "expire_after": { "type": "integer", "maximum": 2147483647, "minimum": 1, "nullable": true }, "remind_after": { "type": "integer", "maximum": 2147483647, "minimum": 1, "nullable": true } }, "required": [ "account", "id", "name", "parties" ] }