OBJECT

SupplierDocument

Compliance (or other) documents for a supplier.

link GraphQL Schema definition

  • type SupplierDocument {
  • # The client this document is for.
  • supplier: Supplier
  • # Unique ID.
  • id: Int!
  • # The type of document.
  • document: Document
  • # A link to the document.
  • file_attachment: String
  • # The time this document was created.
  • created_time: DateTime!
  • # The time this document was last modified.
  • modified_time: DateTime
  • # The date for date-based expiry documents. For example, annual registration
  • # renewal.
  • expiry_date: DateTimeExpression
  • # The date at which to be alerted of an impending expiry.
  • expiry_date_alert: DateTimeExpression
  • # The number for number-based expiry documents.
  • # For example, 1000 km service, or 1000 operating hours service.
  • expiry_number: Float
  • # The number at which to be alerted of an impending expiry.
  • expiry_number_alert: Float
  • # Additional comments on the document.
  • comments: String
  • # True if the document is active, false if it is archived.
  • is_active: Boolean!
  • # True if the document is disabled (i.e. won't generate alerts).
  • is_disabled: Boolean!
  • # The status of the entity
  • status: ExpiryStatuses!
  • }