OBJECT

Prize

An optional group of data elements which together describe a prize or award won by the product or work, and repeatable where it has gained multiple prizes or awards

link GraphQL Schema definition

  • type Prize {
  • # The unique Consonance identifier
  • id: Int
  • # A code from [ONIX code list 41](https://ns.editeur.org/onix/en/41),
  • #
  • # ONIX Prize or award achievement
  • onixPrizeAchievement: ONIXCode
  • # The prize or award achievement code for the prize
  • onixPrizeAchievementCode: ONIXPrizeAchievement
  • # "A code from [ONIX code list 91](https://ns.editeur.org/onix/en/91) Country,
  • # or [ONIX code list 49](https://ns.editeur.org/onix/en/49) Region"
  • onixTerritory: ONIXCode
  • # The country or region code for the prize
  • onixTerritoryCode: ONIXTerritoryCode
  • # List of the members of the jury that awarded the prize
  • prizeJury: String
  • # The name of a prize or award which the product or work has received
  • prizeName: String!
  • # A short free-text description of the prize or award, intended primarily for
  • # display
  • prizeStatement: String
  • # The year in which a prize or award was given
  • prizeYear: Int
  • # The work to which the prize relates
  • prizeable: Work!
  • # The IDs of products linked to this prize
  • productIds: [Int!]!
  • }