OBJECT

ShipmentDoc

Represents a document associated with a shipment

link GraphQL Schema definition

  • type ShipmentDoc implements RecordDoc {
  • # A link to download the document.
  • url: URL!
  • # The filename of the file.
  • name: String!
  • # Document tags associated with the document.
  • tags: [ShipmentDocTag!]
  • # The shipment doc's content type.
  • contentType: String!
  • # The shipment doc's size.
  • size: Int
  • # A flag indicating that a doc has been rejected by INLT
  • rejected: Boolean
  • # The time that the doc was rejected
  • rejectedTime: String
  • # The reason code for the doc rejection
  • rejectionCode: ShipmentDocRejectionCode
  • # Additional explanatory text from INLT
  • rejectionText: String
  • # A flag indicating that INLT requires more information regarding the doc
  • inquired: Boolean
  • # The time that the inquiry was filed
  • inquiredTime: String
  • # The text of the inquiry
  • inquiredText: String
  • }