Solicitation to submit document copies

This event occurs when the customer needs to submit copies of their documents for validation.

Type: object
Domain: banking-prospect
Event: documents_copy
Version: 1

|
id required

Title: Banking prospect provisioning unique identifier
Description: A unique identifier of the new prospect creation process
Type: string
Example:
12387965::TN-d6fe9b36-6a14-432e-b177

provider required

Title: Provider
Description: Provider's Name
Type: string
Example:
Celcoin

client_document_number required

Title: Client Document Number
Description: Document number used to relate the customer to the creation of the new prospect account
Type: string
Example:
123456789

status required

Title: Status
Description: Provider's status
Type: string
Example:
REJECTED
APPROVED

message required

Title: Message
Description: Message containing instructions of needed steps to complete the prospect account creation
Type: string
Example:
Action required. Send a copy of required documents

url required

Title: URL
Description: URL for sending documents
Type: string
Example:
www.example.com

{
    "$schema": "http://json-schema.org/draft-07/schema",
    "type": "object",
    "title": "Solicitation to submit document copies",
    "description": "This event occurs when the customer needs to submit copies of their documents for validation.",
    "required": [
        "id",
        "provider",
        "client_document_number",
        "status",
        "message",
        "url"
    ],
    "properties": {
        "id": {
            "type": "string",
            "title": "Banking prospect provisioning unique identifier",
            "description": "A unique identifier of the new prospect creation process ",
            "examples": [
                "12387965::TN-d6fe9b36-6a14-432e-b177"
            ]
        },
        "provider": {
            "type": "string",
            "title": "Provider",
            "description": "Provider's Name",
            "examples": [
                "Celcoin"
            ]
        },
        "client_document_number": {
            "type": "string",
            "title": "Client Document Number",
            "description": "Document number used to relate the customer to the creation of the new prospect account",
            "examples": [
                "123456789"
            ]
        },
        "status": {
            "type": "string",
            "title": "Status",
            "description": "Provider's status",
            "examples": [
                "REJECTED",
                "APPROVED"
            ]
        },
        "message": {
            "type": "string",
            "title": "Message",
            "description": "Message containing instructions of needed steps to complete the prospect account creation",
            "examples": [
                "Action required. Send a copy of required documents"
            ]
        },
        "url": {
            "type": "string",
            "title": "URL",
            "description": "URL for sending documents",
            "examples": [
                "www.example.com"
            ]
        }
    }
}
{
    "id": "12387965::TN-d6fe9b36-6a14-432e-b177",
    "provider": "Celcoin",
    "client_document_number": "123456789",
    "status": "REJECTED",
    "message": "Action required. Send a copy of required documents",
    "url": "www.example.com"
}