OBJECT

ImporterDoc

Represents a document associated with an importer

link GraphQL Schema definition

  • type ImporterDoc implements RecordDoc {
  • # A link to download the document.
  • url: URL!
  • # The filename of the file.
  • name: String!
  • # Document tags associated with the document.
  • tags: [ImporterDocTag!]
  • # The importer doc's content type.
  • contentType: String!
  • # The importer 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: ImporterDocRejectionCode
  • # 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
  • }