{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ItemRequestRequest", "title": "ItemRequestRequest", "type": "object", "properties": { "name": { "type": [ "string", "null" ], "description": "The item's name." }, "status": { "oneOf": [ { "$ref": "#/components/schemas/Status7d1Enum" }, { "type": "null" } ], "description": "The item's status." }, "type": { "oneOf": [ { "$ref": "#/components/schemas/Type2bbEnum" }, { "type": "null" } ], "description": "The item's type." }, "unit_price": { "type": [ "number", "null" ], "format": "double", "description": "The item's unit price." }, "purchase_price": { "type": [ "number", "null" ], "format": "double", "description": "The price at which the item is purchased from a vendor." }, "purchase_account": { "type": [ "string", "null" ], "format": "uuid", "description": "References the default account used to record a purchase of the item." }, "sales_account": { "type": [ "string", "null" ], "format": "uuid", "description": "References the default account used to record a sale." }, "company": { "type": [ "string", "null" ], "format": "uuid", "description": "The company the item belongs to." }, "purchase_tax_rate": { "type": [ "string", "null" ], "format": "uuid", "description": "The default purchase tax rate for this item." }, "sales_tax_rate": { "type": [ "string", "null" ], "format": "uuid", "description": "The default sales tax rate for this item." }, "integration_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any type" } }, "linked_account_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any type" } } }, "description": "# The Item Object\n### Description\nThe `Item` object refers to the goods involved in a transaction.\n\n### Usage Example\nFetch from the `LIST Items` endpoint and view a company's items." }