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
- : Int
- # A code from [ONIX code list 41](https://ns.editeur.org/onix/en/41),
- #
- # ONIX Prize or award achievement
- : ONIXCode
- # The prize or award achievement code for the prize
- : 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"
- : ONIXCode
- # The country or region code for the prize
- : ONIXTerritoryCode
- # List of the members of the jury that awarded the prize
- : String
- # The name of a prize or award which the product or work has received
- : String!
- # A short free-text description of the prize or award, intended primarily for
- # display
- : String
- # The year in which a prize or award was given
- : Int
- # The work to which the prize relates
- : Work!
- # The IDs of products linked to this prize
- : [Int!]!
- }