OBJECT

SystemPrice

link GraphQL Schema definition

  • type SystemPrice {
  • # The price amount
  • amount: Float
  • # The product-price record's unique Consonance identifier, not an integer but a
  • # combination of
  • # currency, price type and price qualifier. This format is structured like
  • # CCC-TT-QQ where:
  • # CCC is the currency.
  • # TT is a code for the price type e.g. 01 means RRP (from a list which is a subset
  • # of ONIX code list 58).
  • # QQ is the ONIX price type qualifier e.g. 05 means consumer (from a list which is
  • # a subset of ONIX code list 59).
  • # e.g. USD-01-05 is the USD consumer RRP price.
  • id: String!
  • # The price label
  • label: String!
  • # The price symbol
  • symbol: String
  • }