Middesk · Schema
Certification
Business VerificationKYBKnow Your BusinessIdentity VerificationComplianceEIN ValidationTIN VerificationSanctions ScreeningBusiness MonitoringFintechRegTech
Properties
| Name | Type | Description |
|---|---|---|
| object | object | |
| id | string | |
| business_id | string | |
| created_at | string | |
| updated_at | string | |
| entrance_date | string | |
| exit_date | string | |
| certification_id | string | |
| name | string | |
| key | string | |
| certification_type | object | |
| external_sources | array |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/middesk/main/json-schema/certification.json",
"title": "Certification",
"type": "object",
"properties": {
"object": {
"$ref": "#/components/schemas/type_:CertificationObject"
},
"id": {
"type": "string",
"format": "uuid"
},
"business_id": {
"type": "string",
"format": "uuid"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"entrance_date": {
"type": "string",
"nullable": true,
"format": "date-time"
},
"exit_date": {
"type": "string",
"nullable": true,
"format": "date-time"
},
"certification_id": {
"type": "string",
"nullable": true
},
"name": {
"type": "string"
},
"key": {
"type": "string"
},
"certification_type": {
"$ref": "#/components/schemas/type_:CertificationCertificationType"
},
"external_sources": {
"type": "array",
"items": {
"$ref": "#/components/schemas/type_:CertificationExternalSourcesItem"
}
}
},
"required": [
"object",
"name",
"key",
"certification_type",
"external_sources"
]
}