Skip to main content
GET
/
transformations
/
schema
/
instances
Get Instance schema.
curl --request GET \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/transformations/schema/instances \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "name": "<string>",
      "sqlType": "<string>",
      "type": {
        "type": "<string>"
      },
      "nullable": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Query Parameters

conflictMode
enum<string>

conflict mode of the transformation. One of the following conflictMode types can be provided: upsert, delete

Available options:
abort,
upsert,
update,
delete
viewSpace
string

Space of the View. Not required if isConnectionDefinition is true. Relevant for View centric schema.

Minimum string length: 1
viewExternalId
string

External id of the View. Not required if isConnectionDefinition is true. Relevant for View centric schema.

Minimum string length: 1
viewVersion
string

Version of the View. Not required if isConnectionDefinition is true. Relevant for View centric schema.

Minimum string length: 1
instanceType
enum<string>

Instance type to deal with

Available options:
nodes,
edges
withInstanceSpace
boolean

Is instance space set at the transformation config or not

isConnectionDefinition
boolean

If the edge is a connection definition or not

dataModelSpace
string

Space of the Data Model. Relevant for Data Model centric schema.

Minimum string length: 1
dataModelExternalId
string

External id of the Data Model. Relevant for Data Model centric schema.

Minimum string length: 1
dataModelVersion
string

Version of the Data Model. Relevant for Data Model centric schema.

Minimum string length: 1
type
string

External id of the View in the Data model. Relevant for Data Model centric schema.

Minimum string length: 1
relationshipFromType
string

Property Identifier of Connection Definition in type. Relevant for Data Model centric schema.

Minimum string length: 1

Response

Response with the schema columns of the target schema type

items
object[]
Last modified on April 23, 2026