VAT
Represents a VAT rate for a country.
type VAT {
countryCode: String!
standardRate: Float
reducedRates: [ReducedRate!]!
}
Fields
VAT.countryCode
● String!
non-null scalar
Country code.
VAT.standardRate
● Float
scalar
Standard VAT rate in percent.
VAT.reducedRates
● [ReducedRate!]!
non-null object
Country's VAT rate exceptions for specific types of goods.
Member of
CountryDisplay
object