# Passport Attributes

Attributes are used to store user passport data. Attributes include information like anti-money laundering (AML) risk score and the country where the passport was issued.&#x20;

### Attributes

<table><thead><tr><th width="265">Attribute Type</th><th width="248.67123287671234">Description</th><th>Attribute Values</th></tr></thead><tbody><tr><td>DID</td><td>Sybil resistant ID - can be used to detect if multiple wallet addresses belong to the same entity</td><td>Represented as 32 bytes which can be converted into a string.</td></tr><tr><td>AML</td><td>Anti-money laundering risk scoring of the passport holder.</td><td>1, 2, 3, 4, 5, 6, 7, 8, 9, 10 represented as hex string.</td></tr><tr><td>COUNTRY</td><td>Defines the country where the government ID was issued. Uses <a href="https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2">ISO-3166-1 alpha-2</a> standard for two-letter country encodings. </td><td>e.g. <br>keccak256("US"), keccak256("FR")</td></tr><tr><td>IS_BUSINESS</td><td>Defines whether the passport is for an individual consumer or a business entity.</td><td>keccak256("TRUE")<br><br>For Individual, this field will be omitted</td></tr><tr><td>INVESTOR_STATUS</td><td><p>Defines whether an entity is a sophisticated investor in their jurisdiction.<br><br><strong>US</strong></p><p>Defines whether the entity is qualified as a <a href="https://www.sec.gov/education/capitalraising/building-blocks/accredited-investor">US accredited investor</a><br><br><strong>Non-US</strong><br>Not supported</p></td><td>keccak256("TRUE"), keccak256("FALSE")</td></tr><tr><td>CRED_PROTOCOL_SCORE</td><td><p>Cred Protocol’s credit score predicts the likelihood of borrowers being liquidated or defaulting on loans in the next 90 days (range 300-1000)</p><p><br>Visit <a href="https://www.credprotocol.com/">https://www.credprotocol.com/</a> for more information</p></td><td>300-1000 represented as hex string.</td></tr></tbody></table>

###


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.quadrata.com/integration/introduction/passport-attributes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
