> For the complete documentation index, see [llms.txt](https://developer.collibra.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.collibra.com/api/graphql/data-access/input-types/data-source-input.md).

# DataSourceInput

Input object for creating or updating a data source.

```graphql
input DataSourceInput {
  catalogSystemId: UUID @deprecated
  description: String
  edgeConnectionId: String
  edgeSiteId: String
  name: String
  parent: String
  syncSchedule: DataSourceSyncScheduleInput
  type: String
}
```

### Fields

#### catalogSystemId ● [`UUID`](/api/graphql/data-access/scalars/uuid.md) deprecated scalar <a href="#catalog-system-id" id="catalog-system-id"></a>

> **WARNING - DEPRECATED**

Use setDataObjectCatalogSystem on the data object matching catalogSystemDataObjectType instead. Will be removed after release 2027.01

The optional UUID of the system asset from Collibra Catalog this data source corresponds with. Pass 00000000-0000-0000-0000-000000000000 to clear.

#### description ● [`String`](/api/graphql/data-access/scalars/string.md) scalar <a href="#description" id="description"></a>

The description of the data source.

#### edgeConnectionId ● [`String`](/api/graphql/data-access/scalars/string.md) scalar <a href="#edge-connection-id" id="edge-connection-id"></a>

The ID of the Edge Connection associated with this data source.

#### edgeSiteId ● [`String`](/api/graphql/data-access/scalars/string.md) scalar <a href="#edge-site-id" id="edge-site-id"></a>

The ID of the Edge Site associated with this data source.

#### name ● [`String`](/api/graphql/data-access/scalars/string.md) scalar <a href="#name" id="name"></a>

The display name of the data source.

#### parent ● [`String`](/api/graphql/data-access/scalars/string.md) scalar <a href="#parent" id="parent"></a>

The optional parent data source.

#### syncSchedule ● [`DataSourceSyncScheduleInput`](/api/graphql/data-access/input-types/data-source-sync-schedule-input.md) input <a href="#sync-schedule" id="sync-schedule"></a>

The synchronization schedule configuration.

#### type ● [`String`](/api/graphql/data-access/scalars/string.md) scalar <a href="#type" id="type"></a>

type indicates the type of data source (Snowflake, BigQuery, etc.).

### Member Of

[`createDataSource`](/api/graphql/data-access/mutations/create-data-source.md) mutation ● [`updateDataSource`](/api/graphql/data-access/mutations/update-data-source.md) mutation
