OBJECT
Contract
A contract, forming a publication agreement between the client and a rights holder
link GraphQL Schema definition
- type Contract {
- # The actual MS delivery date
- : ISO8601Date
- # The author discount
- : String
- # The client associated with the contract
- : Client
- # The Consonance unique client identifier
- : Int!
- # An in-house name for the contract
- : String!
- # The copyright year
- : String
- # List of deliverables for the contract
- : [DeliveryDate!]!
- # A description for the contract
- : String
- # The flat fee amount
- : Float
- # The number of free copies
- : String
- # The number of free copies used
- : String
- # The gratis copies associated with the contract
- : [GratisCopy!]!
- # The guaranteed royalty
- : Float
- # The unique Consonance identifier
- : Int!
- # The licensed rights associated with the contract
- : [LicensedRight!]!
- # The planned MS delivery date
- : ISO8601Date
- # The MS proofs date
- : ISO8601Date
- # The pub before date
- : ISO8601Date
- # The remainder rate
- : String
- # The remainder rate for sales above cost
- : Float
- # The review date
- : ISO8601Date
- # The revised MS delivery date
- : ISO8601Date
- # The date the contract was signed
- : ISO8601Date
- # The contract term in months
- : String
- # The last day the contract is in force
- : ISO8601Date
- # The circumstances under which the contract is expiring
- : String
- # The work to which the contract is attached
- : Work
- }