28 lines
713 B
YAML
28 lines
713 B
YAML
title: Priced Shipping Option
|
|
type: object
|
|
allOf:
|
|
- $ref: ./ShippingOption.yaml
|
|
- type: object
|
|
properties:
|
|
price_incl_tax:
|
|
type: number
|
|
description: Price including taxes
|
|
tax_rates:
|
|
type: array
|
|
description: An array of applied tax rates
|
|
items:
|
|
type: object
|
|
properties:
|
|
rate:
|
|
type: number
|
|
description: The tax rate value
|
|
name:
|
|
type: string
|
|
description: The name of the tax rate
|
|
code:
|
|
type: string
|
|
description: The code of the tax rate
|
|
tax_amount:
|
|
type: number
|
|
description: The taxes applied.
|