{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountingPhoneNumber", "title": "AccountingPhoneNumber", "type": "object", "properties": { "created_at": { "type": "string", "format": "date-time", "description": "The datetime that this object was created by Merge." }, "modified_at": { "type": "string", "format": "date-time", "description": "The datetime that this object was modified by Merge." }, "number": { "type": [ "string", "null" ], "description": "The phone number." }, "type": { "type": [ "string", "null" ], "description": "The phone number's type." } }, "description": "# The AccountingPhoneNumber Object\n### Description\nThe `AccountingPhoneNumber` object is used to represent a contact's or company's phone number.\n\n### Usage Example\nFetch from the `GET CompanyInfo` endpoint and view the company's phone numbers." }