{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountingPhoneNumberRequest", "title": "AccountingPhoneNumberRequest", "type": "object", "properties": { "number": { "type": [ "string", "null" ], "description": "The phone number." }, "type": { "type": [ "string", "null" ], "description": "The phone number's type." }, "integration_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any type" } }, "linked_account_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any 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." }