OBJECT

Price

An optional group of data elements which together describe a price

link GraphQL Schema definition

  • type Price {
  • # The price amount
  • amount: Float!
  • # The price amount, prefixed with the currency code, and separated with a space
  • # e.g. "USD 24.99"
  • amountWithCurrencyCode: String!
  • # The price amount, prefixed with the currency symbol e.g. "$24.99"
  • amountWithCurrencySymbol: String!
  • # The price's currency
  • currency: Currency!
  • # The price's three character ISO 4217 code
  • currencyCode: String!
  • # The price in the EAN-5 (European Article Number) code format
  • ean5: String
  • # The date on which the price is in effect
  • effectiveFrom: ISO8601Date
  • # The date after which the price is no longer in effect
  • effectiveTo: ISO8601Date
  • # The price record's unique Consonance identifier
  • id: Int!
  • # The price label
  • label: String!
  • # The price's ONIX type
  • onixPriceType: ONIXCode!
  • # The price's ONIX type
  • onixPriceTypeCode: ONIXPriceTypeCode!
  • # The price's ONIX type qualifier
  • onixPriceTypeQualifier: ONIXCode!
  • # The price's ONIX type qualifier
  • onixPriceTypeQualifierCode: ONIXPriceTypeQualifierCode!
  • }