Properties
| Name | Type | Description |
|---|---|---|
| account_id | string | |
| status | string | |
| status_code | string | |
| creation_date | string | |
| tax_category | string | |
| account_name | string | |
| account_email | string | |
| account_country | string | |
| consents | array | |
| ubo_id | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/d-local/main/json-schema/platforms-account-schema.json",
"title": "dLocal for Platforms Account",
"type": "object",
"required": ["account_id", "status", "creation_date"],
"properties": {
"account_id": {"type": "string"},
"status": {"type": "string"},
"status_code": {"type": "string"},
"creation_date": {"type": "string", "format": "date-time"},
"tax_category": {"type": "string", "enum": ["company", "individual"]},
"account_name": {"type": "string"},
"account_email": {"type": "string", "format": "email"},
"account_country": {"type": "string", "pattern": "^[A-Z]{2}$"},
"consents": {"type": "array", "items": {"type": "object"}},
"ubo_id": {"type": "string"}
}
}