{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CompanyOptionsParameters",
"title": "Company Options Parameters",
"type": "object",
"properties": {
"Invoiceable": {
"type": "boolean",
"description": "Whether the company is invoiceable or not."
},
"AddFeesToInvoices": {
"type": "boolean",
"description": "Whether the company has an additional fee applied for invoicing or not."
},
"AddTaxDeductedPaymentToInvoices": {
"type": "boolean",
"description": "Whether tax-deducted payments should be automatically added to invoices."
}
},
"additionalProperties": false,
"description": "Options of the company.",
"x-schema-id": "CompanyOptionsParameters"
}