Skip to main content
GET
/
transformations
/
schema
/
{schemaType}
Python SDK
from cognite.client.data_classes import TransformationDestination
columns = client.transformations.schema.retrieve(destination = TransformationDestination.assets())
{
  "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.

Path Parameters

schemaType
string
required

Name of the target schema type, please provide one of the following: assets, timeseries, asset_hierarchy, events, datapoints string_datapoints, sequences, files, labels, relationships, raw, data_sets

Query Parameters

conflictMode
string

One of the following conflictMode types can be provided: abort, upsert, update, delete

Response

Response with the schema columns of the target schema type

items
object[]
Last modified on April 23, 2026