Properties
| Name | Type | Description |
|---|---|---|
| id | string | Brand identifier. |
| name | string | Brand name. |
| country | string | Country code. |
| logoUrl | string | Brand logo URL. |
| types | array | Product types offered. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Brand",
"description": "Brand catalog entry.",
"$id": "https://raw.githubusercontent.com/api-evangelist/zendit/refs/heads/main/json-schema/zendit-api-brand-schema.json",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Brand identifier.",
"example": "rebel-prepaid"
},
"name": {
"type": "string",
"description": "Brand name.",
"example": "Rebel Prepaid"
},
"country": {
"type": "string",
"description": "Country code.",
"example": "US"
},
"logoUrl": {
"type": "string",
"format": "uri",
"description": "Brand logo URL.",
"example": "https://cdn.zendit.io/logos/rebel.png"
},
"types": {
"type": "array",
"description": "Product types offered.",
"items": {
"type": "string"
},
"example": [
"Mobile Top Up",
"Bundle"
]
}
}
}