freshworks · Schema
Account
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique ID of the account. |
| name | string | Name of the company. |
| address | string | Address. |
| city | string | City. |
| state | string | State or province. |
| zipcode | string | ZIP or postal code. |
| country | string | Country. |
| phone | string | Phone number. |
| website | string | Website URL. |
| number_of_employees | integer | Number of employees. |
| annual_revenue | number | Annual revenue amount. |
| industry_type_id | integer | ID of the industry type. |
| business_type_id | integer | ID of the business type. |
| owner_id | integer | ID of the owning sales agent. |
| custom_field | object | Custom field values. |
| created_at | string | Timestamp when created. |
| updated_at | string | Timestamp when last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Account",
"title": "Account",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique ID of the account."
},
"name": {
"type": "string",
"description": "Name of the company."
},
"address": {
"type": "string",
"description": "Address."
},
"city": {
"type": "string",
"description": "City."
},
"state": {
"type": "string",
"description": "State or province."
},
"zipcode": {
"type": "string",
"description": "ZIP or postal code."
},
"country": {
"type": "string",
"description": "Country."
},
"phone": {
"type": "string",
"description": "Phone number."
},
"website": {
"type": "string",
"format": "uri",
"description": "Website URL."
},
"number_of_employees": {
"type": "integer",
"description": "Number of employees."
},
"annual_revenue": {
"type": "number",
"description": "Annual revenue amount."
},
"industry_type_id": {
"type": "integer",
"description": "ID of the industry type."
},
"business_type_id": {
"type": "integer",
"description": "ID of the business type."
},
"owner_id": {
"type": "integer",
"description": "ID of the owning sales agent."
},
"custom_field": {
"type": "object",
"additionalProperties": true,
"description": "Custom field values."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when created."
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when last updated."
}
}
}