Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.86 KB

File metadata and controls

22 lines (18 loc) · 1.86 KB

Source

An object representing a data source. Sources are the databases, APIs, and other data applications that Stitch replicates data from. Sources can be retrieved in a list or individually by ID.

Properties

Name Type Description Notes
id int The unique identifier for this source. [optional]
created_at str The time at which the source object was created. [optional]
deleted_at str The time at which the source object was deleted. [optional]
display_name str The display name of the source connection. [optional]
name str The name of the source connection, dynamically generated from `display_name`. The `name` corresponds to the destination schema name that the data from this source will be loaded into. Names must: - Contain only lowercase alphanumerics and underscores - Be unique within each Stitch client account [optional]
paused_at str If the connection was paused by the user, the time the pause began. Otherwise, or if the connection is active, this will be `null`. [optional]
properties SourceFormProperties [optional]
report_card SourceReportCard [optional]
stitch_client_id int The ID of the Stitch client account. [optional]
system_paused_at str If the connection was paused by the system, the time the pause began. Otherwise, or if the connection is active, this will be null. [optional]
type str The source type. [optional]
updated_at str The time at which the object was last updated. [optional]

[Back to Model list] [Back to API list] [Back to README]