Signal Order

Applies to: Direct | Capture

The order in which values appear in a signals array does not matter. The following two examples are equivalent.

{  
  "private_data": {  
    "document_type": "na_dl",  
  "signals": [
    "kyc",
    "idcheck"
    ]
  }
}
{  
  "private_data": {  
    "document_type": "na_dl",
  "signals": [
    "idcheck",
    "kyc"
    ]
  }
}

In the first example, kyc comes before idcheck. In the second example, kyc comes after idcheck. Both examples are equivalent. Order does not matter.