{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ChildDocumentMergeHistory", "description": "", "type": "object", "properties": { "id": { "type": "integer", "readOnly": true }, "delivery_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" }, "status": { "enum": [ "pending", "success", "error" ], "type": "string" }, "message": { "type": "object", "additionalProperties": {}, "nullable": true }, "delivery": { "type": "integer", "nullable": true } }, "required": [ "delivery_type", "id", "status" ] }