> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.withpersona.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.withpersona.com/_mcp/server.

# Mark an Inquiry for manual review

POST https://api.withpersona.com/api/v1/inquiries/{inquiry-id}/mark-for-review

Marks an Inquiry for manual review. Inquiries that are already
approved or declined cannot be marked for review.

Note that this action will trigger any associated workflows and webhooks.

Marking an inquiry for review will prevent further progress on the inquiry.

Reference: https://docs.withpersona.com/api-reference/inquiries/mark-an-inquiry-for-review

## Authentication

- `Authorization` header (bearer token, required)

## Request

### Path parameters

- `inquiry-id` (string, required)

### Query parameters

- `include` (string, optional) — A comma-separated list of relationship paths. This can be used to customize which related resources will be fully serialized in the `included` key in the response. See [Serialization](https://docs.withpersona.com/serialization#inclusion-of-related-resources) for more details.
- `fields` (map from string to string, optional) — Comma-separated list(s) of attributes to include in the response. This can be used to customize which attributes will be serialized in the response. See [Serialization](https://docs.withpersona.com/serialization#sparse-fieldsets) for more details.

### Headers

- `Key-Inflection` (enum, optional) — Determines casing for the API response.
  - Allowed values: `camel`, `kebab`, `snake`
- `Idempotency-Key` (string, optional) — Ensures the request is idempotent.
- `Persona-Version` (enum, optional) — Server API version. More info on versioning can be found [here](https://docs.withpersona.com/versioning).
  - Allowed values: `2025-12-08`, `2025-10-27`, `2023-01-05`, `2022-09-01`, `2021-08-18`, `2021-07-05`, `2021-02-21`, `2020-05-18`

## Response

### 200

This endpoint returns an Inquiry object and (optionally) its related objects in `included`.

- `data` (object, required) — An Inquiry object
  - `id` (string, required)
  - `attributes` (object, required)
    - `status` (string, required) — The status of the Inquiry Possible values: - created - pending - completed - expired - failed - needs_review - approved - declined Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
    - `reference-id` (string, required, nullable)
    - `note` (string, required, nullable)
    - `behaviors` (map from string to any, required, nullable) — Risk signals surfaced to enterprise customers. Specific keys are not enumerated in the public spec and may be added or removed over time. Contact your Persona account team for more information.
    - `tags` (list of string, required)
    - `creator` (string, required)
    - `reviewer-comment` (string, required, nullable)
    - `created-at` (datetime, required)
    - `updated-at` (datetime, required)
    - `started-at` (datetime, required, nullable)
    - `expires-at` (datetime, required, nullable)
    - `completed-at` (datetime, required, nullable)
    - `failed-at` (datetime, required, nullable) — Set when an Inquiry transitions to `failed`. Not typically set on `declined` Inquiries — those carry `completed-at` from the transition that preceded the decision.
    - `marked-for-review-at` (datetime, required, nullable)
    - `decisioned-at` (datetime, required, nullable)
    - `expired-at` (datetime, required, nullable)
    - `redacted-at` (datetime, required, nullable)
    - `previous-step-name` (string, required, nullable)
    - `next-step-name` (string, required, nullable)
    - `fields` (object, required) — JSON key-value pairs of field name to field value. Exact schema depends on the configuration of the Inquiry template for this Inquiry. Keys in `fields` are **not** key inflected.
      - `name-first` (object, optional)
        - `type` (string, optional)
        - `value` (string, optional, nullable)
      - `name-middle` (object, optional)
        - `type` (string, optional)
        - `value` (string, optional, nullable)
      - `name-last` (object, optional)
        - `type` (string, optional)
        - `value` (string, optional, nullable)
      - `address-street-1` (object, optional)
        - `type` (string, optional)
        - `value` (string, optional, nullable)
      - `address-street-2` (object, optional)
        - `type` (string, optional)
        - `value` (string, optional, nullable)
      - `address-city` (object, optional) — City of residence address. Not all international addresses use this attribute.
        - `type` (string, optional)
        - `value` (string, optional, nullable)
      - `address-subdivision` (object, optional) — State or subdivision of residence address. In the US, this should be the unabbreviated name. Not all international addresses use this attribute.
        - `type` (string, optional)
        - `value` (string, optional, nullable)
      - `address-postal-code` (object, optional) — ZIP or postal code of residence address. Not all international addresses use this attribute.
        - `type` (string, optional)
        - `value` (string, optional, nullable)
      - `address-country-code` (object, optional) — ISO 3166-1 alpha 2 country code.
        - `type` (string, optional)
        - `value` (string, optional, nullable)
      - `birthdate` (object, optional)
        - `type` (string, optional)
        - `value` (string, optional, nullable) — Date of birth in YYYY-MM-DD format
      - `email-address` (object, optional)
        - `type` (string, optional)
        - `value` (string, optional, nullable)
      - `phone-number` (object, optional)
        - `type` (string, optional)
        - `value` (string, optional, nullable)
      - `identification-number` (object, optional)
        - `type` (string, optional)
        - `value` (string, optional, nullable)
  - `relationships` (object, required)
    - `account` (object, optional)
      - `data` (object, optional, nullable)
        - `id` (string, optional)
        - `type` ("account", optional)
    - `documents` (object, optional)
      - `data` (list of object, optional)
        - `id` (string, optional)
        - `type` (string, optional)
    - `template` (object, optional) — Only present for Legacy 2.0 inquiries
      - `data` (object, optional, nullable)
        - `id` (string, optional)
        - `type` ("template", optional)
    - `inquiry-template` (object, optional) — Only present for Dynamic Flow inquiries
      - `data` (object, optional, nullable)
        - `id` (string, optional)
        - `type` ("inquiry-template", optional)
    - `inquiry-template-version` (object, optional) — Only present for Dynamic Flow inquiries
      - `data` (object, optional, nullable)
        - `id` (string, optional)
        - `type` ("inquiry-template-version", optional)
    - `reports` (object, optional)
      - `data` (list of object, optional)
        - `id` (string, optional)
        - `type` (string, optional)
    - `transaction` (object, optional)
      - `data` (object, optional, nullable)
        - `id` (string, optional)
        - `type` ("transaction", optional)
    - `reviewer` (object, optional) — Actor that decisioned the Inquiry. `data` is `null` while the Inquiry has not been decisioned. Once decisioned, `data.type` and `data.id` identify the reviewer: - `user` + `user_*` — a dashboard user reviewed and decisioned the Inquiry. - `workflow` + `wfl_*` — Workflows 1.0 auto-decisioned the Inquiry. - `workflow-run` + `wfr_*` — Workflows 2.0 auto-decisioned the Inquiry (the dominant case in automation-heavy organizations).
      - `data` (object, optional, nullable)
        - `id` (string, optional)
        - `type` (string, optional) — One of `user`, `workflow`, or `workflow-run`.
    - `selfies` (object, optional)
      - `data` (list of object, optional)
        - `id` (string, optional)
        - `type` (string, optional)
    - `sessions` (object, optional)
      - `data` (list of object, optional)
        - `id` (string, optional)
        - `type` ("inquiry-session", optional)
    - `verifications` (object, optional)
      - `data` (list of object, optional)
        - `id` (string, optional)
        - `type` (string, optional)
- `included` (list of object, optional) — Objects that _may_ be returned if specified via the `include` query parameter in the request.
  - `type`: `account` (account)
    - `attributes` (object, optional)
      - `reference-id` (string, optional, nullable)
      - `account-type-name` (string, optional)
      - `created-at` (datetime, optional)
      - `updated-at` (datetime, optional)
      - `redacted-at` (datetime, optional, nullable)
      - `fields` (object, optional) — JSON key-value pairs of field name to field value. Exact schema depends on the configuration of the Account Type for this Account. Keys in `fields` are **not** key inflected.
        - `name` (object, optional)
          - `type` (string, optional)
          - `value` (object, optional)
            - `first` (object, optional)
            - `middle` (object, optional)
            - `last` (object, optional)
        - `address` (object, optional)
          - `type` (string, optional)
          - `value` (object, optional)
            - `street_1` (object, optional)
            - `street_2` (object, optional)
            - `subdivision` (object, optional)
            - `city` (object, optional)
            - `postal_code` (object, optional)
            - `country_code` (object, optional)
        - `identification_numbers` (object, optional)
          - `type` (string, optional)
          - `value` (list of object, optional)
            - `type` (string, optional)
            - `value` (object, optional)
        - `birthdate` (object, optional)
          - `type` (string, optional)
          - `value` (string, optional, nullable)
        - `phone_number` (object, optional)
          - `type` (string, optional)
          - `value` (string, optional, nullable)
        - `email_address` (object, optional)
          - `type` (string, optional)
          - `value` (string, optional, nullable)
        - `selfie_photo` (object, optional)
          - `type` ("file", optional)
          - `value` (object, optional, nullable)
            - `filename` (string, optional)
            - `url` (string, optional)
            - `byte-size` (integer, optional)
      - `tags` (list of string, optional)
      - `account-status` (string, optional)
    - `id` (string, optional)
    - `relationships` (object, optional)
      - `account-type` (object, optional)
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` ("account-type", optional)
  - `type`: `document/generic` (document/generic)
    - `attributes` (object, optional)
      - `created-at` (datetime, optional)
      - `document-type` (string, optional, nullable) — The classification of the document if detected. If unable to be detected, this will be other.
      - `extraction-responses` (list of object, optional, nullable) — A list of extractions resulting from processing the uploaded documents corresponding to the document's extraction configuration.
        - `extraction-type` (string, optional)
        - `field-name` (string, optional)
        - `structured-results` (list of map from string to any, optional) — A list of structured AI extraction results with locations stripped. Values are recursive — objects contain nested structured results — but bounding-box location data is omitted from the API response.
        - `results` (list of object, optional) — A list of objects containing the actual value extracted and additional information relevant to the extraction result.
          - `value` (string, optional)
          - `page` (integer, optional) — The page number the extraction result is detected. Page is 1-indexed.
          - `match-level` (string, optional) — If extraction-type is guided, match-level describes the degree in which the extracted value is similar to the source value. Otherwise the match-level is full.
          - `metadata` (object, optional, nullable) — This is a free-form object containing potentially helpful metadata on the extraction result.
      - `fields` (map from string to any, optional) — JSON key-value pairs of field name to field value. Exact schema depends on the configuration of your template.
      - `files` (list of object, optional) — The files uploaded to the document for processing.
        - `filename` (string, optional)
        - `url` (string, optional)
        - `byte-size` (integer, optional)
      - `files-normalized` (list of object, optional)
        - `filename` (string, optional)
        - `url` (string, optional)
        - `byte-size` (integer, optional)
      - `kind` (string, optional)
      - `processed-at` (datetime, optional, nullable)
      - `processed-at-ts` (integer, optional, nullable)
      - `status` (string, optional) — Possible values: - initiated - submitted - processed - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
    - `id` (string, optional)
    - `relationships` (object, optional)
      - `inquiry` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("template", optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry-template-version", optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry-template", optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `document-files` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("document-file", optional)
  - `type`: `document/government-id` (document/government-id)
    - `attributes` (object, optional)
      - `address-city` (string, optional, nullable) — City of residence address. Not all international addresses use this attribute.
      - `address-postal-code` (string, optional, nullable) — ZIP or postal code of residence address. Not all international addresses use this attribute.
      - `address-street-1` (string, optional, nullable) — Street name of residence address.
      - `address-street-2` (string, optional, nullable) — Extension of residence address, usually apartment or suite number.
      - `address-subdivision` (string, optional, nullable) — State or subdivision of residence address. In the US, this should be the unabbreviated name. Not all international addresses use this attribute.
      - `back-photo` (object, optional, nullable)
        - `filename` (string, optional)
        - `url` (string, optional)
        - `byte-size` (integer, optional)
      - `birthdate` (date, optional, nullable)
      - `birthplace` (string, optional, nullable)
      - `created-at` (datetime, optional)
      - `designations` (list of string, optional, nullable)
      - `document-number` (string, optional, nullable)
      - `endorsements` (string, optional, nullable)
      - `expiration-date` (date, optional, nullable)
      - `front-photo` (object, optional, nullable)
        - `filename` (string, optional)
        - `url` (string, optional)
        - `byte-size` (integer, optional)
      - `height` (string, optional, nullable)
      - `id-class` (string, optional, nullable)
      - `identification-number` (string, optional, nullable)
      - `issue-date` (date, optional, nullable)
      - `issuing-authority` (string, optional, nullable)
      - `issuing-subdivision` (string, optional, nullable)
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `name-middle` (string, optional, nullable) — Middle name.
      - `name-suffix` (string, optional, nullable)
      - `nationality` (string, optional, nullable)
      - `native-name-first` (string, optional, nullable) — Native script given or first name.
      - `native-name-last` (string, optional, nullable) — Native script family or last name.
      - `native-name-middle` (string, optional, nullable) — Native script middle name.
      - `native-name-title` (string, optional, nullable) — Native script name title or prefix.
      - `processed-at` (datetime, optional, nullable)
      - `processed-at-ts` (integer, optional, nullable)
      - `restrictions` (string, optional, nullable)
      - `selfie-photo` (object, optional, nullable)
        - `filename` (string, optional)
        - `url` (string, optional)
        - `byte-size` (integer, optional)
      - `sex` (string, optional, nullable)
      - `status` (string, optional) — Possible values: - initiated - submitted - processed - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `vehicle-class` (string, optional, nullable)
      - `visa-status` (string, optional, nullable)
    - `id` (string, optional)
    - `relationships` (object, optional)
      - `inquiry` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("template", optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry-template-version", optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry-template", optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `document-files` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("document-file", optional)
  - `type`: `document/government-id-nfc` (document/government-id-nfc)
    - `attributes` (object, optional)
      - `status` (string, optional) — Possible values: - initiated - submitted - processed - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `created-at` (datetime, optional)
      - `processed-at` (datetime, optional, nullable)
      - `processed-at-ts` (integer, optional, nullable)
    - `id` (string, optional)
    - `relationships` (object, optional)
      - `inquiry` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("template", optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry-template-version", optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry-template", optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `document-files` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("document-file", optional)
  - `type`: `document/mdoc` (document/mdoc)
    - `attributes` (object, optional)
      - `status` (string, optional) — Possible values: - initiated - submitted - processed - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `created-at` (datetime, optional)
      - `processed-at` (datetime, optional, nullable)
      - `processed-at-ts` (integer, optional, nullable)
    - `id` (string, optional)
    - `relationships` (object, optional)
      - `inquiry` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("template", optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry-template-version", optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry-template", optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `document-files` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("document-file", optional)
  - `type`: `user` (user)
    - `attributes` (object, optional)
      - `email-address` (string, optional)
      - `name-first` (string, optional)
      - `name-last` (string, optional)
    - `id` (string, optional)
  - `type`: `inquiry-template` (inquiry-template)
    - `attributes` (object, optional)
      - `name` (string, optional) — Name of the Inquiry Template
      - `status` (string, optional) — Possible values: - active - inactive Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `embedded-flow-domain-allowlist` (list of string, optional) — List of domains allowed for embedded flows
      - `hosted-flow-subdomains` (list of string, optional) — The subdomain that your hosted flow can be hosted on (e.g. "mycompany.withpersona.com")
      - `hosted-flow-redirect-uri-schemes` (list of string, optional) — An allowlist that specifies the URI schemes for redirect after completion of a Hosted Flow. This can be used to implement deep linking for mobile integrations. If this list is empty, all URLs with the URI scheme http or https are allowed.
      - `field-schemas` (list of object, optional)
        - `type`: `array` (array)
          - `config` (object, optional)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `item-schema` (object, optional)
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `key` (string, optional)
          - `label` (string, optional, nullable)
        - `type`: `boolean` (boolean)
          - `config` (object, optional)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `default-value` (boolean, optional, nullable)
          - `key` (string, optional)
          - `label` (string, optional, nullable)
        - `type`: `choices` (choices)
          - `config` (object, optional)
            - `allow-empty` (boolean, optional, default: false)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `option-labels` (list of string, optional) — Display labels for each value in `options`, in the same order.
            - `options` (list of string, optional)
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `default-value` (string, optional, nullable) — Must be one of the values in `config.options`, or null.
          - `key` (string, optional)
          - `label` (string, optional, nullable)
        - `type`: `date` (date)
          - `config` (object, optional)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `max-date` (date, optional, nullable)
            - `min-date` (date, optional, nullable)
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `default-value` (date, optional, nullable)
          - `key` (string, optional)
          - `label` (string, optional, nullable)
        - `type`: `datetime` (datetime)
          - `config` (object, optional)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `default-value` (datetime, optional, nullable)
          - `key` (string, optional)
          - `label` (string, optional, nullable)
        - `type`: `email-address` (email-address)
          - `config` (object, optional)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `default-value` (string, optional, nullable)
          - `key` (string, optional)
          - `label` (string, optional, nullable)
        - `type`: `file` (file)
          - `config` (object, optional)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `max-file-size-bytes` (integer, optional, default: 10000000)
            - `min-file-size-bytes` (integer, optional, default: 1)
            - `page-count-limit-enabled` (boolean, optional, default: false) — Whether the document page-count limits are enforced.
            - `page-count-max` (integer, optional, nullable) — Maximum allowed page count when `page-count-limit-enabled` is true.
            - `page-count-min` (integer, optional, nullable) — Minimum allowed page count when `page-count-limit-enabled` is true.
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `supported-mime-types` (list of string, optional, default: ["image/jpg image/jpeg image/png image/heic image/heif image/tif image/tiff image/gif image/svg+xml application/pdf text/plain text/csv video/mp4 video/webm video/quicktime"])
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `key` (string, optional)
          - `label` (string, optional, nullable)
        - `type`: `hash` (hash)
          - `config` (object, optional)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `ignore-unknown-keys` (boolean, optional, default: false)
            - `item-schemas` (list of object, optional)
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `key` (string, optional)
          - `label` (string, optional, nullable)
        - `type`: `integer` (integer)
          - `config` (object, optional)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `max` (double, optional)
            - `min` (double, optional)
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `default-value` (integer, optional, nullable)
          - `key` (string, optional)
          - `label` (string, optional, nullable)
        - `type`: `json` (json)
          - `config` (object, optional)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `json-schema` (map from string to any, optional) — A JSON Schema document (Draft 7 syntax) describing the shape of values stored in this field. Synthesized server-side by some verification types (e.g. `government-id` writes a map of national identification numbers); the schema is informational and may evolve without a versioned update.
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `default-value` (any, optional) — JSON-typed fields don't expose a default-value through this API (the stored value is a free-form JSON document; the default is `null`).
          - `key` (string, optional)
          - `label` (string, optional, nullable)
        - `type`: `multi-choices` (multi-choices)
          - `config` (object, optional)
            - `allow-empty` (boolean, optional, default: false)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `option-labels` (list of string, optional) — Display labels for each value in `options`, in the same order.
            - `options` (list of string, optional)
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `default-value` (list of string, optional, nullable) — Each entry must be one of the values in `config.options`.
          - `key` (string, optional)
          - `label` (string, optional, nullable)
        - `type`: `number` (number)
          - `config` (object, optional)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `max` (double, optional)
            - `min` (double, optional)
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `default-value` (double, optional, nullable)
          - `key` (string, optional)
          - `label` (string, optional, nullable)
        - `type`: `string` (string)
          - `config` (object, optional)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `max-char-length` (integer, optional, default: 255)
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `sanitize` (list of string, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `default-value` (string, optional, nullable)
          - `key` (string, optional)
          - `label` (string, optional, nullable)
        - `type`: `relation-schema` (relation-schema)
          - `config` (object, optional)
            - `archived-at` (datetime, optional, nullable)
            - `deactivated-at` (datetime, optional, nullable)
            - `redaction-policy` (string, optional, default: none) — Whether the field's value may be redacted on request. Possible values: - `none` — value is redactable - `never` — value is never redacted Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `required` (boolean, optional)
            - `source-key-path` (string, optional, nullable) — When the field schema is an alias, the dotted key path of the source field; absent for non-alias schemas.
            - `target` (string, optional) — Customer-facing identifier for the specific Relation subtype this field points to — `document-generic`, `document-government-id`, `document-government-id-nfc`, `document-mdoc`, `document-qr-code`, or `selfie`. Use this on a future write API to specify which relation kind to create.
            - `write-policy` (string, optional, default: none) — Whether the field's value may be overwritten after it is first set. Possible values: - `none` — value may be overwritten on subsequent writes - `write_once` — subsequent writes are rejected once a value is set Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `key` (string, optional)
          - `label` (string, optional, nullable)
    - `id` (string, optional)
    - `relationships` (object, optional)
      - `latest-published-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
  - `type`: `inquiry-template-version` (inquiry-template-version)
    - `attributes` (object, optional)
      - `name-display` (string, optional, nullable)
      - `description` (string, optional, nullable) — A description of the changes in this version.
      - `status` (string, optional) — Possible values: - published - draft Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `live` (boolean, optional) — Whether this is the Inquiry Template's current live published version.
      - `last-updater` (string, optional, nullable) — The email address of the User who last updated this version.
      - `enabled-locales` (list of string, optional)
      - `created-at` (datetime, optional)
      - `updated-at` (datetime, optional, nullable)
      - `published-at` (datetime, optional, nullable)
      - `theme` (object, optional)
        - `border-radius` (string, optional, nullable)
        - `border-radius-input` (string, optional, nullable)
        - `border-radius-modal` (string, optional, nullable)
        - `border-width` (string, optional, nullable)
        - `border-width-input` (string, optional, nullable)
        - `button-background-image` (string, optional, nullable)
        - `button-font-weight` (string, optional, nullable)
        - `button-position` (string, optional, nullable)
        - `button-shadow-strength` (string, optional, nullable)
        - `button-text-transform` (string, optional, nullable)
        - `color-button-primary` (string, optional, nullable)
        - `color-button-secondary` (string, optional, nullable)
        - `color-button-secondary-fill` (string, optional, nullable)
        - `color-button-primary-fill-disabled` (string, optional, nullable)
        - `color-button-secondary-fill-disabled` (string, optional, nullable)
        - `color-error` (string, optional, nullable)
        - `color-font` (string, optional, nullable)
        - `color-font-button-primary` (string, optional, nullable)
        - `color-font-button-secondary` (string, optional, nullable)
        - `color-font-small` (string, optional, nullable)
        - `color-font-title` (string, optional, nullable)
        - `color-icon-header` (string, optional, nullable)
        - `color-input-background` (string, optional, nullable)
        - `color-input-border` (string, optional, nullable)
        - `color-link` (string, optional, nullable)
        - `color-modal-background` (string, optional, nullable)
        - `color-primary` (string, optional, nullable)
        - `color-progress-bar` (string, optional, nullable)
        - `color-success` (string, optional, nullable)
        - `color-warning` (string, optional, nullable)
        - `color-divider` (string, optional, nullable)
        - `color-dropdown-background` (string, optional, nullable)
        - `color-dropdown-option` (string, optional, nullable)
        - `font-family` (string, optional, nullable)
        - `font-family-title` (string, optional, nullable)
        - `font-url` (string, optional, nullable)
        - `font-size-body` (string, optional, nullable)
        - `font-size-header` (string, optional, nullable)
        - `font-size-small` (string, optional, nullable)
        - `line-height-body` (string, optional, nullable)
        - `line-height-header` (string, optional, nullable)
        - `line-height-small` (string, optional, nullable)
        - `header-font-weight` (string, optional, nullable)
        - `header-margin-bottom` (string, optional, nullable)
        - `icon-color-primary` (string, optional, nullable)
        - `icon-color-highlight` (string, optional, nullable)
        - `icon-color-stroke` (string, optional, nullable)
        - `icon-color-background` (string, optional, nullable)
        - `icon-color-government-id-type` (string, optional, nullable)
        - `icon-style` (string, optional, nullable)
        - `input-style` (string, optional, nullable)
        - `page-transition` (string, optional, nullable)
        - `text-align` (string, optional, nullable)
        - `text-decoration-line-link` (string, optional, nullable)
        - `us-state-input-method` (string, optional, nullable)
        - `vertical-options-style` (string, optional, nullable)
        - `government-id-pictograph-position` (string, optional, nullable)
        - `id-back-pictograph-height` (string, optional, nullable)
        - `id-back-pictograph-url` (string, optional, nullable)
        - `id-front-pictograph-height` (string, optional, nullable)
        - `id-front-pictograph-url` (string, optional, nullable)
        - `passport-front-pictograph-height` (string, optional, nullable)
        - `passport-front-pictograph-url` (string, optional, nullable)
        - `passport-signature-pictograph-height` (string, optional, nullable)
        - `passport-signature-pictograph-url` (string, optional, nullable)
        - `government-id-select-pictograph-height` (string, optional, nullable)
        - `government-id-select-pictograph-url` (string, optional, nullable)
        - `device-handoff-terms-text-position` (string, optional, nullable)
        - `selfie-pictograph-url` (string, optional, nullable)
        - `selfie-pictograph-height` (string, optional, nullable)
        - `selfie-center-pictograph-url` (string, optional, nullable)
        - `selfie-center-pictograph-height` (string, optional, nullable)
        - `selfie-left-pictograph-url` (string, optional, nullable)
        - `selfie-left-pictograph-height` (string, optional, nullable)
        - `selfie-right-pictograph-url` (string, optional, nullable)
        - `selfie-right-pictograph-height` (string, optional, nullable)
        - `document-pictograph-position` (string, optional, nullable)
        - `document-pictograph-height` (string, optional, nullable)
        - `document-pictograph-url` (string, optional, nullable)
        - `camera-support-pictograph-height` (string, optional, nullable)
        - `camera-support-pictograph-url` (string, optional, nullable)
        - `loading-pictograph-height` (string, optional, nullable)
        - `loading-pictograph-url` (string, optional, nullable)
        - `navbar-logo-display` (string, optional, nullable)
        - `logo-url` (string, optional, nullable)
        - `logo` (string, optional, nullable)
        - `logo-data` (string, optional, nullable)
        - `logo-filename` (string, optional, nullable)
    - `id` (string, optional)
    - `relationships` (object, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
  - `type`: `template` (template)
    - `attributes` (object, optional)
      - `name` (string, optional)
    - `id` (string, optional)
  - `type`: `report/address-lookup` (Address Lookup Report)
    - `attributes` (object, optional)
      - `address-city` (string, optional, nullable) — City
      - `address-postal-code` (string, optional, nullable) — ZIP or postal code.
      - `address-street-1` (string, optional, nullable) — Address line 1 (e.g., street, PO Box, or company name).
      - `address-street-2` (string, optional, nullable) — Address line 2 (e.g., apartment, suite, unit, or building).
      - `address-subdivision` (string, optional, nullable) — Subnational division of a country, such as a state or province.
      - `addressee` (string, optional, nullable) — The name of an individual at this location.
      - `analysis-active` (string, optional, nullable)
      - `analysis-dpv-cmra` (string, optional, nullable)
      - `analysis-dpv-footnotes` (list of string, optional, nullable)
      - `analysis-dpv-footnotes-decoded` (list of string, optional, nullable)
      - `analysis-dpv-match-code` (string, optional, nullable)
      - `analysis-dpv-match-code-decoded` (string, optional, nullable)
      - `analysis-dpv-vacant` (string, optional, nullable)
      - `analysis-footnotes` (list of string, optional, nullable)
      - `analysis-footnotes-decoded` (list of string, optional, nullable)
      - `analysis-lacs-link-code` (string, optional, nullable)
      - `analysis-lacs-link-code-decoded` (string, optional, nullable)
      - `analysis-lacs-link-indicator` (string, optional, nullable)
      - `analysis-lacs-link-indicator-decoded` (string, optional, nullable)
      - `analysis-suite-link-match` (string, optional, nullable)
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `error-message` (string, optional, nullable)
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `metadata-building-default-indicator` (string, optional, nullable)
      - `metadata-carrier-route` (string, optional, nullable)
      - `metadata-carrier-route-type` (string, optional, nullable)
      - `metadata-congressional-district` (string, optional, nullable)
      - `metadata-county-fips` (string, optional, nullable)
      - `metadata-county-name` (string, optional, nullable)
      - `metadata-ews-match` (string, optional, nullable)
      - `metadata-latitude` (double, optional, nullable)
      - `metadata-longitude` (double, optional, nullable)
      - `metadata-obeys-daylight-savings` (boolean, optional, nullable)
      - `metadata-precision` (string, optional, nullable)
      - `metadata-record-type` (string, optional, nullable)
      - `metadata-residential-delivery-indicator` (string, optional, nullable)
      - `metadata-time-zone` (string, optional, nullable)
      - `metadata-utc-offset` (integer, optional, nullable)
      - `metadata-zip-type` (string, optional, nullable)
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `resolved-address-city` (string, optional, nullable)
      - `resolved-address-postal-code` (string, optional, nullable)
      - `resolved-address-street-1` (string, optional, nullable)
      - `resolved-address-street-2` (string, optional, nullable)
      - `resolved-address-subdivision` (string, optional, nullable)
      - `resolved-addressee` (string, optional, nullable)
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/adverse-media` (Adverse Media Report)
    - `attributes` (object, optional)
      - `birthdate` (string, optional, nullable) — The input DOB in YYYY-MM-DD format
      - `birthdate-year` (integer, optional, nullable)
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `country-code` (string, optional, nullable) — The input search country in alpha2 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `ignore-list-entity` (list of map from string to any, optional)
      - `ignore-list-media` (map from string to any, optional)
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `name-first` (string, optional, nullable) — The input first name of the search individual
      - `name-last` (string, optional, nullable) — The input last name of the search individual
      - `name-middle` (string, optional, nullable) — The input middle name of the search individual
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `related-sources` (list of object, optional) — The sources that matched for the search
        - `akas` (list of string, optional)
        - `birthdates` (list of string, optional)
        - `match-types` (list of string, optional)
        - `media` (list of object, optional)
          - `date` (date, optional, nullable)
          - `snippet` (string, optional) — Snippet from matched article
          - `url` (string, optional) — URL of matched article
          - `title` (string, optional) — Title of matched article
        - `name` (string, optional)
        - `sources` (list of object, optional)
          - `country-codes` (list of string, optional)
          - `name` (string, optional)
          - `types` (list of string, optional)
        - `entity-id` (string, optional)
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
      - `term` (string, optional) — The input combined term used for searching (first + middle + last name)
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/business-adverse-media` (Business Adverse Media Report)
    - `attributes` (object, required)
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `query` (object, optional)
        - `business-name` (string, optional) — The name of the business being queried.
        - `address-street` (string, optional) — The street address of the business being queried.
        - `address-city` (string, optional) — The city in which the business is located.
        - `address-state` (string, optional) — Subnational division of a country (such as a state or province) where the business is located.
        - `address-country` (string, optional) — The country in which the business is located.
        - `incorporation-date` (date, optional) — The date the business was incorporated.
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `related-sources` (list of object, optional) — The sources that matched for the search
        - `akas` (list of string, optional)
        - `birthdates` (list of string, optional)
        - `match_types` (list of string, optional)
        - `media` (list of object, optional)
          - `date` (date, optional)
          - `snippet` (string, optional) — Snippet from matched article
          - `url` (string, optional) — URL of matched article
          - `title` (string, optional) — Title of matched article
        - `name` (string, optional)
        - `sources` (list of object, optional)
          - `country_codes` (list of string, optional)
          - `name` (string, optional)
          - `token` (string, optional)
          - `types` (list of string, optional)
        - `id` (string, optional)
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `result` (object, optional)
        - `adverse-media` (list of object, optional) — A list of adverse media articles related to the business.
          - `title` (string, optional) — The title of the media article.
          - `url` (string, optional) — The URL to the full media article.
          - `date` (date, optional) — The publication date of the media article.
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
      - `term` (string, optional) — The search term for the adverse media report, typically the name of the business.
    - `id` (string, required) — A unique identifier for the report.
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/business-associated-persons` (Business Associated Persons Report)
    - `attributes` (object, required)
      - `associated-persons` (list of object, required) — List of persons associated with the business
        - `names` (list of object, required) — Names associated with the person
          - `value` (string, required) — The person's name
        - `positions` (list of object, required) — Positions held by the person
          - `value` (string, required) — The position title
      - `ownership-information` (object, required) — Ownership information for the business
        - `owners` (list of object, required) — List of owners. Empty when no ownership data is available.
          - `type` (string, required, nullable) — Whether the owner is a person or a business. One of `person` or `business`, or null when the source does not specify.
          - `name` (string, required, nullable) — The owner's name
          - `birthdate` (string, required, nullable) — ISO 8601 partial date (YYYY-MM-DD, YYYY-MM, or YYYY), depending on the precision the source provided
          - `address` (object, required, nullable)
            - `street-1` (string, optional, nullable)
            - `street-2` (string, optional, nullable)
            - `city` (string, optional, nullable)
            - `subdivision` (string, optional, nullable)
            - `postal-code` (string, optional, nullable)
            - `country-code` (string, optional, nullable)
          - `roles` (list of object, required) — The owner's roles in the business
            - `description` (string, optional, nullable) — Human-readable description of the role
            - `data` (map from string to any, optional, nullable) — Source-specific structured details about the role
      - `query` (object, required)
        - `address-country-code` (string, required) — The country code used for the search
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
    - `id` (string, required) — A unique identifier for the report.
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/business-registrations-lookup` (Business Registrations Lookup Report)
    - `attributes` (object, required)
      - `query` (object, required)
        - `address-country-code` (string, required) — The country code used for the search
      - `result` (object, required)
        - `business-name` (string, optional) — The name of the business
        - `legal-entity-type` (string, optional) — The type of legal entity
        - `formation-country` (string, optional) — The country where the business was formed
        - `formation-subdivision` (string, optional) — The subdivision where the business was formed
        - `formation-date` (date, optional) — The date the business was formed
        - `registry-records` (list of object, optional) — List of business registration records
          - `type` (string, optional) — The type of registry record
          - `issue-date` (date, optional) — Date the registration was issued
          - `issuing-authority` (string, optional) — Authority that issued the registration
          - `file-number` (string, optional) — Official registration number
          - `documents-status` (string, optional, nullable) — The document enrichment status (`pending`, `completed`, or `errored`). Null when document enrichment was not requested for this registry record.
          - `registered-name` (string, optional) — Official registered business name
          - `registration-type` (string, optional) — Type of registration (e.g. domestic, foreign)
          - `status` (object, optional)
            - `raw` (string, optional) — Status on the registry record
            - `standardized` (string, optional) — Normalized status value
          - `registration-state` (string, optional) — State/subdivision where business is registered
          - `addresses` (list of object, optional)
            - `type` (string, optional) — Type of address
            - `street-1` (string, optional) — Street address
            - `street-2` (string, optional) — Street address
            - `city` (string, optional) — City
            - `subdivision` (string, optional) — State/province/region
            - `postal-code` (string, optional) — Postal code
            - `country-code` (string, optional) — Country code
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
    - `id` (string, required) — A unique identifier for the report.
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/business-lookup` (Business Lookup Report)
    - `attributes` (object, optional)
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `match-status-address` (string, optional, nullable) — Possible values: - not_applicable - match - partial_match - no_match - unavailable - unknown Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `match-status-address-city` (string, optional, nullable) — Possible values: - not_applicable - match - partial_match - no_match - unavailable - unknown Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `match-status-address-postal-code` (string, optional, nullable) — Possible values: - not_applicable - match - partial_match - no_match - unavailable - unknown Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `match-status-address-street` (string, optional, nullable) — Possible values: - not_applicable - match - partial_match - no_match - unavailable - unknown Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `match-status-address-subdivision` (string, optional, nullable) — Possible values: - not_applicable - match - partial_match - no_match - unavailable - unknown Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `match-status-associated-person` (string, optional, nullable) — Possible values: - not_applicable - match - partial_match - no_match - unavailable - unknown Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `match-status-business-name` (string, optional, nullable) — Possible values: - not_applicable - match - partial_match - no_match - unavailable - unknown Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `match-status-ein` (string, optional, nullable) — Possible values: - not_applicable - match - partial_match - no_match - unavailable - unknown Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `match-status-phone-number` (string, optional, nullable) — Possible values: - not_applicable - match - partial_match - no_match - unavailable - unknown Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `match-status-strength` (string, optional, nullable) — Possible values: - not_applicable - match - partial_match - no_match - unavailable - unknown Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `match-status-website` (string, optional, nullable) — Possible values: - not_applicable - match - partial_match - no_match - unavailable - unknown Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `query` (object, optional)
        - `business-name` (string, optional)
        - `phone-number` (string, optional, nullable)
        - `website` (string, optional, nullable)
        - `ein` (string, optional, nullable)
        - `address-street-1` (string, optional)
        - `address-street-2` (string, optional, nullable)
        - `address-city` (string, optional)
        - `address-subdivision` (string, optional) — Subnational division of a country such as a US state.
        - `address-postal-code` (string, optional)
        - `address-country-code` (string, optional, nullable)
        - `incorporation-state` (string, optional, nullable)
        - `associated-people` (list of object, optional)
          - `name-first` (string, optional, nullable)
          - `name-last` (string, optional, nullable)
          - `name-full` (string, optional, nullable)
          - `titles` (list of string, optional)
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `result` (object, optional, nullable)
        - `name` (string, optional)
        - `aliases` (list of string, optional)
        - `description` (string, optional, nullable)
        - `legal-status` (string, optional, nullable)
        - `legal-entity-type` (string, optional)
        - `date-of-incorporation` (object, optional, nullable)
          - `granularity` (string, optional)
          - `day` (string, optional, nullable)
          - `month` (string, optional, nullable)
          - `year` (string, optional, nullable)
        - `industry-classifications` (list of object, optional)
          - `code` (string, optional)
          - `title` (string, optional)
          - `type` (string, optional)
        - `identifiers` (list of object, optional)
          - `state` (string, optional)
          - `country` (string, optional)
          - `issue-date` (date, optional)
          - `file-number` (string, optional)
          - `type` (string, optional)
          - `addresses` (list of object, optional)
            - `street-1` (string, optional)
            - `street-2` (string, optional, nullable)
            - `city` (string, optional)
            - `subdivision` (string, optional)
            - `postal-code` (string, optional)
            - `delivery-point-barcode` (string, optional, nullable)
            - `primary-number` (string, optional, nullable)
            - `street-name` (string, optional, nullable)
            - `latitude` (string, optional, nullable)
            - `longitude` (string, optional, nullable)
            - `precision` (string, optional, nullable)
            - `type` (string, optional)
          - `status` (string, optional)
        - `addresses` (list of object, optional)
          - `street-1` (string, optional)
          - `street-2` (string, optional, nullable)
          - `city` (string, optional)
          - `subdivision` (string, optional)
          - `postal-code` (string, optional)
        - `websites` (list of string, optional)
        - `phone-numbers` (list of string, optional)
        - `agents` (list of object, optional)
          - `name-full` (string, optional)
        - `officers` (list of object, optional)
          - `name-full` (string, optional)
          - `name-first` (string, optional, nullable)
          - `name-last` (string, optional, nullable)
          - `titles` (list of string, optional)
        - `headcount` (string, optional, nullable)
        - `sources` (list of object, optional)
          - `name` (string, optional)
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/business-watchlist` (Business Watchlist Report)
    - `attributes` (object, optional)
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `fitness-probity-list` (list of object, optional) — Detailed information about matches found on fitness and probity lists.
        - `name` (string, optional) — The name of the fitness and probity list.
        - `url` (string, optional) — A URL with more information about the list.
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `matched-lists` (list of string, optional) — A list of slugs identifying the lists on which matches were found.
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `sanction-list` (list of object, optional) — Detailed information about matches found on sanction lists.
        - `name` (string, optional) — The name of the sanction list.
        - `url` (string, optional) — A URL with more information about the list.
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
      - `warning-list` (list of object, optional) — Detailed information about matches found on warning lists.
        - `name` (string, optional) — The name of the warning list.
        - `url` (string, optional) — A URL with more information about the list.
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/crypto-address-watchlist` (Crypto Address Watchlist Report)
    - `attributes` (object, optional)
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `query` (object, optional)
        - `crypto-address` (string, optional)
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `result` (list of object, optional, nullable)
        - `name` (string, optional)
        - `url` (string, optional)
        - `list-type` (string, optional)
        - `slug` (string, optional)
        - `flag-code` (string, optional)
        - `entities` (list of object, optional)
          - `name` (string, optional)
          - `alias-type` (string, optional)
          - `birthdates` (list of object, optional)
            - `day` (string, optional)
            - `year` (string, optional)
            - `month` (string, optional)
            - `granularity` (string, optional)
          - `crypto-addresses` (list of object, optional)
            - `type` (string, optional)
            - `address` (string, optional)
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/email-address` (Email Address Report)
    - `attributes` (object, optional)
      - `age-estimated-13-plus` (boolean, optional, nullable) — Whether email address user is 13 or older
      - `age-estimated-16-plus` (boolean, optional, nullable) — Whether email address user is 16 or older
      - `age-estimated-18-plus` (boolean, optional, nullable) — Whether email address user is 18 or older
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `email-address` (string, optional) — The input email address of the search
      - `email-credentials-leaked` (boolean, optional, nullable) — Whether the email has ever been detected to have been leaked (Deprecated)
      - `email-credentials-leaked-recent` (boolean, optional, nullable) — Whether the email has been recently detected as leaked
      - `email-data-breached` (boolean, optional, nullable) — Whether the email was involved in a data breach (Deprecated)
      - `email-domain` (string, optional) — The domain of the email
      - `email-domain-age-days` (integer, optional, nullable) — The estimated age of the domain in days
      - `email-domain-exists` (boolean, optional, nullable) — Whether the domain of the email exists
      - `email-estimated-age-days` (integer, optional, nullable) — The estimated age of the email in days
      - `email-first-seen-days` (integer, optional, nullable) — How many days it has ben since the email was first seen in attack (Deprecated)
      - `email-is-blocklisted` (boolean, optional, nullable) — Whether the email appears on blocklists (Deprecated)
      - `email-is-deliverable` (boolean, optional, nullable) — Whether the email is deliverable
      - `email-is-disposable` (boolean, optional, nullable) — Whether the email is one that is disposable or temporary
      - `email-is-dmarc-enforced` (boolean, optional, nullable) — Whether DMARC is configured correctly and enforced (Deprecated)
      - `email-is-free-provider` (boolean, optional, nullable) — Whether the email was made with a free provider (Deprecated)
      - `email-is-spam` (boolean, optional, nullable) — Whether the email is spam or a spam trap
      - `email-is-spf-strict` (boolean, optional, nullable) — Whether there is a sufficiently strict SPF record (Deprecated)
      - `email-is-spoofable` (boolean, optional, nullable) — Whether the email can be spoofed. (E.G. not a strict SPF policy or DMARC not enforced. Deprecated)
      - `email-is-suspicious` (boolean, optional, nullable) — Whether the email is suspicious or risky
      - `email-is-valid-mx` (boolean, optional, nullable) — Whether the domain has a valid MX record
      - `email-last-seen-days` (integer, optional, nullable) — How many days it has been since the email was last seen (Deprecated)
      - `email-malicious-activity-detected` (boolean, optional, nullable) — Whether the email has ever been detected for suspected malicious activity (Deprecated)
      - `email-malicious-activity-detected-recent` (boolean, optional, nullable) — Whether the email has recently been detected for suspected malicious activity
      - `email-reference-count` (integer, optional, nullable) — The number of sources used to determine the reputation (Deprecated)
      - `email-reputation` (string, optional, nullable) — The reputation of the email provided Possible values: - high - medium - low Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
      - `email-domain-reputation` (string, optional, nullable, deprecated) — The reputation of the email domain provided (Deprecated) Possible values: - high - medium - low Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/phone-number` (Phone Risk Report)
    - `attributes` (object, optional)
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `phone-carrier` (string, optional, nullable)
      - `phone-city` (string, optional, nullable) — City associated with the phone number location.
      - `phone-country-code` (string, optional, nullable) — ISO 3166-1 alpha-2 country code associated with the phone number location.
      - `phone-number` (string, optional) — The input phone number of the search
      - `phone-risk-level` (string, optional, nullable) — Assessment of the phone number's risk (low - high)
      - `phone-risk-recommendation` (string, optional, nullable) — Possible values: - block - allow - flag Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `phone-risk-score` (integer, optional, nullable) — Risk score out of 1000
      - `phone-risk-sim-swap` (string, optional, nullable) — The risk of a fraudulent SIM swap Possible values: - very-low - low - medium - high - N/A Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `phone-subdivision` (string, optional, nullable) — State or region associated with the phone number location.
      - `phone-type` (string, optional, nullable) — Possible values: - FIXED_LINE - MOBILE - PREPAID - TOLL_FREE - VOIP - PAGER - PAYPHONE - INVALID - RESTRICTED_PREMIUM - PERSONAL - VOICEMAIL - OTHER Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/politically-exposed-person` (Politically Exposed Person Report)
    - `attributes` (object, optional)
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `ignore-list` (list of object, optional)
        - `ignored-at` (datetime, optional) — The datetime when the entry was ignored.
        - `run-history-completed-at` (datetime, optional) — The datetime when the run history was completed.
        - `match` (object, optional)
          - `entity-id` (string, optional) — The entity ID of the match.
          - `name` (string, optional) — The name of the match.
          - `birthdates` (list of date, optional) — The birthdates associated with the match.
          - `death-dates` (list of date, optional) — The death dates associated with the match, if applicable.
          - `locations` (list of string, optional) — The locations associated with the match.
          - `country` (string, optional) — The country associated with the match.
          - `sex` (string, optional) — The sex of the individual in the match.
          - `positions` (list of object, optional)
            - `pep-class` (string, optional) — The PEP class of the position.
            - `source-key` (string, optional) — The source key of the position.
            - `name` (string, optional) — The name of the position.
            - `topics` (list of string, optional) — The applicable categories of the position.
            - `start-date` (string, optional, nullable) — The start date of the position.
            - `end-date` (string, optional, nullable) — The end date of the position.
          - `associates` (list of object, optional)
            - `name` (string, optional) — The name of the associate.
            - `relationship` (string, optional) — The relationship of the associate to the individual.
          - `affiliations` (list of object, optional)
            - `source-key` (string, optional) — The source key of the affiliation.
            - `name` (string, optional) — The name of the affiliation.
          - `related-urls` (list of object, optional)
            - `source-key` (string, optional) — The source key for the URL.
            - `name` (string, optional) — The URL related to the match.
          - `images` (list of string, optional) — The URLs of images associated with the match.
          - `sources` (object, optional)
            - `url` (string, optional) — The URL of the source.
            - `name` (string, optional) — The name of the source.
            - `flag-code` (string, optional) — The flag code of the source country.
          - `match-types` (list of string, optional) — The types of matches found.
          - `pep-type` (string, optional) — The type of politically exposed person.
        - `user` (string, optional) — The user who added the entry to the ignore list.
        - `ignore-reason` (string, optional) — The reason why the entry was added to the ignore list.
        - `is-internal` (boolean, optional) — Indicates if the ignore list entry is internal.
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `query` (object, optional)
        - `name-first` (string, optional, nullable) — The input first name of the search individual
        - `name-middle` (string, optional, nullable) — The input middle name of the search individual
        - `name-last` (string, optional, nullable) — The input last name of the search individual
        - `term` (string, optional) — The input combined term used for searching (first + middle + last name). Either the name or the term fields are required.
        - `birthdate` (string, optional) — The input DOB in YYYY-MM-DD format
        - `country-code` (string, optional, nullable) — The input search country in alpha2 format
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `result` (list of object, optional, nullable)
        - `entity-id` (string, optional)
        - `name` (string, optional)
        - `birthdates` (list of date, optional)
        - `death-dates` (list of string, optional)
        - `locations` (list of string, optional)
        - `country` (string, optional)
        - `sex` (string, optional, nullable)
        - `topics` (list of string, optional) — The applicable categories of the PEP.
        - `positions` (list of object, optional)
          - `pep-class` (string, optional)
          - `source-key` (string, optional)
          - `name` (string, optional)
          - `topics` (list of string, optional) — The applicable categories of the position.
          - `start-date` (string, optional) — The start date of the position.
          - `end-date` (string, optional, nullable) — The end date of the position.
        - `associates` (list of object, optional)
          - `name` (string, optional) — The name of the associate.
          - `relationship` (string, optional) — The relationship of the associate to the individual.
          - `topics` (list of string, optional) — The applicable categories of the associate.
        - `affiliations` (list of object, optional)
          - `source-key` (string, optional)
          - `name` (string, optional)
        - `related-urls` (list of object, optional)
          - `source-key` (string, optional)
          - `name` (string, optional)
        - `images` (list of string, optional)
        - `sources` (map from string to object, optional) — A map of the sources that matched by entity
          - `url` (string, optional) — The URL of the source.
          - `name` (string, optional) — The name of the source.
          - `flag-code` (string, optional) — The flag code of the source country.
        - `match-types` (list of string, optional)
        - `pep-type` (string, optional, nullable)
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/profile` (Profile Report)
    - `attributes` (object, optional)
      - `address-city` (string, optional, nullable) — City of residence.
      - `address-postal-code` (string, optional, nullable) — ZIP or postal code.
      - `address-postal-code-abbr` (string, optional, nullable) — ZIP or postal code abbreviation (if applicable).
      - `address-street-1` (string, optional, nullable) — Primary street address.
      - `address-street-2` (string, optional, nullable) — Secondary street address (if any).
      - `address-subdivision` (string, optional, nullable) — State or subdivision of residence.
      - `address-subdivision-abbr` (string, optional, nullable) — State or subdivision abbreviation.
      - `birthdate` (date, optional, nullable) — Birthdate, must be in the format "YYYY-MM-DD".
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `identity-records` (list of object, optional) — Detailed identity records which passed matching logic, if available.
        - `names` (list of object, optional)
          - `name-full` (string, optional)
          - `name-first` (string, optional)
          - `name-middle` (string, optional)
          - `name-last` (string, optional)
        - `birthdates` (list of string, optional)
        - `addresses` (list of object, optional)
          - `country-code` (string, optional)
          - `street-1` (string, optional)
          - `street-2` (string, optional)
          - `city` (string, optional)
          - `postal-code` (string, optional)
          - `longitude` (double, optional)
          - `latitude` (double, optional)
          - `subdivision` (string, optional)
          - `date-first-seen` (string, optional)
          - `date-last-seen` (string, optional)
        - `social-security-numbers` (list of string, optional)
        - `phone-numbers` (list of string, optional)
        - `email-addresses` (list of string, optional)
        - `deceased` (boolean, optional)
        - `deceased-date` (string, optional)
        - `drivers-licenses` (list of object, optional)
          - `number` (string, optional)
          - `state` (string, optional)
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `omitted-identity-records` (list of object, optional) — Detailed identity records which did not pass matching logic, if available.
        - `names` (list of object, optional)
          - `name-full` (string, optional)
          - `name-first` (string, optional)
          - `name-middle` (string, optional)
          - `name-last` (string, optional)
        - `birthdates` (list of string, optional)
        - `addresses` (list of object, optional)
          - `country-code` (string, optional)
          - `street-1` (string, optional)
          - `street-2` (string, optional)
          - `city` (string, optional)
          - `postal-code` (string, optional)
          - `longitude` (double, optional)
          - `latitude` (double, optional)
          - `subdivision` (string, optional)
          - `date-first-seen` (string, optional)
          - `date-last-seen` (string, optional)
        - `social-security-numbers` (list of string, optional)
        - `phone-numbers` (list of string, optional)
        - `email-addresses` (list of string, optional)
        - `deceased` (boolean, optional)
        - `deceased-date` (string, optional)
        - `drivers-licenses` (list of object, optional)
          - `number` (string, optional)
          - `state` (string, optional)
      - `phone-number` (string, optional, nullable) — Phone number.
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `social-security-number` (string, optional, nullable) — Full social security number.
      - `social-security-number-last-4` (string, optional, nullable) — Last 4 digits of social security number.
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/profile-non-authoritative` (Profile Non-Authoritative Report)
    - `attributes` (object, optional)
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `query` (object, optional, nullable)
        - `name-first` (string, optional, nullable) — The input first name of the search individual
        - `name-middle` (string, optional, nullable) — The input middle name of the search individual
        - `name-last` (string, optional, nullable) — The input last name of the search individual
        - `address-city` (string, optional, nullable) — The locality of the search individual
        - `address-subdivision` (string, optional, nullable) — The subdivision of the search individual
        - `address-postal-code` (string, optional, nullable) — The postal code of the search individual
        - `address-street-1` (string, optional, nullable) — The street address of the search individual
        - `address-street-2` (string, optional, nullable) — The address line 2 of the search individual
        - `address-country-code` (string, optional, nullable) — The country code of the search individual
        - `email-address` (string, optional, nullable) — The email address of the search individual
        - `phone-number` (string, optional, nullable) — The phone number of the search individual
        - `birthdate` (string, optional, nullable) — Date of birth in YYYY-MM-DD format
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `result` (object, optional, nullable)
        - `name` (string, optional, nullable)
        - `birthdate` (string, optional, nullable) — Date of birth in YYYY-MM-DD format
        - `emails` (list of object, optional, nullable)
          - `address` (string, optional, nullable)
          - `type` (string, optional, nullable)
        - `phone-numbers` (list of string, optional, nullable)
        - `location` (object, optional, nullable)
          - `locality` (string, optional, nullable)
          - `region` (string, optional, nullable)
          - `country` (string, optional, nullable)
          - `continent` (string, optional, nullable)
          - `street-address` (string, optional, nullable)
          - `address-line-2` (string, optional, nullable)
          - `postal-code` (string, optional, nullable)
        - `education` (list of object, optional, nullable)
          - `start-date` (string, optional, nullable)
          - `end-date` (string, optional, nullable)
          - `school-name` (string, optional, nullable)
          - `school-type` (string, optional, nullable)
        - `experience` (list of object, optional, nullable)
          - `end-date` (string, optional, nullable)
          - `start-date` (string, optional, nullable)
          - `company-name` (string, optional, nullable)
          - `title-name` (string, optional, nullable)
        - `social-media-profiles` (list of object, optional, nullable)
          - `network` (string, optional)
          - `url` (string, optional, nullable)
          - `username` (string, optional, nullable)
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/integration/sentilink-scores` (SentiLink Scores Report)
    - `attributes` (object, optional)
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `query` (object, optional)
        - `birthdate` (date, optional) — Birthdate, must be in the format "YYYY-MM-DD".
        - `name-first` (string, optional) — Given or first name.
        - `name-last` (string, optional) — Family or last name.
        - `address-street-1` (string, optional) — Street name of residence address.
        - `address-city` (string, optional) — City of residence address. Not all international addresses use this attribute.
        - `address-subdivision` (string, optional) — State or subdivision of residence address. In the US, this should be the unabbreviated name. Not all international addresses use this attribute.
        - `address-postal-code` (string, optional) — ZIP or postal code of residence address. Not all international addresses use this attribute.
        - `address-country-code` (string, optional, nullable) — Country code of residence address.
        - `social-security-number` (string, optional) — Social security number
        - `user-id` (string, optional) — Reference ID of applicant
        - `phone-number` (string, optional, nullable) — Phone number.
        - `email-address` (string, optional, nullable) — Email address.
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `result` (object, optional)
        - `application-id` (string, optional)
        - `customer-id` (string, optional)
        - `environment` (string, optional)
        - `notes` (string, optional, nullable)
        - `scores` (list of object, optional)
          - `name` (string, optional)
          - `score` (integer, optional)
          - `version` (string, optional)
          - `reason-codes` (list of string, optional)
        - `status` (string, optional)
        - `transaction-id` (string, optional)
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/social-media` (Social Media Report)
    - `attributes` (object, optional)
      - `address-city` (string, optional, nullable)
      - `address-subdivision` (string, optional, nullable) — Sub-national subdivision such as a US state or a Canadian province
      - `birthdate` (string, optional) — Date of birth in YYYY-MM-DD format
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `email-address` (string, optional, nullable)
      - `facebook-id` (string, optional, nullable)
      - `facebook-url` (string, optional, nullable)
      - `facebook-username` (string, optional, nullable)
      - `github-url` (string, optional, nullable)
      - `github-username` (string, optional, nullable)
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `instagram-url` (string, optional, nullable)
      - `instagram-username` (string, optional, nullable)
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `linkedin-id` (string, optional, nullable)
      - `linkedin-url` (string, optional, nullable)
      - `linkedin-username` (string, optional, nullable)
      - `name-first` (string, optional, nullable)
      - `name-last` (string, optional, nullable)
      - `phone-number` (string, optional, nullable)
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
      - `twitter-url` (string, optional, nullable)
      - `twitter-username` (string, optional, nullable)
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/synthetic` (Synthetic Report)
    - `attributes` (object, optional)
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `has-match` (boolean, optional) — Indicates if the report matched.
      - `is-continuous` (boolean, optional) — Indicates if the report is recurring.
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report.
      - `sentilink-abuse-score` (integer, optional, nullable) — Sentilink abuse score.
      - `sentilink-first-party-synthetic-score` (integer, optional, nullable) — Sentilink first party synthetic score.
      - `sentilink-third-party-synthetic-score` (integer, optional, nullable) — Sentilink third party synthetic score.
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags associated with the report.
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `report/watchlist` (Watchlist Report)
    - `attributes` (object, optional)
      - `birthdate` (string, optional, nullable) — The input DOB in YYYY-MM-DD format
      - `completed-at` (string, optional, nullable) — The time the report completed processing in ISO 8601 format
      - `country-code` (string, optional, nullable) — The input search country in alpha2 format
      - `created-at` (string, optional) — The time the report was created in ISO 8601 format
      - `has-match` (boolean, optional) — Whether or not the report matched
      - `ignore-list` (list of object, optional)
        - `ignored-at` (datetime, optional)
        - `run-history-completed-at` (datetime, optional)
        - `match` (object, optional)
          - `name` (string, optional)
          - `url` (string, optional)
          - `list-type` (string, optional)
          - `list-types` (list of string, optional)
          - `slug` (string, optional)
          - `flag-code` (string, optional)
          - `entities` (list of object, optional)
            - `name` (string, optional)
            - `alias-type` (string, optional)
            - `birthdates` (list of object, optional)
            - `group-id` (string, optional)
        - `user` (string, optional)
        - `ignore-reason` (string, optional)
      - `is-continuous` (boolean, optional) — Whether or not this report has been run more than once
      - `is-recurring` (boolean, optional) — Whether or not this report is scheduled to run in the future
      - `matched-lists` (list of object, optional, nullable) — Lists that matched from the search input
        - `name` (string, optional)
        - `url` (string, optional)
        - `list-type` (string, optional)
        - `list-types` (list of string, optional)
        - `slug` (string, optional)
        - `flag-code` (string, optional)
        - `entities` (list of object, optional) — A matched person
          - `name` (string, optional)
          - `alias-type` (string, optional) — Possible values: - primary_name - aka Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
          - `birthdates` (list of object, optional) — The birthdate of the entity
            - `day` (string, optional)
            - `year` (string, optional)
            - `month` (string, optional)
            - `granularity` (string, optional) — Precision the birthday provided
      - `name-first` (string, optional, nullable) — The input first name of the search individual
      - `name-last` (string, optional, nullable) — The input last name of the search individual
      - `name-middle` (string, optional, nullable) — The input middle name of the search individual
      - `redacted-at` (string, optional, nullable) — The time the report was redacted in ISO 8601 format
      - `report-template-version-name` (string, optional) — The name of the report template version used for this report
      - `status` (string, optional) — The status of the report Possible values: - pending - ready - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `tags` (list of string, optional) — Tags on the report
      - `term` (string, optional, nullable) — The input combined term used for searching (first + middle + last name)
    - `id` (string, optional) — The ID of the report
    - `relationships` (object, optional) — Other Persona objects related to the report
      - `inquiry` (object, optional) — The inquiry linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `account` (object, optional) — The account linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `transaction` (object, optional) — The transaction linked to the report
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("transaction", optional)
      - `report-template` (object, optional) — The report template used to create this report
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
  - `type`: `selfie/profile-and-center` (selfie/profile-and-center)
    - `attributes` (object, optional)
      - `status` (string, optional) — Possible values: - initiated - submitted - processed - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `created-at` (datetime, optional)
      - `processed-at` (datetime, optional, nullable) — Timestamp when the Selfie finished processing. `null` until the Selfie reaches the `processed` or `errored` status.
    - `id` (string, optional) — Unique identifier for this Selfie object. Starts with `self_`.
    - `relationships` (object, optional)
      - `inquiry` (object, optional)
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
  - `type`: `selfie/center-only` (selfie/center-only)
    - `attributes` (object, optional)
      - `status` (string, optional) — Possible values: - initiated - submitted - processed - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `created-at` (datetime, optional)
      - `processed-at` (datetime, optional, nullable) — Timestamp when the Selfie finished processing. `null` until the Selfie reaches the `processed` or `errored` status.
    - `id` (string, optional) — Unique identifier for this Selfie object. Starts with `self_`.
    - `relationships` (object, optional)
      - `inquiry` (object, optional)
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
  - `type`: `selfie/configurable-poses` (selfie/configurable-poses)
    - `attributes` (object, optional)
      - `status` (string, optional) — Possible values: - initiated - submitted - processed - errored Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `created-at` (datetime, optional)
      - `processed-at` (datetime, optional, nullable) — Timestamp when the Selfie finished processing. `null` until the Selfie reaches the `processed` or `errored` status.
    - `id` (string, optional) — Unique identifier for this Selfie object. Starts with `self_`.
    - `relationships` (object, optional)
      - `inquiry` (object, optional)
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
  - `type`: `inquiry-session` (inquiry-session)
    - `attributes` (object, optional)
      - `status` (string, optional) — Possible values: - new - active - expired Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `created-at` (datetime, optional)
      - `started-at` (datetime, optional, nullable)
      - `expired-at` (datetime, optional, nullable)
      - `ip-address` (string, optional, nullable)
      - `user-agent` (string, optional, nullable)
      - `os-name` (string, optional, nullable)
      - `os-full-version` (string, optional, nullable)
      - `device-type` (string, optional, nullable)
      - `device-name` (string, optional, nullable)
      - `browser-name` (string, optional, nullable)
      - `browser-full-version` (string, optional, nullable)
      - `mobile-sdk-name` (string, optional, nullable)
      - `mobile-sdk-full-version` (string, optional, nullable)
      - `device-handoff-method` (string, optional, nullable)
      - `is-proxy` (boolean, optional, nullable)
      - `is-tor` (boolean, optional, nullable)
      - `is-datacenter` (boolean, optional, nullable)
      - `is-vpn` (boolean, optional, nullable)
      - `threat-level` (string, optional, nullable)
      - `country-code` (string, optional, nullable)
      - `country-name` (string, optional, nullable)
      - `region-code` (string, optional, nullable)
      - `region-name` (string, optional, nullable)
      - `latitude` (double, optional, nullable)
      - `longitude` (double, optional, nullable)
      - `gps-latitude` (double, optional, nullable)
      - `gps-longitude` (double, optional, nullable)
      - `gps-precision` (string, optional, nullable)
      - `ip-connection-type` (string, optional, nullable)
      - `ip-isp` (string, optional, nullable)
      - `network-organization` (string, optional, nullable)
    - `id` (string, optional)
    - `relationships` (object, optional)
      - `inquiry` (object, optional)
        - `data` (object, optional)
          - `type` ("inquiry", optional)
          - `id` (string, optional)
      - `device` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("device", optional)
          - `id` (string, optional)
      - `network` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("network", optional)
          - `id` (string, optional)
  - `type`: `transaction` (transaction)
    - `attributes` (object, optional)
      - `status` (string, optional)
      - `reference-id` (string, optional, nullable)
      - `fields` (map from string to any, optional) — JSON key-value pairs of field name to field value. Exact schema depends on the configuration of the Transaction Type for this Transaction. Keys in `fields` are **not** key inflected.
      - `tags` (list of string, optional)
      - `created-at` (datetime, optional)
      - `updated-at` (datetime, optional, nullable)
    - `id` (string, optional) — Unique identifier for this Transaction. Starts with `txn_`.
    - `relationships` (object, optional)
      - `reviewer` (object, optional) — The entity that reviewed the transaction
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `transaction-label` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction-label", optional)
          - `id` (string, optional) — Unique identifier for this Transaction Label. Starts with `txnl_`.
      - `transaction-type` (object, optional)
        - `data` (object, optional)
          - `type` ("transaction-type", optional)
          - `id` (string, optional) — Unique identifier for this Transaction Type. Starts with `txntp_`.
      - `related-objects` (object, optional) — Objects involved in this Transaction's related Workflow runs. Will include a maximum of 100 related objects.
        - `data` (list of object, optional)
          - `type` (string, optional)
          - `id` (string, optional) — Unique identifier for this object.
  - `type`: `verification/aamva` (AAMVA Verification)
    - `attributes` (object, optional)
      - `address-postal-code` (string, optional)
      - `birthdate` (date, optional) — Birthdate, must be in the format "YYYY-MM-DD".
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `expiration-date` (date, optional)
      - `identification-number` (string, optional)
      - `issue-date` (date, optional)
      - `issuing-authority` (string, optional)
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/bank-pennydrop` (Bank Pennydrop Verification)
    - `attributes` (object, optional)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `tags` (list of string, optional) — Tags on the verification
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/brand-asset` (Brand Asset Verification)
    - `attributes` (object, optional)
      - `business-name` (string, optional, nullable) — Name of the business associated with the brand asset.
      - `business-website` (string, optional, nullable) — Website URL associated with the brand asset.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/business-website` (Business Website Verification)
    - `attributes` (object, optional)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `extracted-identity` (object, optional) — Identity details extracted from the website. Each list is null when the verification has not finished processing or has been redacted.
        - `business-names` (list of object, optional, nullable) — Business names extracted from the website.
          - `value` (string, optional, nullable) — The extracted value — for example a business name, address, phone number, or email address.
          - `source` (string, optional, nullable) — The URL of the website page the value was extracted from.
        - `addresses` (list of object, optional, nullable) — Addresses extracted from the website.
          - `value` (string, optional, nullable) — The extracted value — for example a business name, address, phone number, or email address.
          - `source` (string, optional, nullable) — The URL of the website page the value was extracted from.
        - `phone-numbers` (list of object, optional, nullable) — Phone numbers extracted from the website.
          - `value` (string, optional, nullable) — The extracted value — for example a business name, address, phone number, or email address.
          - `source` (string, optional, nullable) — The URL of the website page the value was extracted from.
        - `emails` (list of object, optional, nullable) — Email addresses extracted from the website.
          - `value` (string, optional, nullable) — The extracted value — for example a business name, address, phone number, or email address.
          - `source` (string, optional, nullable) — The URL of the website page the value was extracted from.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
      - `website-url` (string, optional, nullable) — The website URL being verified.
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/certificate-korea` (Certificate Korea Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable) — Birthdate in YYYY-MM-DD format.
      - `certificate-type` (string, optional, nullable) — The type of certificate used for verification.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `identification-number` (string, optional, nullable)
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/credit-card` (Credit Card Verification)
    - `attributes` (object, optional)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `tags` (list of string, optional) — Tags on the verification
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/crypto-wallet` (Crypto Wallet Verification)
    - `attributes` (object, optional)
      - `chain-id` (string, optional, nullable) — Blockchain network identifier extracted from the signed authentication message (CAIP-2, e.g. "eip155:1" for Ethereum mainnet).
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `expected-address` (string, optional, nullable) — Optional address the signed wallet address is compared against.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
      - `wallet-address` (string, optional, nullable) — Wallet address extracted from the signed authentication message.
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/database` (Database Verification)
    - `attributes` (object, optional)
      - `address-city` (string, optional, nullable) — City of residence address. Not all international addresses use this attribute.
      - `address-postal-code` (string, optional, nullable) — ZIP or postal code of residence address. Not all international addresses use this attribute.
      - `address-street-1` (string, optional, nullable) — Street name of residence address.
      - `address-street-2` (string, optional, nullable) — Extension of residence address, usually apartment or suite number.
      - `address-subdivision` (string, optional, nullable) — State or subdivision of residence address. In the US, this should be the unabbreviated name. Not all international addresses use this attribute.
      - `birthdate` (date, optional, nullable) — Birthdate, must be in the format "YYYY-MM-DD".
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `document-expiry-date` (string, optional, nullable)
      - `document-issuing-date` (string, optional, nullable)
      - `document-issuing-subdivision` (string, optional, nullable)
      - `document-number` (string, optional, nullable)
      - `email-address` (string, optional, nullable) — Email address.
      - `identification-number` (string, optional, nullable)
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `name-middle` (string, optional, nullable) — Middle name.
      - `normalized-address-city` (string, optional, nullable) — Normalized city of residence address. Not all international addresses use this attribute.
      - `normalized-address-postal-code` (string, optional, nullable) — Normalized ZIP or postal code of residence address. Not all international addresses use this attribute.
      - `normalized-address-street-1` (string, optional, nullable) — Normalized street name of residence address.
      - `normalized-address-street-2` (string, optional, nullable) — Normalized extension of residence address, usually apartment or suite number.
      - `normalized-address-subdivision` (string, optional, nullable) — Normalized state or subdivision of residence address. In the US, this should be the abbreviated name. Not all international addresses use this attribute.
      - `phone-number` (string, optional, nullable) — Phone number.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/database-aadhaar` (Database Aadhaar Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable) — Birthdate in YYYY-MM-DD format.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/database-business` (Database Business Verification)
    - `attributes` (object, optional)
      - `address-city` (string, optional, nullable) — City of business address. Not all international addresses use this attribute.
      - `address-country-code` (string, optional) — Country code of the business address.
      - `address-postal-code` (string, optional, nullable) — ZIP or postal code of residence address. Not all international addresses use this attribute.
      - `address-street-1` (string, optional, nullable) — Street name of business address.
      - `address-street-2` (string, optional, nullable) — Extension of business address, usually apartment or suite number.
      - `address-subdivision` (string, optional, nullable) — State or subdivision of business address. In the US, this should be the abbreviated name. Not all international addresses use this attribute.
      - `birthdate` (date, optional, nullable) — Birthdate, must be in the format "YYYY-MM-DD".
      - `business-name` (string, optional) — Name of the business
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `email-address` (string, optional, nullable) — Email address.
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `name-middle` (string, optional, nullable) — Middle name.
      - `phone-number` (string, optional, nullable) — Phone number.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `registration-number` (string, optional, nullable) — Registration number of the business
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/database-business-footprint` (Database Business Footprint Verification)
    - `attributes` (object, optional)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `tags` (list of string, optional) — Tags on the verification
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/database-ecbsv` (eCBSV Database Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable) — Birthdate of the individual
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `email-address` (string, optional, nullable) — Email address of the individual.
      - `identification-number` (string, optional, nullable) — Social Security Number of the individual.
      - `name-first` (string, optional, nullable) — First name of the individual.
      - `name-last` (string, optional, nullable) — Last name of the individual.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `signature-ip` (string, optional, nullable) — IP address of the individual
      - `signature-timestamp` (datetime, optional, nullable) — Timestamp of the signature
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/database-phone-carrier` (Phone Carrier Database Verification)
    - `attributes` (object, optional)
      - `address-city` (string, optional, nullable) — City of residence address. Not all international addresses use this attribute.
      - `address-postal-code` (string, optional, nullable) — ZIP or postal code of residence address. Not all international addresses use this attribute.
      - `address-street-1` (string, optional, nullable) — Street name of residence address.
      - `address-street-2` (string, optional, nullable) — Extension of residence address, usually apartment or suite number.
      - `address-subdivision` (string, optional, nullable) — State or subdivision of residence address. In the US, this should be the unabbreviated name. Not all international addresses use this attribute.
      - `birthdate` (date, optional, nullable) — Birthdate in the format "YYYY-MM-DD".
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `phone-number` (string, optional, nullable) — Phone number.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/database-serpro` (Serpro Database Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable) — Birthdate of the individual.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `cpf` (string, optional) — The Cadastro de Pessoas Físicas for the individual.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `name-first` (string, optional) — First name of the individual.
      - `name-full` (string, optional) — Full name of the individual.
      - `name-last` (string, optional) — Last name of the individual.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `selfie` (object, optional) — The selfie linked to the Verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` (string, optional) — Possible values: - selfie/profile-and-center - selfie/center-only - selfie/configurable-poses Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
  - `type`: `verification/database-standard` (Standard Database Verification)
    - `attributes` (object, optional)
      - `address-city` (string, optional, nullable) — City of residence address. Not all international addresses use this attribute.
      - `address-postal-code` (string, optional, nullable) — ZIP or postal code of residence address. Not all international addresses use this attribute.
      - `address-street-1` (string, optional, nullable) — Street name of residence address.
      - `address-street-2` (string, optional, nullable) — Extension of residence address, usually apartment or suite number.
      - `address-subdivision` (string, optional, nullable) — State or subdivision of residence address. In the US, this should be the unabbreviated name. Not all international addresses use this attribute.
      - `birthdate` (date, optional, nullable) — Birthdate, must be in the format "YYYY-MM-DD".
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `email-address` (string, optional, nullable) — Email address.
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `name-middle` (string, optional, nullable) — Middle name.
      - `normalized-address-city` (string, optional)
      - `normalized-address-postal-code` (string, optional)
      - `normalized-address-street-1` (string, optional)
      - `normalized-address-street-2` (string, optional)
      - `normalized-address-subdivision` (string, optional)
      - `phone-number` (string, optional, nullable) — Phone number.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional)
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/database-tin` (TIN Database Verification)
    - `attributes` (object, optional)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `name-business` (string, optional, nullable)
      - `name-first` (string, optional, nullable)
      - `name-last` (string, optional, nullable)
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
      - `tin` (string, optional)
      - `tin-type` (string, optional, nullable)
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/database-vat-number` (Database VAT Number Verification)
    - `attributes` (object, optional)
      - `address-city` (string, optional, nullable)
      - `address-postal-code` (string, optional, nullable)
      - `address-street-1` (string, optional, nullable) — Street name of business address.
      - `address-street-2` (string, optional, nullable) — Extension of business address.
      - `address-subdivision` (string, optional, nullable)
      - `business-name` (string, optional, nullable) — Name of the business as supplied for verification.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `registered-address-city` (string, optional, nullable)
      - `registered-address-country-code` (string, optional, nullable)
      - `registered-address-postal-code` (string, optional, nullable)
      - `registered-address-street-1` (string, optional, nullable)
      - `registered-address-street-2` (string, optional, nullable)
      - `registered-address-subdivision` (string, optional, nullable)
      - `registered-business-name` (string, optional, nullable) — Business name as returned by the registered VAT record.
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
      - `vat-number` (string, optional, nullable) — The VAT number being verified.
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-connect-id` (Digital ID Connect ID Verification)
    - `attributes` (object, optional)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `tags` (list of string, optional) — Tags on the verification
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-e-do-app` (Digital ID e-do App Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable) — Birthdate in YYYY-MM-DD format.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `identification-number` (string, optional, nullable)
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `response-country` (string, optional, nullable) — ISO 3166-1 alpha 2 country code returned by the provider.
      - `response-status` (string, optional, nullable) — Provider-reported status of the verification.
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-finnish-trust-network` (Digital ID Finnish Trust Network Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable) — Birthdate in YYYY-MM-DD format.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `identification-number` (string, optional, nullable)
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `response-country` (string, optional, nullable) — ISO 3166-1 alpha 2 country code returned by the provider.
      - `response-status` (string, optional, nullable) — Provider-reported status of the verification.
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-france-identite` (Digital ID France Identite Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable) — Birthdate in YYYY-MM-DD format.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `identification-number` (string, optional, nullable)
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `response-country` (string, optional, nullable) — ISO 3166-1 alpha 2 country code returned by the provider.
      - `response-status` (string, optional, nullable) — Provider-reported status of the verification.
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-generic` (Digital ID Generic Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable) — Birthdate in YYYY-MM-DD format.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `identification-number` (string, optional, nullable)
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `response-country` (string, optional, nullable) — ISO 3166-1 alpha 2 country code returned by the provider.
      - `response-status` (string, optional, nullable) — Provider-reported status of the verification.
      - `selected-country-code` (string, optional, nullable) — The country selected by the end user for verification.
      - `selected-digital-id-type` (string, optional, nullable) — The digital ID type selected by the end user.
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-idin` (Digital ID iDIN Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable) — Birthdate in YYYY-MM-DD format.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `identification-number` (string, optional, nullable)
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `response-country` (string, optional, nullable) — ISO 3166-1 alpha 2 country code returned by the provider.
      - `response-status` (string, optional, nullable) — Provider-reported status of the verification.
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-its-me` (Digital ID itsme Verification)
    - `attributes` (object, optional)
      - `address` (string, optional, nullable) — Registered address as returned by itsme.
      - `birth-place` (string, optional, nullable)
      - `birthdate` (date, optional, nullable)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `document-number` (string, optional, nullable)
      - `email` (string, optional, nullable)
      - `gender` (string, optional, nullable)
      - `id-expiry-date` (date, optional, nullable)
      - `id-picture` (string, optional, nullable) — Encoded portrait image returned by the provider.
      - `identification-number` (string, optional, nullable)
      - `language` (string, optional, nullable)
      - `name-first` (string, optional, nullable)
      - `name-last` (string, optional, nullable)
      - `nationality` (string, optional, nullable)
      - `phone` (string, optional, nullable)
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `response-country` (string, optional, nullable)
      - `response-status` (string, optional, nullable)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-kcb-credit-card` (Digital ID KCB Credit Card Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `ci` (string, optional, nullable) — Connecting Information (Korean unique identifier).
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `di` (string, optional, nullable) — Duplication Information (Korean per-service identifier).
      - `name-full` (string, optional, nullable) — Full name returned by the provider.
      - `native-foreigner-code` (string, optional, nullable)
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `sex` (string, optional, nullable)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-mit-id` (Digital ID MitID Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable) — Birthdate in YYYY-MM-DD format.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `identification-number` (string, optional, nullable)
      - `level-of-assurance` (string, optional, nullable) — The level of assurance reported by MitID for this verification.
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `response-country` (string, optional, nullable) — ISO 3166-1 alpha 2 country code returned by the provider.
      - `response-status` (string, optional, nullable) — Provider-reported status of the verification.
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-one-id` (Digital ID One ID Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable) — Birthdate in YYYY-MM-DD format.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `identification-number` (string, optional, nullable)
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `response-country` (string, optional, nullable) — ISO 3166-1 alpha 2 country code returned by the provider.
      - `response-status` (string, optional, nullable) — Provider-reported status of the verification.
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-philsys` (Digital ID PhilSys Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `issue-date` (date, optional, nullable)
      - `issuer` (string, optional, nullable)
      - `name-first` (string, optional, nullable)
      - `name-last` (string, optional, nullable)
      - `name-middle` (string, optional, nullable)
      - `pcn` (string, optional, nullable) — PhilSys Card Number.
      - `place-of-birth` (string, optional, nullable)
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `sex` (string, optional, nullable)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `suffix` (string, optional, nullable)
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-serpro` (Digital ID SERPRO Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `cpf` (string, optional, nullable) — Brazilian CPF identifier.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `expiration-date` (date, optional, nullable)
      - `identification-number` (string, optional, nullable)
      - `issue-date` (date, optional, nullable)
      - `name` (string, optional, nullable)
      - `qr-code-attachment` (object, optional, nullable) — QR code attachment returned by SERPRO, if present.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `selfie-compare-image-url` (string, optional, nullable) — URL of the selfie comparison image, if present.
      - `selfie-comparison-error-code` (string, optional, nullable)
      - `selfie-confidence-level` (string, optional, nullable)
      - `selfie-similarity-score` (double, optional, nullable)
      - `serpro-selfie-available` (boolean, optional, nullable)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-singpass` (Digital ID Singpass Verification)
    - `attributes` (object, optional)
      - `address-country-code` (string, optional, nullable)
      - `address-country-description` (string, optional, nullable) — The country name of the individual's registered address as described by Singpass. Singpass codes follow ICA's legacy list rather than ISO 3166-1, so this description is the only reliable source for the country name.
      - `address-postal-code` (string, optional, nullable)
      - `address-street-1` (string, optional, nullable)
      - `address-street-2` (string, optional, nullable)
      - `alias-name` (string, optional, nullable)
      - `birth-country` (string, optional, nullable)
      - `birth-country-description` (string, optional, nullable) — The name of the individual's country of birth as described by Singpass. Singpass codes follow ICA's legacy list rather than ISO 3166-1, so this description is the only reliable source for the country name.
      - `birthdate` (date, optional, nullable)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `hanyu-pinyin-alias-name` (string, optional, nullable)
      - `hanyu-pinyin-name` (string, optional, nullable)
      - `identity-coi` (string, optional, nullable) — Country of issue for the identity document.
      - `identity-number` (string, optional, nullable)
      - `married-name` (string, optional, nullable)
      - `name` (string, optional, nullable)
      - `nationality` (string, optional, nullable)
      - `nationality-description` (string, optional, nullable) — The individual's nationality as described by Singpass. Singpass codes follow ICA's legacy list rather than ISO 3166-1, so this description is the only reliable source for the readable value.
      - `pass-expiry-date` (date, optional, nullable)
      - `pass-status` (string, optional, nullable)
      - `pass-type` (string, optional, nullable) — Pass type for foreign residents.
      - `race` (string, optional, nullable)
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `residential-status` (string, optional, nullable)
      - `secondary-race` (string, optional, nullable)
      - `sex` (string, optional, nullable)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-swedish-bank-id` (Digital ID Swedish BankID Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable) — Birthdate in YYYY-MM-DD format.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `identification-number` (string, optional, nullable)
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `response-country` (string, optional, nullable) — ISO 3166-1 alpha 2 country code returned by the provider.
      - `response-status` (string, optional, nullable) — Provider-reported status of the verification.
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-uk-sharecode` (Digital ID UK Sharecode Verification)
    - `attributes` (object, optional)
      - `birthdate` (date, optional, nullable)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `immigration-status` (string, optional, nullable)
      - `name-full` (string, optional, nullable) — Full name returned by the provider.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `reference-number` (string, optional, nullable)
      - `sharecode` (string, optional, nullable) — The UK share code used for verification.
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
      - `valid-from-date` (date, optional, nullable) — Date from which the immigration status is valid.
      - `valid-until-date` (date, optional, nullable) — Date until which the immigration status is valid.
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/digital-id-world-id` (Digital ID World ID Verification)
    - `attributes` (object, optional)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `tags` (list of string, optional) — Tags on the verification
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/document` (Document Verification)
    - `attributes` (object, optional)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `document-type` (string, optional, nullable) — Document classification assignment based on document content.
      - `extraction-responses` (list of object, optional, nullable) — A list of extractions resulting from processing the uploaded documents corresponding to the document's extraction configuration.
        - `extraction-type` (string, optional)
        - `field-name` (string, optional)
        - `structured-results` (list of map from string to any, optional) — A list of structured AI extraction results with locations stripped. Values are recursive — objects contain nested structured results — but bounding-box location data is omitted from the API response.
        - `results` (list of object, optional) — A list of objects containing the actual value extracted and additional information relevant to the extraction result.
          - `value` (string, optional)
          - `page` (integer, optional) — The page number the extraction result is detected. Page is 1-indexed.
          - `match-level` (string, optional) — If extraction-type is guided, match-level describes the degree in which the extracted value is similar to the source value. Otherwise the match-level is full.
          - `metadata` (object, optional, nullable) — This is a free-form object containing potentially helpful metadata on the extraction result.
      - `fields` (object, optional) — JSON key-value pairs of field name to field value.
      - `files` (list of object, optional) — The files uploaded to the associated document for processing.
        - `filename` (string, optional)
        - `url` (string, optional)
        - `byte-size` (integer, optional)
      - `files-normalized` (list of object, optional)
        - `filename` (string, optional)
        - `url` (string, optional)
        - `byte-size` (integer, optional)
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `document` (object, optional)
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
  - `type`: `verification/email-address` (Email Address Verification)
    - `attributes` (object, optional)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `confirmation-code` (string, optional)
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `email-address` (string, optional, nullable)
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/government-id` (Government ID Verification)
    - `attributes` (object, optional)
      - `address-city` (string, optional, nullable) — City of residence address. Not all international addresses use this attribute.
      - `address-postal-code` (string, optional, nullable) — ZIP or postal code of residence address. Not all international addresses use this attribute.
      - `address-street-1` (string, optional, nullable) — Street name of residence address.
      - `address-street-2` (string, optional, nullable) — Extension of residence address, usually apartment or suite number.
      - `address-subdivision` (string, optional, nullable) — State or subdivision of residence address. In the US, this should be the unabbreviated name. Not all international addresses use this attribute.
      - `back-photo-url` (string, optional, nullable)
      - `birthdate` (string, optional, nullable)
      - `birthplace` (string, optional, nullable)
      - `capture-method` (string, optional, nullable)
      - `capture-methods` (object, optional, nullable) — Capture method for each side of the ID, keyed by side.
        - `front` (string, optional, nullable)
        - `back` (string, optional, nullable)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `designations` (list of any, optional, nullable)
      - `document-number` (string, optional, nullable)
      - `endorsements` (string, optional, nullable)
      - `entity-confidence-reasons` (list of string, optional)
      - `entity-confidence-score` (double, optional, nullable, default: 0)
      - `expiration-date` (string, optional, nullable)
      - `from-reusable-persona` (boolean, optional)
      - `front-photo-url` (string, optional, nullable)
      - `height` (string, optional, nullable)
      - `id-class` (string, optional, nullable)
      - `identification-number` (string, optional, nullable)
      - `issue-date` (string, optional, nullable)
      - `issuing-authority` (string, optional, nullable)
      - `issuing-subdivision` (string, optional, nullable)
      - `name-first` (string, optional, nullable)
      - `name-last` (string, optional, nullable)
      - `name-middle` (string, optional, nullable)
      - `name-suffix` (string, optional, nullable)
      - `nationality` (string, optional, nullable)
      - `native-name-first` (string, optional, nullable) — Native script given or first name.
      - `native-name-last` (string, optional, nullable) — Native script family or last name.
      - `native-name-middle` (string, optional, nullable) — Native script middle name.
      - `native-name-title` (string, optional, nullable) — Native script name title or prefix.
      - `photo-urls` (list of object, optional, nullable)
        - `byte-size` (integer, optional, default: 0)
        - `filename` (string, optional)
        - `normalized-url` (string, optional)
        - `original-urls` (list of string, optional)
        - `page` (string, optional)
        - `url` (string, optional)
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `restrictions` (string, optional, nullable)
      - `selfie-photo` (object, optional, nullable)
        - `byte-size` (integer, optional, default: 0)
        - `filename` (string, optional)
        - `url` (string, optional)
      - `selfie-photo-url` (string, optional, nullable)
      - `sex` (string, optional, nullable)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
      - `vehicle-class` (string, optional, nullable)
      - `vehicle-classes` (map from string to object, optional, nullable) — Issue and expiration dates for each vehicle class extracted from a driving license (e.g. European licenses). Keys are the class identifiers exactly as they appear on the license, including national classes.
        - `issue-date` (string, optional, nullable)
        - `expiration-date` (string, optional, nullable)
      - `video-url` (string, optional, nullable)
      - `visa-status` (string, optional, nullable)
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `document` (object, optional)
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
  - `type`: `verification/government-id-nfc` (Government ID NFC Verification)
    - `attributes` (object, optional)
      - `address-city` (string, optional, nullable) — City of residence address. Not all international addresses use this attribute.
      - `address-postal-code` (string, optional, nullable) — ZIP or postal code of residence address. Not all international addresses use this attribute.
      - `address-street-1` (string, optional, nullable) — Street name of residence address.
      - `address-street-2` (string, optional, nullable) — Extension of residence address, usually apartment or suite number.
      - `address-subdivision` (string, optional, nullable) — State or subdivision of residence address. In the US, this should be the unabbreviated name. Not all international addresses use this attribute.
      - `birthdate` (string, optional, nullable)
      - `checks` (list of object, optional)
        - `metadata` (map from string to any, optional)
        - `name` (string, optional)
        - `reasons` (list of string, optional)
        - `status` (string, optional)
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `expiration-date` (string, optional, nullable)
      - `id-class` (string, optional, nullable)
      - `identification-number` (string, optional, nullable)
      - `name-first` (string, optional)
      - `name-last` (string, optional)
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `selfie-photo` (object, optional, nullable)
        - `byte-size` (integer, optional, default: 0)
        - `url` (string, optional)
      - `selfie-photo-url` (string, optional, nullable)
      - `sex` (string, optional, nullable)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
      - `document` (object, optional)
        - `data` (object, optional)
          - `id` (string, optional)
          - `type` (string, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
  - `type`: `verification/jp-my-number-nfc-scan` (JP My Number NFC Scan Verification)
    - `attributes` (object, optional)
      - `address` (string, optional, nullable)
      - `birthdate` (date, optional, nullable)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `expiration-date` (date, optional, nullable)
      - `identification-class` (string, optional, nullable) — Persona-standard document class of the scanned card, derived from the scan operation (e.g. "myn" for My Number card, "dl" for driver's license, "rp" for residence card).
      - `identification-number` (string, optional, nullable) — Identification number on the scanned card — the driver's license number (DL operations) or residence card number (res_read).
      - `kana-name` (string, optional, nullable)
      - `name-full` (string, optional, nullable)
      - `operation` (string, optional, nullable) — The operation performed against the NFC card.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `selfie-photo` (object, optional, nullable) — Portrait photo of the bearer extracted from the NFC card, when present.
        - `byte-size` (integer, optional, default: 0)
        - `url` (string, optional)
      - `sex` (string, optional, nullable) — Extracted sex designation from the scanned card.
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
      - `vehicle-classes` (map from string to object, optional, nullable) — Vehicle classes the bearer is licensed for, extracted from a scanned driver's license.
        - `acquisition-date` (date, optional, nullable)
      - `face-image` (object, optional, nullable, deprecated) — Face image extracted from the NFC card, when present. Deprecated in favor of `selfie-photo`.
      - `gender` (string, optional, nullable, deprecated) — Deprecated in favor of `sex`
      - `license-number` (string, optional, nullable, deprecated) — Identification number scanned from drivers license. Deprecated in favor of identification-number.
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/mdoc` (mDoc Verification)
    - `attributes` (object, optional)
      - `address-city` (string, optional, nullable) — City of residence address.
      - `address-country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code of the residence address.
      - `address-postal-code` (string, optional, nullable) — ZIP or postal code of residence address.
      - `address-state` (string, optional, nullable) — State or subdivision of residence address.
      - `address-street` (string, optional, nullable) — Street address of residence.
      - `age-in-years` (integer, optional, nullable) — Age of the holder.
      - `birthdate` (string, optional, nullable) — Date of birth.
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `expiration-date` (string, optional, nullable) — The expiration date of the document.
      - `identification-number` (string, optional, nullable) — The document or identification number.
      - `issuing-authority` (string, optional, nullable) — The authority that issued the document.
      - `issuing-country` (string, optional, nullable) — ISO 3166-1 alpha 2 country code of the issuing country.
      - `issuing-jurisdiction` (string, optional, nullable) — The jurisdiction that issued the document.
      - `meets-minimum-age` (boolean, optional, nullable) — Whether the holder meets a minimum age requirement.
      - `name-first` (string, optional, nullable) — Given or first name.
      - `name-last` (string, optional, nullable) — Family or last name.
      - `nationality` (string, optional, nullable) — Nationality of the holder.
      - `portrait-photo` (object, optional, nullable) — The portrait photo extracted from the mobile document credential.
        - `byte-size` (integer, optional, default: 0)
        - `url` (string, optional)
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
      - `validated-issuer-key` (string, optional, nullable) — The trusted organization that issued the document credentials.
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/persona-fff-inquiry` (Persona FFF Inquiry Verification)
    - `attributes` (object, optional)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `tags` (list of string, optional) — Tags on the verification
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/phone-number` (Phone Number Verification)
    - `attributes` (object, optional)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `confirmation-code` (string, optional)
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `metadata` (object, optional)
        - `telesign-risk-score` (integer, optional)
      - `phone-number` (string, optional)
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/phone-number-silent-network-authentication` (Phone Number Silent Network Authentication Verification)
    - `attributes` (object, optional)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `phone-number` (string, optional, nullable) — The phone number being verified.
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/qes-infocert` (QES InfoCert Verification)
    - `attributes` (object, optional)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
      - `tentative-sub-state` (string, optional, nullable) — An InfoCert-specific sub-state describing why the verification is in a tentative status. Only populated when the verification status is `tentatively_passed` or `tentatively_failed`.
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/selfie` (Selfie Verification)
    - `attributes` (object, optional)
      - `capture-method` (string, optional, nullable) — Possible values: - photo - video Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `center-photo-face-coordinates` (object, optional, nullable)
        - `top-left` (list of double, optional)
        - `top-right` (list of double, optional)
        - `bottom-left` (list of double, optional)
        - `bottom-right` (list of double, optional)
      - `center-photo-url` (string, optional, nullable)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `document-similarity-score` (double, optional, nullable)
      - `entity-confidence-reasons` (list of string, optional)
      - `from-reusable-persona` (boolean, optional)
      - `left-photo-url` (string, optional, nullable)
      - `photo-urls` (list of object, optional)
        - `byte-size` (integer, optional, default: 0)
        - `filename` (string, optional)
        - `page` (string, optional) — Possible values: - left_photo - center_photo - right_photo Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `url` (string, optional)
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `right-photo-url` (string, optional, nullable)
      - `selfie-similarity-score-left` (double, optional, nullable)
      - `selfie-similarity-score-right` (double, optional, nullable)
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
      - `video-url` (string, optional, nullable)
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `verification/verifiable-credential` (Verifiable Credential Verification)
    - `attributes` (object, optional)
      - `checks` (list of object, optional)
        - `name` (string, optional)
        - `status` (string, optional) — Possible values: - passed - failed - not_applicable Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `reasons` (list of string, optional) — If applicable, reasons are the list of reasons explaining why the check failed or is not applicable. For some checks, `reasons` is the primary signal carrying the underlying detection results. For example, `business_website_malicious_website_detection` surfaces its IPQS and Google Web Risk signals here (e.g. `malware`, `phishing`, `spam-source`) rather than in `metadata`.
        - `requirement` (string, optional) — Possible values: - required - not_required - requires_retry Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
        - `metadata` (map from string to any, optional) — This is a free-form object containing relevant metadata to the processing and result of the check.
      - `completed-at` (datetime, optional, nullable) — The time the verification was completed in ISO 8601 format
      - `completed-at-ts` (integer, optional, nullable) — The time the verification was completed in Unix timestamp format
      - `country-code` (string, optional, nullable) — ISO 3166-1 alpha 2 country code.
      - `created-at` (datetime, optional) — The time the verification was created in ISO 8601 format
      - `created-at-ts` (integer, optional) — The time the verification was created in Unix timestamp format
      - `redacted-at` (datetime, optional, nullable) — The time the verification was redacted in ISO 8601 format
      - `selected-credential-expiration-date` (datetime, optional, nullable) — Expiration date of the selected credential.
      - `selected-credential-issuance-date` (datetime, optional, nullable) — Issuance date of the selected credential.
      - `selected-credential-issuer` (string, optional, nullable) — The issuer of the credential selected for verification.
      - `selected-credential-types` (list of string, optional, nullable) — The list of credential types of the selected credential.
      - `status` (string, optional) — The status of the verification Possible values: - initiated - submitted - tentatively_passed (only for `verification/document` and `verification/qes-infocert`) - tentatively_failed (only for `verification/database-business` and `verification/database-business-footprint`) - passed - failed - requires_retry - skipped - canceled - confirmed (only for `verification/email-address` and `verification/phone-number`) Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `submitted-at` (datetime, optional, nullable) — The time the verification was submitted in ISO 8601 format
      - `submitted-at-ts` (integer, optional, nullable) — The time the verification was submitted in Unix timestamp format
      - `tags` (list of string, optional) — Tags on the verification
    - `id` (string, optional) — The token of the verification
    - `relationships` (object, optional)
      - `inquiry` (object, optional) — The inquiry linked to the verification
        - `data` (object, optional, nullable)
          - `id` (string, optional)
          - `type` ("inquiry", optional)
      - `template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("template", optional)
          - `id` (string, optional)
      - `inquiry-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template-version", optional)
          - `id` (string, optional)
      - `inquiry-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("inquiry-template", optional)
          - `id` (string, optional)
      - `transaction` (object, optional)
        - `data` (object, optional, nullable)
          - `type` ("transaction", optional)
          - `id` (string, optional)
      - `verification-template` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `verification-template-version` (object, optional)
        - `data` (object, optional, nullable)
          - `type` (string, optional)
          - `id` (string, optional)
      - `accounts` (object, optional)
        - `data` (list of object, optional)
          - `id` (string, optional)
          - `type` ("account", optional)
  - `type`: `workflow` (workflow)
    - `attributes` (object, optional)
      - `status` (string, optional) — The status of the Workflow Possible values: - paused - running - archived Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
      - `name` (string, optional)
      - `created-at` (datetime, optional)
    - `id` (string, optional)
    - `relationships` (object, optional)
      - `latest-published-version` (object, optional) — latest published version
        - `data` (object, optional)
          - `type` ("workflow-version", optional)
          - `id` (string, optional)
      - `active-deployment` (object, optional) — latest active deployment
        - `data` (object, optional, nullable) — A Workflow Deployment object
          - `type` ("workflow-deployment", optional)
          - `id` (string, optional)
          - `attributes` (object, optional)
            - `status` (string, optional) — The status of the Workflow Deployment Possible values: - active - inactive Do not assume this is a static enumeration; Persona may add new values in the future without a versioned update.
            - `configuration` (object, optional) — The deployment configuration containing version information
            - `created-at` (datetime, optional)
            - `updated-at` (datetime, optional)
  - `type`: `workflow-run` (workflow-run)
    - `attributes` (object, optional)
      - `completed-at` (datetime, optional, nullable)
      - `created-at` (datetime, optional)
      - `status` (string, optional)
    - `id` (string, optional)
    - `meta` (object, optional)
      - `processing-time-seconds` (double, optional, nullable)
    - `relationships` (object, optional)
      - `creator` (object, optional)
        - `data` (object or object or object, optional, nullable)
          - object
            - `type` ("administrator", optional)
            - `id` (string, optional)
          - object
            - `type` ("user", optional)
            - `id` (string, optional)
          - object
            - `type` ("event", optional)
            - `id` (string, optional)
      - `workflow` (object, optional)
        - `data` (object, optional)
          - `type` ("workflow", optional)
          - `id` (string, optional)
      - `workflow-version` (object, optional)
        - `data` (object, optional)
          - `type` ("workflow-version", optional)
          - `id` (string, optional)

## Examples

**Response**

```json
{
  "data": {
    "id": "inq_zEx4jL84ShbUyuwX6AzPSqt6",
    "attributes": {
      "status": "pending",
      "reference-id": "abc-123",
      "note": null,
      "behaviors": {},
      "tags": [],
      "creator": "creator@withpersona.com",
      "reviewer-comment": null,
      "created-at": "2023-03-29T19:06:45.000Z",
      "updated-at": "2023-03-29T20:08:47.000Z",
      "started-at": "2023-03-30T19:07:01.000Z",
      "expires-at": "2023-03-31T19:07:01.000Z",
      "completed-at": null,
      "failed-at": null,
      "marked-for-review-at": null,
      "decisioned-at": null,
      "expired-at": null,
      "redacted-at": null,
      "previous-step-name": "start",
      "next-step-name": "verification_document",
      "fields": {
        "name-first": {
          "type": "string",
          "value": "Jane"
        },
        "name-middle": {
          "type": "string",
          "value": "Marie"
        },
        "name-last": {
          "type": "string",
          "value": "Doe"
        },
        "address-street-1": {
          "type": "string",
          "value": "123 Main St"
        },
        "address-street-2": {
          "type": "string",
          "value": null
        },
        "address-city": {
          "type": "string",
          "value": "San Francisco"
        },
        "address-subdivision": {
          "type": "string",
          "value": "California"
        },
        "address-postal-code": {
          "type": "string",
          "value": "94111"
        },
        "address-country-code": {
          "type": "string",
          "value": "US"
        },
        "birthdate": {
          "type": "date",
          "value": "1995-09-08"
        },
        "email-address": {
          "type": "string",
          "value": "jane@doe.com"
        },
        "phone-number": {
          "type": "string",
          "value": null
        },
        "identification-number": {
          "type": "string",
          "value": null
        }
      }
    },
    "relationships": {
      "account": {
        "data": {
          "id": "act_n2uq9eKMboaCQzu9ALWYcVdN",
          "type": "account"
        }
      },
      "documents": {
        "data": []
      },
      "template": {
        "data": {}
      },
      "inquiry-template": {
        "data": {
          "id": "itmpl_p8ANAJy9iqadm2buF2xcVgqH",
          "type": "inquiry-template"
        }
      },
      "inquiry-template-version": {
        "data": {
          "id": "itmplv_iXhqfNWqwYLAWs9G8Fm8hPfo",
          "type": "inquiry-template-version"
        }
      },
      "reports": {
        "data": []
      },
      "transaction": {
        "data": null
      },
      "reviewer": {
        "data": {}
      },
      "selfies": {
        "data": []
      },
      "sessions": {
        "data": []
      },
      "verifications": {
        "data": [
          {
            "id": "ver_uHDiwtcx3htjajvEaeMjPQcE",
            "type": "verification/database"
          }
        ]
      }
    },
    "type": "inquiry"
  }
}
```

**SDK Code**

```python Success
import requests

url = "https://api.withpersona.com/api/v1/inquiries/inquiry-id/mark-for-review"

headers = {"Authorization": "Bearer <token>"}

response = requests.post(url, headers=headers)

print(response.json())
```

```javascript Success
const url = 'https://api.withpersona.com/api/v1/inquiries/inquiry-id/mark-for-review';
const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Success
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.withpersona.com/api/v1/inquiries/inquiry-id/mark-for-review"

	req, _ := http.NewRequest("POST", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Success
require 'uri'
require 'net/http'

url = URI("https://api.withpersona.com/api/v1/inquiries/inquiry-id/mark-for-review")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java Success
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://api.withpersona.com/api/v1/inquiries/inquiry-id/mark-for-review")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php Success
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://api.withpersona.com/api/v1/inquiries/inquiry-id/mark-for-review', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp Success
using RestSharp;

var client = new RestClient("https://api.withpersona.com/api/v1/inquiries/inquiry-id/mark-for-review");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift Success
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.withpersona.com/api/v1/inquiries/inquiry-id/mark-for-review")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```