OBJECT

DeliveryDate

A delivery date, showing the deliverable type, requirement, due date, percentage, and slipped date

link GraphQL Schema definition

  • type DeliveryDate {
  • # The id of the associated client
  • clientId: Int!
  • # The id of the associated contract
  • contractId: Int!
  • # The due date of the deliverable
  • dateDue: ISO8601Date
  • # The type of deliverable description
  • deliverableType: String
  • # The delivery requirement description of the deliverable
  • deliveryRequirement: String
  • # The unique Consonance identifier
  • id: Int!
  • # The percentage completion of the deliverable
  • percentageOfTotal: Float
  • # The slipped date of the deliverable
  • slippedDate: ISO8601Date
  • }