{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountingAttachmentRequest", "title": "AccountingAttachmentRequest", "type": "object", "properties": { "file_name": { "type": [ "string", "null" ], "description": "The attachment's name." }, "file_url": { "type": [ "string", "null" ], "format": "uri", "description": "The attachment's url." }, "company": { "type": [ "string", "null" ], "format": "uuid", "description": "The company the accounting attachment belongs to." }, "integration_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any type" } }, "linked_account_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any type" } } }, "description": "# The Accounting Attachment Object\n### Description\nThe `AccountingAttachment` object is used to represent a company's attachments.\n\n### Usage Example\nFetch from the `LIST AccountingAttachments` endpoint and view a company's attachments." }