Search Response Schema

{
  "$schema": "http://json-schema.org/schema#",
  "type": "object",
  "properties": {
    "criteria": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "sources": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          }
        },
        "required": [
          "name"
        ]
      }
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "pluto": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "phoneNumber": {
                  "type": [
                    "integer",
                    "null",
                    "string"
                  ]
                },
                "firstName": {
                  "type": [
                    "null",
                    "number",
                    "string"
                  ]
                },
                "lastName": {
                  "type": [
                    "null",
                    "string"
                  ]
                },
                "address": {
                  "anyOf": [
                    {
                      "type": [
                        "null",
                        "number",
                        "string"
                      ]
                    },
                    {
                      "type": "object",
                      "properties": {
                        "$numberLong": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "$numberLong"
                      ]
                    }
                  ]
                },
                "dateOfBirth": {
                  "type": [
                    "null",
                    "string"
                  ]
                },
                "ssn": {
                  "type": [
                    "integer",
                    "string"
                  ]
                },
                "FacebookId": {
                  "type": "integer"
                },
                "emailAddress": {
                  "type": [
                    "null",
                    "string"
                  ]
                },
                "gender": {
                  "type": [
                    "null",
                    "string"
                  ]
                },
                "profession": {
                  "type": [
                    "null",
                    "string"
                  ]
                },
                "telegramId": {
                  "type": [
                    "integer",
                    "string"
                  ]
                },
                "telegramNickname": {
                  "type": [
                    "integer",
                    "null",
                    "string"
                  ]
                },
                "sex": {
                  "type": "string"
                },
                "country": {
                  "type": "string"
                },
                "district": {
                  "type": "string"
                },
                "proffecion": {
                  "type": "string"
                },
                "VkID": {
                  "type": "integer"
                },
                "password": {
                  "type": "string"
                },
                "Phone": {
                  "type": "integer"
                },
                "email": {
                  "anyOf": [
                    {
                      "type": [
                        "null",
                        "number",
                        "string"
                      ]
                    },
                    {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  ]
                },
                "facebookId": {
                  "type": [
                    "null",
                    "string"
                  ]
                },
                "linkedinId": {
                  "type": [
                    "null",
                    "string"
                  ]
                },
                "facebookUsername": {
                  "type": [
                    "null",
                    "string"
                  ]
                },
                "linkedinUsername": {
                  "type": "string"
                },
                "favoriteWord": {
                  "type": "string"
                },
                "VkId": {
                  "type": "string"
                },
                "fullName": {
                  "type": "string"
                },
                "birthDate": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                },
                "city": {
                  "anyOf": [
                    {
                      "type": [
                        "integer",
                        "string"
                      ]
                    },
                    {
                      "type": "object",
                      "properties": {
                        "$numberLong": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "$numberLong"
                      ]
                    }
                  ]
                },
                "state": {
                  "anyOf": [
                    {
                      "type": [
                        "integer",
                        "string"
                      ]
                    },
                    {
                      "type": "object",
                      "properties": {
                        "$numberLong": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "$numberLong"
                      ]
                    }
                  ]
                },
                "zip": {
                  "type": [
                    "integer",
                    "string"
                  ]
                },
                "age": {
                  "type": "integer"
                },
                "dateUpdated": {
                  "type": "string"
                },
                "court": {
                  "type": "object",
                  "properties": {
                    "criminalCourtRecords": {
                      "type": "boolean"
                    },
                    "judgements": {
                      "type": "boolean"
                    },
                    "civilCourtRecordCount": {
                      "type": "integer"
                    },
                    "bankruptcies": {
                      "type": "boolean"
                    },
                    "currentIncarceration": {
                      "type": "boolean"
                    }
                  },
                  "required": [
                    "criminalCourtRecords",
                    "judgements"
                  ]
                },
                "phone": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  ]
                },
                "politicalParty": {
                  "type": "string"
                },
                "race": {
                  "type": "string"
                },
                "religion": {
                  "type": "string"
                },
                "education": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "object",
                      "properties": {
                        "educationLevel": {
                          "type": "string"
                        },
                        "colleges": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "degree": {
                                "type": "string"
                              },
                              "schoolName": {
                                "type": "string"
                              },
                              "yearsAttended": {
                                "type": "array",
                                "items": {
                                  "anyOf": [
                                    {
                                      "type": "null"
                                    },
                                    {
                                      "type": "object",
                                      "properties": {
                                        "endYear": {
                                          "type": "integer"
                                        },
                                        "startYear": {
                                          "type": "integer"
                                        }
                                      },
                                      "required": [
                                        "startYear"
                                      ]
                                    }
                                  ]
                                }
                              },
                              "city": {
                                "type": "string"
                              },
                              "collegeId": {
                                "type": "integer"
                              },
                              "major": {
                                "type": "string"
                              },
                              "state": {
                                "type": "string"
                              },
                              "userToCollegeId": {
                                "type": "integer"
                              },
                              "zip": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "schoolName",
                              "yearsAttended"
                            ]
                          }
                        },
                        "highschool": {
                          "type": "object",
                          "properties": {
                            "city": {
                              "type": "string"
                            },
                            "graduationYear": {
                              "type": "integer"
                            },
                            "highSchoolId": {
                              "type": "integer"
                            },
                            "schoolName": {
                              "type": "string"
                            },
                            "state": {
                              "type": "string"
                            },
                            "zip": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "city",
                            "schoolName",
                            "state"
                          ]
                        },
                        "highSchoolClassmates": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "address": {
                                "type": "object",
                                "properties": {
                                  "city": {
                                    "type": "string"
                                  },
                                  "dataSource": {
                                    "type": "string"
                                  },
                                  "pinpoint": {
                                    "type": "object",
                                    "properties": {
                                      "lat": {
                                        "type": "number"
                                      },
                                      "lon": {
                                        "type": "number"
                                      }
                                    },
                                    "required": [
                                      "lat",
                                      "lon"
                                    ]
                                  },
                                  "state": {
                                    "type": "string"
                                  },
                                  "streetAddress": {
                                    "type": "string"
                                  },
                                  "zip": {
                                    "type": "string"
                                  },
                                  "zip4": {
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "city",
                                  "dataSource",
                                  "state",
                                  "streetAddress"
                                ]
                              },
                              "adl": {
                                "anyOf": [
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "object",
                                    "properties": {
                                      "$numberLong": {
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "$numberLong"
                                    ]
                                  }
                                ]
                              },
                              "dateOfBirth": {
                                "anyOf": [
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "object",
                                    "properties": {
                                      "$numberLong": {
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "$numberLong"
                                    ]
                                  }
                                ]
                              },
                              "deleted": {
                                "type": "boolean"
                              },
                              "firstname": {
                                "type": "string"
                              },
                              "lastname": {
                                "type": "string"
                              },
                              "middlename": {
                                "type": "string"
                              },
                              "reputationScore": {
                                "type": "number"
                              },
                              "reputationScoreDate": {
                                "type": "object",
                                "properties": {
                                  "$numberLong": {
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "$numberLong"
                                ]
                              },
                              "profilePic": {
                                "type": "object",
                                "properties": {
                                  "dataSource": {
                                    "type": "string"
                                  },
                                  "url": {
                                    "type": "string"
                                  },
                                  "domain": {
                                    "type": "string"
                                  },
                                  "piplThumbnailUrl": {
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "dataSource",
                                  "url"
                                ]
                              },
                              "lnFlags": {
                                "type": "object",
                                "properties": {
                                  "bankruptcies": {
                                    "type": "boolean"
                                  },
                                  "criminalCourtRecords": {
                                    "type": "boolean"
                                  },
                                  "judgements": {
                                    "type": "boolean"
                                  },
                                  "civilCourtRecordCount": {
                                    "type": "integer"
                                  },
                                  "currentIncarceration": {
                                    "type": "boolean"
                                  }
                                }
                              },
                              "dateOfDeath": {
                                "type": "object",
                                "properties": {
                                  "$numberLong": {
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "$numberLong"
                                ]
                              }
                            },
                            "required": [
                              "adl",
                              "deleted",
                              "firstname",
                              "lastname"
                            ]
                          }
                        }
                      },
                      "required": [
                        "educationLevel"
                      ]
                    }
                  ]
                },
                "autos": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "make": {
                        "type": "string"
                      },
                      "model": {
                        "type": "string"
                      },
                      "modelYear": {
                        "type": "integer"
                      },
                      "id": {
                        "type": "integer"
                      }
                    },
                    "required": [
                      "make"
                    ]
                  }
                },
                "socialUrls": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "domain": {
                        "type": "string"
                      },
                      "url": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "domain",
                      "url"
                    ]
                  }
                },
                "deathDate": {
                  "type": "string"
                },
                "suffix": {
                  "type": "string"
                },
                "jobs": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "address": {
                        "type": "object",
                        "properties": {
                          "city": {
                            "type": "string"
                          },
                          "state": {
                            "type": "string"
                          },
                          "zip": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "city"
                        ]
                      },
                      "company": {
                        "type": "string"
                      },
                      "dates": {
                        "type": "object",
                        "properties": {
                          "startYear": {
                            "type": "integer"
                          },
                          "endYear": {
                            "type": "integer"
                          },
                          "endMonth": {
                            "type": "integer"
                          },
                          "startMonth": {
                            "type": "integer"
                          }
                        },
                        "required": [
                          "startYear"
                        ]
                      },
                      "id": {
                        "type": "integer"
                      },
                      "title": {
                        "type": "string"
                      },
                      "website": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "title"
                    ]
                  }
                },
                "professionalLicense": {
                  "type": "string"
                },
                "company_name": {
                  "type": "string"
                },
                "linkedin account name": {
                  "type": "string"
                },
                "fax": {
                  "anyOf": [
                    {
                      "type": [
                        "integer",
                        "string"
                      ]
                    },
                    {
                      "type": "object",
                      "properties": {
                        "$numberLong": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "$numberLong"
                      ]
                    }
                  ]
                },
                "website": {
                  "type": "string"
                },
                "ip": {
                  "type": "string"
                },
                "site_url": {
                  "type": "string"
                },
                "user_ip": {
                  "type": [
                    "integer",
                    "string"
                  ]
                },
                "mobile": {
                  "anyOf": [
                    {
                      "type": [
                        "number",
                        "string"
                      ]
                    },
                    {
                      "type": "object",
                      "properties": {
                        "$numberLong": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "$numberLong"
                      ]
                    }
                  ]
                },
                "getContactNickname": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  ]
                },
                "numbusterNickname": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "tags": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  ]
                },
                "protected": {
                  "type": "boolean"
                },
                "followers_count": {
                  "type": "integer"
                },
                "friends_count": {
                  "type": "integer"
                },
                "listed_count": {
                  "type": "integer"
                },
                "created_at": {
                  "type": "string"
                },
                "favourites_count": {
                  "type": "integer"
                },
                "verified": {
                  "type": "boolean"
                },
                "statuses_count": {
                  "type": "integer"
                },
                "is_translator": {
                  "type": "boolean"
                },
                "profile_image_url_https": {
                  "type": "string"
                },
                "default_profile_image": {
                  "type": "boolean"
                },
                "translator_type": {
                  "type": "string"
                },
                "twitterUsername": {
                  "type": "string"
                },
                "location": {
                  "type": "string"
                },
                "profile_banner_url": {
                  "type": "string"
                },
                "url": {
                  "type": "string"
                },
                "description": {
                  "type": "string"
                },
                "instagramUsername": {
                  "type": "string"
                },
                "id": {
                  "type": "string"
                },
                "mdmId": {
                  "type": "string"
                },
                "salutation": {
                  "type": "string"
                },
                "communicationLanguage": {
                  "type": "string"
                },
                "nationality": {
                  "type": "string"
                },
                "addressCity": {
                  "type": "string"
                },
                "addressCountry": {
                  "type": "string"
                },
                "registrationDate": {
                  "type": "string"
                },
                "travelCoordinatorState": {
                  "type": "string"
                },
                "lastUpdate_date": {
                  "type": "string"
                },
                "frequentFlyerflag": {
                  "type": "string"
                },
                "status": {
                  "type": "string"
                },
                "addressDetail": {
                  "type": "string"
                },
                "addressZipcode": {
                  "type": "string"
                },
                "loyaltyTapId": {
                  "type": "string"
                },
                "loginDate": {
                  "type": "string"
                },
                "addressRegion": {
                  "type": "string"
                },
                "jobDescription": {
                  "type": "string"
                },
                "market": {
                  "type": "string"
                },
                "travelCoordinatorRelType": {
                  "type": "string"
                },
                "subscriptionDate": {
                  "type": "string"
                },
                "corporateId": {
                  "type": "string"
                },
                "socialNetworks": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "FB": {
                        "type": "string"
                      },
                      "GPLUS": {
                        "type": "string"
                      },
                      "TWITTER": {
                        "type": "string"
                      },
                      "INSTAGRAM": {
                        "type": "string"
                      },
                      "VKONTAKTE": {
                        "type": "string"
                      },
                      "LINKEDIN": {
                        "type": "string"
                      },
                      "FOURSQUARE": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "FB"
                    ]
                  }
                },
                "linkedinLink": {
                  "type": "string"
                },
                "instagramId": {
                  "type": "string"
                },
                "vkId": {
                  "type": "string"
                },
                "birthDay": {
                  "type": "string"
                },
                "birthMonth": {
                  "type": "string"
                },
                "birthYear": {
                  "type": "string"
                },
                "homeTown": {
                  "type": "string"
                },
                "graduation": {
                  "type": "string"
                },
                "schools": {
                  "type": "string"
                },
                "universityName": {
                  "type": "string"
                },
                "facultyName": {
                  "type": "string"
                },
                "work": {
                  "type": "string"
                },
                "regPhone": {
                  "type": "string"
                },
                "icq": {
                  "type": "string"
                },
                "chair": {
                  "type": "string"
                },
                "mobilePhone": {
                  "type": "string"
                },
                "homePhone": {
                  "type": "string"
                },
                "forum": {
                  "type": "string"
                },
                "forumNick": {
                  "type": "string"
                },
                "userName": {
                  "type": "string"
                },
                "email2": {
                  "type": "string"
                },
                "password2": {
                  "type": "string"
                },
                "contactName": {
                  "type": "string"
                },
                "language": {
                  "type": "string"
                },
                "link": {
                  "type": "string"
                },
                "facebookChatAddress": {
                  "type": "string"
                },
                "hometown": {
                  "type": "string"
                },
                "locale": {
                  "type": "string"
                },
                "graduationYear": {
                  "type": "string"
                },
                "name": {
                  "type": "string"
                },
                "ledgerBuyer": {
                  "type": "boolean"
                },
                "carrier": {
                  "type": "string"
                },
                "score": {
                  "type": "string"
                },
                "spamCount": {
                  "type": "string"
                },
                "badges": {
                  "type": "string"
                },
                "image": {
                  "type": "string"
                },
                "jobTitle": {
                  "type": "string"
                },
                "companyName": {
                  "type": "string"
                },
                "twitterId": {
                  "type": "string"
                },
                "fio": {
                  "type": "string"
                },
                "middleName": {
                  "type": "string"
                },
                "encryptedPassword": {
                  "type": "string"
                },
                "signInCount": {
                  "type": "string"
                },
                "currentSignInAt": {
                  "type": "string"
                },
                "lastSignInAt": {
                  "type": "string"
                },
                "currentSignInIp": {
                  "type": "string"
                },
                "lastSignInIp": {
                  "type": "string"
                },
                "authenticationToken": {
                  "type": "string"
                },
                "createdAt": {
                  "type": "string"
                },
                "updatedAt": {
                  "type": "string"
                },
                "uf": {
                  "type": "string"
                },
                "isPatient": {
                  "type": "boolean"
                },
                "privacyPolicy": {
                  "type": "boolean"
                },
                "lastUse": {
                  "type": "string"
                },
                "isAdmin": {
                  "type": "boolean"
                },
                "isCaregiver": {
                  "type": "boolean"
                },
                "isSamsungStore": {
                  "type": "boolean"
                },
                "syncFavoriteMeals": {
                  "type": "boolean"
                },
                "isHapvida": {
                  "type": "boolean"
                },
                "profileId": {
                  "type": "string"
                },
                "latitude": {
                  "type": [
                    "number",
                    "string"
                  ]
                },
                "longitude": {
                  "type": [
                    "number",
                    "string"
                  ]
                },
                "provider": {
                  "type": "string"
                },
                "uid": {
                  "type": "string"
                },
                "purposeUse": {
                  "type": "string"
                },
                "resetPasswordToken": {
                  "type": "string"
                },
                "resetPasswordSentAt": {
                  "type": "string"
                },
                "huggyId": {
                  "type": "string"
                },
                "zipCode": {
                  "type": "string"
                },
                "officeAddress": {
                  "type": "string"
                },
                "hasCard": {
                  "type": "string"
                },
                "rememberCreatedAt": {
                  "type": "string"
                },
                "crm": {
                  "type": "string"
                },
                "cpf": {
                  "type": "string"
                },
                "wishToBeFound": {
                  "type": "boolean"
                },
                "isDoctor": {
                  "type": "boolean"
                },
                "isNutritionist": {
                  "type": "boolean"
                },
                "crn": {
                  "type": "string"
                },
                "officePhone": {
                  "type": "string"
                },
                "officeEmail": {
                  "type": "string"
                },
                "approved": {
                  "type": "boolean"
                },
                "confirmedAt": {
                  "type": "string"
                },
                "confirmationSentAt": {
                  "type": "string"
                },
                "officeAttendant": {
                  "type": "string"
                },
                "confirmationToken": {
                  "type": "string"
                },
                "doNotReceiveAlerts": {
                  "type": "boolean"
                },
                "industry": {
                  "type": "string"
                },
                "jobCompanyName": {
                  "type": "string"
                },
                "phoneType": {
                  "type": "string"
                },
                "locationRegion": {
                  "type": "string"
                },
                "locationCountry": {
                  "type": "string"
                },
                "linkedinURL": {
                  "type": "string"
                },
                "jobCompanyWebsite": {
                  "type": "string"
                },
                "emailType": {
                  "type": "string"
                },
                "userId": {
                  "type": "string"
                },
                "valid": {
                  "type": "object",
                  "properties": {
                    "phone": {
                      "type": "boolean"
                    },
                    "email": {
                      "type": "boolean"
                    }
                  },
                  "required": [
                    "phone"
                  ]
                },
                "ipn": {
                  "type": "string"
                },
                "role": {
                  "type": "string"
                },
                "useTwoFactorAuth": {
                  "type": "string"
                },
                "isLegal": {
                  "type": "string"
                },
                "isIndividualEntrepreneur": {
                  "type": "string"
                },
                "userIdentificationType": {
                  "type": "string"
                },
                "passportSeries": {
                  "type": "string"
                },
                "passportNumber": {
                  "type": "string"
                },
                "passportIssueDate": {
                  "type": "string"
                },
                "passportIssuedBy": {
                  "type": "string"
                },
                "needOnboarding": {
                  "type": "string"
                },
                "addressStruct": {
                  "type": "object",
                  "properties": {
                    "city": {
                      "anyOf": [
                        {
                          "type": "null"
                        },
                        {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            },
                            "type": {
                              "type": "string"
                            },
                            "registerRecord": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string"
                                },
                                "cvk": {
                                  "type": "string"
                                },
                                "anId": {
                                  "type": "string"
                                },
                                "code": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": "string"
                                },
                                "type": {
                                  "type": "string"
                                },
                                "atuId": {
                                  "type": "string"
                                },
                                "keyId": {
                                  "type": "integer"
                                },
                                "label": {
                                  "type": "string"
                                },
                                "level": {
                                  "type": "string"
                                },
                                "value": {
                                  "type": "string"
                                },
                                "status": {
                                  "type": "string"
                                },
                                "childId": {
                                  "type": "string"
                                },
                                "closedAt": {
                                  "type": "string"
                                },
                                "atuNameId": {
                                  "type": "string"
                                },
                                "createdAt": {
                                  "type": "string"
                                },
                                "KOATUUCode": {
                                  "type": "string"
                                },
                                "registerId": {
                                  "type": "integer"
                                },
                                "atuParentId": {
                                  "type": "string"
                                },
                                "parentKeyId": {
                                  "type": "integer"
                                },
                                "stringified": {
                                  "type": "string"
                                },
                                "isRelationId": {
                                  "type": "string"
                                },
                                "isRelationLink": {
                                  "type": "string"
                                },
                                "territorialCommunityKATOTTGCode": {
                                  "type": "string"
                                },
                                "KATOTTGCode": {
                                  "type": "string"
                                },
                                "koatuuCode": {
                                  "type": "string"
                                },
                                "territorialCommunityKatottgCode": {
                                  "type": "string"
                                },
                                "KATOTTGName": {
                                  "type": "string"
                                },
                                "KATOTTGType": {
                                  "type": "string"
                                },
                                "katottgCode": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "atuId",
                                "atuNameId",
                                "atuParentId",
                                "code",
                                "cvk",
                                "id",
                                "isRelationId",
                                "isRelationLink",
                                "keyId",
                                "label",
                                "level",
                                "name",
                                "registerId",
                                "status",
                                "stringified",
                                "type",
                                "value"
                              ]
                            },
                            "registerRecordId": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "id",
                            "name",
                            "type"
                          ]
                        }
                      ]
                    },
                    "index": {
                      "type": "string"
                    },
                    "region": {
                      "anyOf": [
                        {
                          "type": "null"
                        },
                        {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            },
                            "type": {
                              "type": "string"
                            },
                            "registerRecord": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string"
                                },
                                "cvk": {
                                  "type": "string"
                                },
                                "anId": {
                                  "type": "string"
                                },
                                "code": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": "string"
                                },
                                "type": {
                                  "type": "string"
                                },
                                "atuId": {
                                  "type": "string"
                                },
                                "keyId": {
                                  "type": "integer"
                                },
                                "label": {
                                  "type": "string"
                                },
                                "level": {
                                  "type": "string"
                                },
                                "value": {
                                  "type": "string"
                                },
                                "status": {
                                  "type": "string"
                                },
                                "childId": {
                                  "type": "string"
                                },
                                "closedAt": {
                                  "type": "string"
                                },
                                "atuNameId": {
                                  "type": "string"
                                },
                                "createdAt": {
                                  "type": "string"
                                },
                                "KOATUUCode": {
                                  "type": "string"
                                },
                                "registerId": {
                                  "type": "integer"
                                },
                                "atuParentId": {
                                  "type": "string"
                                },
                                "stringified": {
                                  "type": "string"
                                },
                                "isRelationId": {
                                  "type": "string"
                                },
                                "isRelationLink": {
                                  "type": "string"
                                },
                                "KATOTTGCode": {
                                  "type": "string"
                                },
                                "KATOTTGName": {
                                  "type": "string"
                                },
                                "KATOTTGType": {
                                  "type": "string"
                                },
                                "koatuuCode": {
                                  "type": "string"
                                },
                                "katottgCode": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "atuId",
                                "atuNameId",
                                "code",
                                "id",
                                "name",
                                "stringified"
                              ]
                            },
                            "registerRecordId": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "id",
                            "name",
                            "registerRecord",
                            "registerRecordId"
                          ]
                        }
                      ]
                    },
                    "street": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "type": {
                          "type": "string"
                        },
                        "registerRecord": {
                          "type": "object",
                          "properties": {
                            "name": {
                              "type": "string"
                            },
                            "type": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "name",
                            "type"
                          ]
                        },
                        "registerRecordId": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "id",
                        "name",
                        "type"
                      ]
                    },
                    "building": {
                      "type": "string"
                    },
                    "district": {
                      "anyOf": [
                        {
                          "type": "null"
                        },
                        {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            },
                            "type": {
                              "type": "string"
                            },
                            "registerRecord": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string"
                                },
                                "cvk": {
                                  "type": "string"
                                },
                                "anId": {
                                  "type": "string"
                                },
                                "code": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": "string"
                                },
                                "type": {
                                  "type": "string"
                                },
                                "atuId": {
                                  "type": "string"
                                },
                                "keyId": {
                                  "type": "integer"
                                },
                                "label": {
                                  "type": "string"
                                },
                                "level": {
                                  "type": "string"
                                },
                                "value": {
                                  "type": "string"
                                },
                                "status": {
                                  "type": "string"
                                },
                                "childId": {
                                  "type": "string"
                                },
                                "closedAt": {
                                  "type": "string"
                                },
                                "atuNameId": {
                                  "type": "string"
                                },
                                "createdAt": {
                                  "type": "string"
                                },
                                "KOATUUCode": {
                                  "type": "string"
                                },
                                "registerId": {
                                  "type": "integer"
                                },
                                "atuParentId": {
                                  "type": "string"
                                },
                                "parentKeyId": {
                                  "type": "integer"
                                },
                                "stringified": {
                                  "type": "string"
                                },
                                "isRelationId": {
                                  "type": "string"
                                },
                                "isRelationLink": {
                                  "type": "string"
                                },
                                "territorialCommunityKATOTTGCode": {
                                  "type": "string"
                                },
                                "KATOTTGCode": {
                                  "type": "string"
                                },
                                "KATOTTGName": {
                                  "type": "string"
                                },
                                "KATOTTGType": {
                                  "type": "string"
                                },
                                "koatuuCode": {
                                  "type": "string"
                                },
                                "territorialCommunityKatottgCode": {
                                  "type": "string"
                                },
                                "fullName": {
                                  "type": "string"
                                },
                                "parentCity": {
                                  "type": "object",
                                  "properties": {
                                    "cvk": {
                                      "type": "string"
                                    },
                                    "code": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": "string"
                                    },
                                    "type": {
                                      "type": "string"
                                    },
                                    "atuId": {
                                      "type": "string"
                                    },
                                    "level": {
                                      "type": "string"
                                    },
                                    "status": {
                                      "type": "string"
                                    },
                                    "atuNameId": {
                                      "type": "string"
                                    },
                                    "atuParentId": {
                                      "type": "string"
                                    },
                                    "anId": {
                                      "type": "string"
                                    },
                                    "childId": {
                                      "type": "string"
                                    },
                                    "closedAt": {
                                      "type": "string"
                                    },
                                    "createdAt": {
                                      "type": "string"
                                    },
                                    "KOATUUCode": {
                                      "type": "string"
                                    },
                                    "KATOTTGCode": {
                                      "type": "string"
                                    },
                                    "KATOTTGName": {
                                      "type": "string"
                                    },
                                    "KATOTTGType": {
                                      "type": "string"
                                    },
                                    "koatuuCode": {
                                      "type": "string"
                                    },
                                    "katottgCode": {
                                      "type": "string"
                                    },
                                    "katottgName": {
                                      "type": "string"
                                    },
                                    "katottgType": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "atuId",
                                    "atuNameId",
                                    "atuParentId",
                                    "code",
                                    "cvk",
                                    "level",
                                    "name",
                                    "status",
                                    "type"
                                  ]
                                },
                                "katottgCode": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "atuId",
                                "atuNameId",
                                "id",
                                "name",
                                "stringified"
                              ]
                            },
                            "registerRecordId": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "id",
                            "name",
                            "registerRecord",
                            "registerRecordId"
                          ]
                        }
                      ]
                    },
                    "korp": {
                      "type": "string"
                    },
                    "apt": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "building",
                    "city",
                    "district",
                    "index",
                    "region",
                    "street"
                  ]
                },
                "isActive": {
                  "type": "string"
                },
                "isPrivateHouse": {
                  "type": "string"
                },
                "foreignersDocumentType": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "registerId": {
                      "type": "integer"
                    },
                    "keyId": {
                      "type": "integer"
                    },
                    "stringified": {
                      "type": "string"
                    },
                    "code": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "value": {
                      "type": "string"
                    },
                    "label": {
                      "type": "string"
                    },
                    "registerRecordId": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "registerRecord": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "registerId": {
                          "type": "integer"
                        },
                        "keyId": {
                          "type": "integer"
                        },
                        "stringified": {
                          "type": "string"
                        },
                        "code": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "value": {
                          "type": "string"
                        },
                        "label": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "code",
                        "id",
                        "keyId",
                        "label",
                        "name",
                        "registerId",
                        "stringified",
                        "value"
                      ]
                    }
                  }
                },
                "idCardNumber": {
                  "type": "string"
                },
                "idCardIssueDate": {
                  "type": "string"
                },
                "idCardIssuedBy": {
                  "type": "string"
                },
                "idCardExpiryDate": {
                  "type": "string"
                },
                "onboardingTaskId": {
                  "type": "string"
                },
                "edrpou": {
                  "type": "string"
                },
                "foreignersDocumentNumber": {
                  "type": "string"
                },
                "foreignersDocumentIssueDate": {
                  "type": "string"
                },
                "foreignersDocumentIssuedBy": {
                  "type": "string"
                },
                "foreignersDocumentExpireDate": {
                  "type": "string"
                },
                "foreignersDocumentSeries": {
                  "type": "string"
                },
                "countryCode": {
                  "type": "string"
                },
                "postCode": {
                  "type": "string"
                },
                "region": {
                  "type": "string"
                },
                "nationalIds": {
                  "type": "object",
                  "properties": {
                    "Trade register number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NOC": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Unified social credit code": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "LEI": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Tax number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "TIN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "RUT": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "UID": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "CH-number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "CNPJ": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NIRE": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "SWIFT code": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "European VAT number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "UIC": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Belgian company number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Establishment number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NSSO code": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "UCN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "JIB": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "ABN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "ACN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "RSSD ID": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "CIK": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "USt-IdNr.": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "OeNB number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NIPT": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Commercial register number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Chamber of commerce number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "TPIN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "VAT number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Enterprise number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "IMO number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NIF": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "RUC": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "CR number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NZBN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Company number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Organization number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "CoC-number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Location number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "RSIN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "RFC": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "PIN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Registarski broj": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "IDNO": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "RCI number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "ICE": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "CCIAA number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Codice fiscale": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Partita IVA": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "SIREN number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "SIRET number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Business ID": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NRC number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NIS": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Charity number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NIT": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "CUIT": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "OKPO": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "OGRN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "INN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NIP": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "REGON number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "BIN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Corporate registered number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Corporate Number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "CIN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "PAN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "GSTIN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Statistical number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "MBS": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NIN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "OIB": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "AFM": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "CVR-nummer": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "P-nummer": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "RNC": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "RIF": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NAIC number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "FDIC Unique Number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "FDIC Certificate Number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "EIN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "CU/NCUA number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "EDRPOU code": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Mersis number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "UEN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NCR number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Uniform invoice number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "GEMI number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "RGD number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "OGRNIP": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "RC number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Kennitala": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Corporation Number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Business Number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "BRN number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "SEC registration number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Industrial license": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "MBO": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Broj obrtnice": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NINEA": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "TAN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "BRN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "RCS number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "RCCM number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Matricula de Comercio": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Business Registration Number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Patente": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "GER number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "NIU": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Entreprise code": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "CFAR-number": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "LLPIN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "FIN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "RBN": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  },
                  "required": [
                    "Unified social credit code"
                  ]
                },
                "countryCode2": {
                  "type": "string"
                },
                "country2": {
                  "type": "string"
                },
                "nationality2": {
                  "type": "string"
                },
                "address2": {
                  "type": "string"
                },
                "phone2": {
                  "type": "string"
                },
                "postcode": {
                  "type": "string"
                },
                "site": {
                  "type": "string"
                },
                "cellPhone": {
                  "type": "string"
                },
                "departmentId": {
                  "type": "string"
                },
                "MI": {
                  "type": "string"
                },
                "access_required_to_(list_departments_and/or_Agencies)": {
                  "type": "string"
                },
                "securityClearance": {
                  "type": "string"
                },
                "codeOfEthicalConduct": {
                  "type": "string"
                },
                "mostRecentEmployment": {
                  "type": "string"
                },
                "compensation": {
                  "type": "string"
                },
                "section": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  },
  "required": [
    "criteria",
    "data",
    "sources",
    "status",
    "type"
  ]
}

Last updated