1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 13:42:49 +01:00
invoiceninja/openapi/components/schemas/product_request.yaml

160 lines
4.4 KiB
YAML
Raw Normal View History

ProductRequest:
type: object
properties:
id:
type: string
description: 'The hashed product ID.'
example: eP01N
readOnly: true
assigned_user_id:
type: string
description: 'The hashed ID of the user assigned to this product.'
example: pR0j3
2024-02-10 05:56:31 +01:00
project_id:
type: string
description: 'The hashed ID of the project that this product is associated with.'
example: pR0j3
2024-02-10 05:56:31 +01:00
vendor_id:
type: string
description: 'The hashed ID of the vendor that this product is associated with.'
example: pR0j3
2024-02-10 05:56:31 +01:00
custom_value1:
type: string
description: 'Custom value field 1.'
example: 'Custom value 1'
2024-02-10 05:56:31 +01:00
custom_value2:
type: string
description: 'Custom value field 2.'
example: 'Custom value 2'
2024-02-10 05:56:31 +01:00
custom_value3:
type: string
description: 'Custom value field 3.'
example: 'Custom value 3'
2024-02-10 05:56:31 +01:00
custom_value4:
type: string
description: 'Custom value field 4.'
example: 'Custom value 4'
2024-02-10 05:56:31 +01:00
product_key:
type: string
description: 'The product key.'
example: '1234'
2024-02-10 05:56:31 +01:00
notes:
type: string
description: 'Notes about the product.'
example: 'These are some notes about the product.'
2024-02-10 05:56:31 +01:00
cost:
type: number
format: double
description: 'The cost of the product.'
example: 10.0
2024-02-10 05:56:31 +01:00
price:
type: number
format: double
description: 'The price of the product.'
example: 20.0
2024-02-10 05:56:31 +01:00
quantity:
type: number
format: double
description: 'The quantity of the product.'
example: 5.0
2024-02-10 05:56:31 +01:00
default: 1
tax_name1:
type: string
description: 'The name of tax 1.'
example: 'Tax 1'
2024-02-10 05:56:31 +01:00
tax_rate1:
type: number
format: double
description: 'The rate of tax 1.'
example: 10.0
2024-02-10 05:56:31 +01:00
tax_name2:
type: string
description: 'The name of tax 2.'
example: 'Tax 2'
2024-02-10 05:56:31 +01:00
tax_rate2:
type: number
format: double
description: 'The rate of tax 2.'
example: 5.0
2024-02-10 05:56:31 +01:00
tax_name3:
type: string
description: 'The name of tax 3.'
example: 'Tax 3'
2024-02-10 05:56:31 +01:00
tax_rate3:
type: number
format: double
description: 'The rate of tax 3.'
example: 0.0
2024-02-10 05:56:31 +01:00
in_stock_quantity:
type: integer
format: int32
description: |
The quantity of the product that is currently in stock.
**note** this field is not mutable without passing an extra query parameter which will allow modification of this value.
The query parameter ?update_in_stock_quantity=true **MUST** be passed if you wish to update this value manually.
default: 0
2024-02-10 05:56:31 +01:00
stock_notification:
type: boolean
description: Indicates whether stock notifications are enabled for this product
default: true
2024-02-10 05:56:31 +01:00
stock_notification_threshold:
type: integer
format: int32
description: The minimum quantity threshold for which stock notifications will be triggered
default: 0
2024-02-10 05:56:31 +01:00
max_quantity:
type: integer
format: int32
description: The maximum quantity that can be ordered for this product
2024-02-10 05:56:31 +01:00
product_image:
type: string
description: The URL of the product image
format: uri-reference
2024-02-10 05:56:31 +01:00
tax_id:
type: string
default: '1'
2024-02-10 05:56:31 +01:00
description: |
The tax category id for this product.'
The following constants are available (default = '1')
```
PRODUCT_TYPE_PHYSICAL = '1'
PRODUCT_TYPE_SERVICE = '2'
PRODUCT_TYPE_DIGITAL = '3'
PRODUCT_TYPE_SHIPPING = '4'
PRODUCT_TYPE_EXEMPT = '5'
PRODUCT_TYPE_REDUCED_TAX = '6'
PRODUCT_TYPE_OVERRIDE_TAX = '7'
PRODUCT_TYPE_ZERO_RATED = '8'
PRODUCT_TYPE_REVERSE_TAX = '9'
```
example: '1'