Unified.to · Schema

VerificationRequest

IntegrationsUnified API

Properties

Name Type Description
candidate_id string
created_at string
id string
package_id string
parameters object
profile_addresses object
profile_date_of_birth string
profile_emails object
profile_gender string
profile_ip_address string
profile_name string
profile_national_identifier string
profile_telephones object
raw object
response_completed_at string
response_details object
response_download_urls object
response_expires_at string
response_issued_at string
response_redirect_url string
response_score number
response_source string
response_status string
target_url string
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-verificationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VerificationRequest",
  "title": "VerificationRequest",
  "properties": {
    "candidate_id": {
      "type": "string"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "package_id": {
      "type": "string"
    },
    "parameters": {
      "$ref": "#/components/schemas/property_VerificationRequest_parameters"
    },
    "profile_addresses": {
      "$ref": "#/components/schemas/property_VerificationRequest_profile_addresses"
    },
    "profile_date_of_birth": {
      "type": "string"
    },
    "profile_emails": {
      "$ref": "#/components/schemas/property_VerificationRequest_profile_emails"
    },
    "profile_gender": {
      "enum": [
        "MALE",
        "FEMALE",
        "INTERSEX",
        "TRANS",
        "NON_BINARY"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "profile_ip_address": {
      "type": "string"
    },
    "profile_name": {
      "type": "string"
    },
    "profile_national_identifier": {
      "type": "string"
    },
    "profile_telephones": {
      "$ref": "#/components/schemas/property_VerificationRequest_profile_telephones"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "response_completed_at": {
      "format": "date-time",
      "type": "string"
    },
    "response_details": {
      "$ref": "#/components/schemas/property_VerificationRequest_response_details"
    },
    "response_download_urls": {
      "$ref": "#/components/schemas/property_VerificationRequest_response_download_urls"
    },
    "response_expires_at": {
      "format": "date-time",
      "type": "string"
    },
    "response_issued_at": {
      "format": "date-time",
      "type": "string"
    },
    "response_redirect_url": {
      "type": "string"
    },
    "response_score": {
      "type": "number"
    },
    "response_source": {
      "type": "string"
    },
    "response_status": {
      "enum": [
        "COMPLETED",
        "FAILED",
        "PASSED",
        "PENDING"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "target_url": {
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}