INTERFACE

ImportrecipeableInterface

An entity that defines the recipe for an Import.

link GraphQL Schema definition

  • interface ImportrecipeableInterface {
  • # The ID of the entity.
  • id: Int64Bit!
  • # An ID that uniquely identifies this entity across the whole Sonar system.
  • sonar_unique_id: ID!
  • # The date and time this entity was created.
  • created_at: Datetime!
  • # The last date and time this entity was modified.
  • updated_at: Datetime!
  • # The ID of a User.
  • user_id: Int64Bit
  • # The status.
  • status: ImportStatus!
  • # The progress of an import as a percentage.
  • progress: Int
  • # Any errors encountered for this import.
  • errors: Clob
  • # How many records passed validation checks during import.
  • clean_records: Int
  • # How many records did not pass validation checks during import.
  • failed_records: Int
  • # The identifier of a unique batch at Flatfile.
  • flatfile_batch_identifier: String
  • # A hash of the data content of an import.
  • hash: String
  • # The start date and time for the import.
  • start_datetime: Datetime
  • }