Properties
| Name | Type | Description |
|---|---|---|
| industry | string | |
| addresses | array | |
| name | string | |
| phone_numbers | array | |
| updated_at | string | |
| id | string | |
| owner_id | string | |
| annual_revenue | string | |
| website | string | |
| created_at | string | |
| description | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Account",
"title": "Account",
"type": "object",
"properties": {
"industry": {
"type": "string"
},
"addresses": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AccountAddress"
}
},
"name": {
"type": "string"
},
"phone_numbers": {
"type": "array",
"items": {
"type": "string"
}
},
"updated_at": {
"type": "string"
},
"id": {
"type": "string"
},
"owner_id": {
"type": "string"
},
"annual_revenue": {
"type": "string"
},
"website": {
"type": "string"
},
"created_at": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"id",
"owner_id",
"name"
]
}