Middesk · Schema
Person
Business VerificationKYBKnow Your BusinessIdentity VerificationComplianceEIN ValidationTIN VerificationSanctions ScreeningBusiness MonitoringFintechRegTech
Properties
| Name | Type | Description |
|---|---|---|
| object | object | |
| id | string | |
| name | string | |
| submitted | boolean | |
| business_id | string | |
| titles | array | |
| people_bankruptcies | array | |
| litigations | array | |
| liens | array | |
| criminal_records | array | |
| sources | array |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/middesk/main/json-schema/person.json",
"title": "Person",
"type": "object",
"properties": {
"object": {
"$ref": "#/components/schemas/type_:PersonObject"
},
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"submitted": {
"type": "boolean"
},
"business_id": {
"type": "string",
"format": "uuid"
},
"titles": {
"type": "array",
"items": {
"$ref": "#/components/schemas/type_:PersonTitlesItem"
}
},
"people_bankruptcies": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": {
"description": "Any type"
}
}
},
"litigations": {
"type": "array",
"items": {
"$ref": "#/components/schemas/type_:Litigation"
}
},
"liens": {
"type": "array",
"items": {
"$ref": "#/components/schemas/type_:Lien"
}
},
"criminal_records": {
"type": "array",
"items": {
"$ref": "#/components/schemas/type_:CriminalHistoryRecord"
}
},
"sources": {
"type": "array",
"items": {
"$ref": "#/components/schemas/type_:Source"
}
}
}
}