IBM Cloud API Docs

Introduction

You can use a collection of Watson Data REST APIs associated with Watson Studio and Watson Knowledge Catalog to manage data-related assets and the people who need to use these assets.

Refine data Use the sampling APIs to create representative subsets of the data on which to test and refine your data cleansing and shaping operations. To better understand the contents of your data, you can create profiles of your data assets that include a classification of the data and additional distribution information which assists in determining the data quality.

Catalog data Use the catalog APIs to create catalogs to administer your assets, associate properties with those assets, and organize the users who use the assets. Assets can be notebooks or connections to files, database sources, or data assets from a connection.

Data policies Use the data policy APIs to implement data policies and a business glossary that fits to your organization to control user access rights to assets and to make it easier to find data.

Ingest streaming data Use the streams flow APIs to hook up continuous, unidirectional flows of massive volumes of moving data that you can analyze in real time.

API Endpoint

https://api.dataplatform.cloud.ibm.com

Creating an IAM bearer token

Before you can call a Watson Data API you must first create an IAM bearer token. Each token is valid only for one hour, and after a token expires you must create a new one if you want to continue using the API. The recommended method to retrieve a token programmatically is to create an API key for your IBM Cloud identity and then use the IAM token API to exchange that key for a token.

You can create a token in IBM Cloud or by using the IBM Cloud command line interface (CLI).

To create a token in the IBM Cloud:

  1. Log in to IBM Cloud and select Manage > Access (IAM) > API keys.
  2. Create an API key for your own personal identity, copy the key value, and save it in a secure place. After you leave the page, you will no longer be able to access this value.
  3. With your API key, set up Postman or another REST API tool and run the following command to the right

You can read more about managing API keys at Understanding API keys documentation page.

  1. Use the value of the access_token property for your Watson Data API calls. Set the access_token value as the authorization header parameter for requests to the Watson Data APIs. The format is Authorization: Bearer <access_token_value_here>. For example:
    Authorization: Bearer eyJhbGciOiJIUz......sgrKIi8hdFs

To create a token by using the IBM Cloud CLI:

  1. Follow the steps to install the CLI, log in to IBM Cloud, and get the token described here.

    Remove Bearer from the returned IAM token value in your API calls.

Curl command with API key to retrieve token

curl -X POST 'https://iam.cloud.ibm.com/identity/token'   -H 'Content-Type: application/x-www-form-urlencoded'   -d 'grant_type=urn:ibm:params:oauth:grant-type:apikey&apikey=MY_APIKEY'

Response

{
"access_token": "eyJhbGciOiJIUz......sgrKIi8hdFs",
"refresh_token": "SPrXw5tBE3......KBQ+luWQVY=",
"token_type": "Bearer",
"expires_in": 3600,
"expiration": 1473188353
}

Versioning

Watson Data API has a major, minor, and patch version, following industry conventions on semantic versioning: Using the version number format MAJOR.MINOR.PATCH, the MAJOR version is incremented when incompatible API changes are made, the MINOR version is incremented when functionality is added in a backwards-compatible manner, and the PATCH version is incremented when backwards-compatible bug fixes are made. The service major version is represented in the URL path.

Sorting

Some of the Watson Data API collections provide custom sorting support. Custom sorting is implemented using the sort query parameter. Service collections can also support single-field or multi-field sorting. The sort parameter in collections that support single-field sorting can contain any one of the valid sort fields.

For example, the following expression would sort accounts on company name (ascending):GET /v2/accounts?sort=company_name.

You can also add a + or - character, indicating “ascending” or “descending,” respectively.

For example, the expression below would sort on the last name of the account owner, in descending order:GET /v2/accounts?sort=-owner.last_name.

The sort parameter in collections that support sorting on multiple fields can contain a comma-separated sequence of fields (each, optionally, with a + or -) in the same format as the single-field sorting. Sorts are applied to the data set in the order that they are provided. For example, the expression below would sort accounts first on company name (ascending) and second on owner last name (descending): GET /v2/accounts?sort=company_name,-owner.last_name

Filtering

Some of the Watson Data API collections provide filtering support. You can specify one or more filters where each supported field is required to match a specific value for basic filtering. The query parameter names for a basic filter must exactly match the name of a primitive field on a resource in the collection or a nested primitive field where the '.' character is the hierarchical separator. The only exception to this rule is for primitive arrays. In primitive arrays, such as tags, a singular form of the field is supported as a filter that matches the resource if the array contains the supplied value. Some of the Watson Data API collections can also support extended filtering comparisons for the following field types: Integer and float, date and date/time, identifier and enumeration, and string.

Rate Limiting

The following rate limiting headers are supported by some of the Watson Data service APIs: 1. X-RateLimit-Limit: If rate limiting is active, this header indicates the number of requests permitted per hour; 2. X-RateLimit-Remaining: If rate limiting is active, this header indicates the number of requests remaining in the current rate limit window; 3. X-RateLimit-Reset: If rate limiting is active, this header indicates the time at which the current rate limit window resets, as a UNIX timestamp.

Error Handling

Responses with 400-series or 500-series status codes are returned when a request cannot be completed. The body of these responses follows the error model, which contains a code field to identify the problem and a message field to explain how to solve the problem. Each individual endpoint has specific error messages. All responses with 500 or 503 status codes are logged and treated as a critical failure requiring an emergency fix.

Connections

A connection is the information necessary to create a connection to a data source or a repository. You create a connection asset by providing the connection information.

List data source types

Data sources are where data can be written or read and might include relational database systems, file systems, object storage systems and others.

To list supported data source types, call the following GET method:

GET /v2/datasource_types

The response to the GET method includes information about each of the sources and targets that are currently supported. The response includes a unique ID property value metadata.asset_id, name, and a label. The metadata.asset_id property value should be used for the data source in other APIs that reference a data source type. Additional useful information such as whether that data source can be used as a source or target (or both) is also included.

You can also view a table of the individual data source properties obtained by this GET method at https://dataplatform.cloud.ibm.com/connections/docs.

Use the connection_properties=true query parameter to return a set of properties for each data source type that is used to define a connection to it. Use the interaction_properties=true query parameter to return a set of properties for each data source type that is used to interact with a created connection. Interaction properties for a relational database might include the table name and schema from which to retrieve data.

Use the _sort query parameter to order the list of data source type returned in the response.

A default maximum of 100 data source type entries are returned per page of results. Use the _limit query parameter with an integer value to specify a lower limit.

More data source types than those on the first page of results might be available. Additional properties generated from the page size initially specified with _limit are returned in the response. Call a GET method using the value of the next.href property to retrieve the next page of results. Call a GET method using the value in the prev.href property to retrieve the previous page of results. Call a GET method using the value in the last.href property to retrieve the last page of results.

These URIs use the _offset and _limit query parameters to retrieve a specific block of data source types from the full list. Alternatively, you can use a combination of the _offset and _limit query parameters to retrieve a custom block of results.

Create a connection

Connections to any of the supported data source types returned by the previous method can be created and persisted in a catalog or project.

To create a connection, call the following POST method:

POST /v2/connections

A new connection can be created in a catalog or project. Use the catalog_id or project_id query parameter to specify where to create the connection asset. Either catalog_id or project_id is required.

The request body for the method is a UTF-8 encoded JSON document and includes the data source type ID (obtained in the List data source types section), its unique name in the catalog or project space, and a set of connection properties specific to the data source. Some connection properties are required.

The following example shows the request body used for creating a connection to IBM dashDB:

{
     "datasource_type": "cfdcb449-1204-44ba-baa6-9a8a878e6aa7",
	 "name":"My-DashDB-Connection",
     "properties": {
	   "host":"dashDBhost.com",
	   "port":"50001",
	   "database":"MYDASHDB",
       "password": "mypassword",
       "username": "myusername"
     }
}

By default, the physical connection to the data source is tested when the connection is created. Use the test=false query parameter to disable the connection test.

A response payload containing a connection ID and other metadata is returned when a connection is successfully created. Use the connection ID as path parameter in other REST APIs when a connection resource must be referenced.

Discover connection assets

Data sources contain data and metadata describing the data they contain.

To discover or browse the data or metadata in a data source, call the following GET method:

GET /v2/connections/{connection_id}/assets?path=

Use the catalog_id or project_id query parameter to specify where the connection asset was created. Either catalog_id or project_id is required.

connection_id is the ID of the connection asset returned from the POST https://{service_URL}/v2/connections method, which created the connection asset.

The path query parameter is required and is used to specify the hierarchical path of the asset within the data source to be browsed. In a relational database, for example, the path might represent a schema and table. For a file object, the path might represent a folder hierarchy.

Each asset in the assets array returned by this method includes a property containing its path in the hierarchy to facilitate the next call to drill down deeper in the hierarchy.

For example, starting at the root path in an RDBMS will return a list of schemas:

{
    "path": "/",
    "asset_types": [
        {
            "type": "schema",
            "dataset": false,
            "dataset_container": true
        }
    ],
    "assets": [
        {
            "id": "GOSALES",
            "type": "schema",
            "name": "GOSALES",
            "path": "/GOSALES"
        },
    ],
    "fields": [],
    "first": {
        "href": "https://wdp-dataconnect-ys1dev.stage1.mybluemix.net/v2/connections/4b28b5c1-d818-4ad2-bcf9-7de08e776fde/assets?catalog_id=75a3062b-e40f-4bc4-9519-308ee1b5b251&_offset=0&_limit=100"
    },
    "prev": {
        "href": "https://wdp-dataconnect-ys1dev.stage1.mybluemix.net/v2/connections/4b28b5c1-d818-4ad2-bcf9-7de08e776fde/assets?catalog_id=75a3062b-e40f-4bc4-9519-308ee1b5b251&_offset=0&_limit=100"
    },
    "next": {
        "href": "https://wdp-dataconnect-ys1dev.stage1.mybluemix.net/v2/connections/4b28b5c1-d818-4ad2-bcf9-7de08e776fde/assets?catalog_id=75a3062b-e40f-4bc4-9519-308ee1b5b251&_offset=100&_limit=100"
    }
}

Drill down into the GOSALES schema using the path property for the GOSALES schema asset to discover the list of table assets in the schema.

GET /v2/connections/{connection_id}/assets?catalog_id={catalog_id}&path=/GOSALES

The list of table type assets is returned in the response.

{
    "path": "/GOSALES",
    "asset_types": [
        {
            "type": "table",
            "dataset": true,
            "dataset_container": false
        }
    ],
    "assets": [
        {
            "id": "BRANCH",
            "type": "table",
            "name": "BRANCH",
            "description": "BRANCH contains address information for corporate offices and distribution centers.",
            "path": "/GOSALES/BRANCH"
        },
        {
            "id": "CONVERSION_RATE",
            "type": "table",
            "name": "CONVERSION_RATE",
            "description": "CONVERSION_RATE contains currency exchange values.",
            "path": "/GOSALES/CONVERSION_RATE"
        }
    ],
    "fields": [],
    "first": {
        "href": "https://wdp-dataconnect-ys1dev.stage1.mybluemix.net/v2/connections/4b28b5c1-d818-4ad2-bcf9-7de08e776fde/assets?catalog_id=75a3062b-e40f-4bc4-9519-308ee1b5b251&_offset=0&_limit=100"
    },
    "prev": {
        "href": "https://wdp-dataconnect-ys1dev.stage1.mybluemix.net/v2/connections/4b28b5c1-d818-4ad2-bcf9-7de08e776fde/assets?catalog_id=75a3062b-e40f-4bc4-9519-308ee1b5b251&_offset=0&_limit=100"
    },
    "next": {
        "href": "https://wdp-dataconnect-ys1dev.stage1.mybluemix.net/v2/connections/4b28b5c1-d818-4ad2-bcf9-7de08e776fde/assets?catalog_id=75a3062b-e40f-4bc4-9519-308ee1b5b251&_offset=100&_limit=100"
    }
}

Use the fetch query parameter with a value of either data, metadata, or both. Data can only be fetched for data set assets. In the response above, note the asset_type has the property type value of table. Its dataset property value is true. This means that data can be fetched from table type assets. However, if you fetched assets from the connection root, the response would contain schema asset types, which are not data sets and thus fetching this data is not relevant.

A default maximum of 100 metadata assets are returned per page of results. Use the _limit query parameter with an integer value to specify a lower limit. More assets than those on the first page of results might be available.

Additional properties generated from the page size initially specified with _limit are returned in the response. Call a GET method using the value of the next.href property to retrieve the next page of results. Call a GET method using the value in the prev.href property to retrieve the previous page of results. Call a GET method using the value in the last.href property to retrieve the last page of results.

These URIs use the _offset and _limit query parameters to retrieve a specific block of assets from the full list. Alternatively, use a combination of the _offset and _limit query parameters to retrieve a custom block of results.

Specify properties for reading delimited files

When reading a delimited file using this method, specify property values to correctly parse the file based on its format. These properties are passed to the method as a JSON object using the properties query parameter. The default file format (property file_format) is a CSV file. If the file is a CSV, the following property values are set by default:

Property Name Property Description Default Value Value Description
quote_character quote character double_quote double quotation mark
field_delimiter field delimiter comma comma
row_delimiter row delimiter carriage_return_linefeed carriage return followed by line feed
escape_character escape character double_quote double quotation mark

For CSV file formats, these property values can not be overwritten. If it is necessary to modify these properties to properly read a delimited file, set the file_format property to delimited. For generic delimited files, these properties have the following values:

Property Name Property Description Default Value Value Description
quote_character quote character none no character is used for a quote
field_delimiter field delimiter null no field delimiter value is set by default
row_delimiter row delimiter new_line Any new line representation
escape_character escape character none no character is used for an escape

This example sets file format properties for a generic delimited file:

GET https://{service_URL}/v2/connections/{connection_id}/assets?catalog_id={catalog_id}&path=/myFolder/myFile.txt&fetch=data&properties={"file_format":"delimited", "quote_character":"single_quote","field_delimiter":"colon","escape_character":"backslash"}

For more information about this method see the REST API Reference.

Discover assets using a transient connection

A data source's assets can be discovered without creating a persistent connection.

To browse assets without first creating a persistent connection, call the following POST method:

POST https://{service_URL}/v2/connections/assets?path=

This method is identical in behavior to the GET method in the Discover connection assetssection except for two differences:

  1. You define the connection properties in the request body of the REST API. You do not reference the connection ID of a persistent connection with a query parameter. The same JSON object used to create a persistent connection is used in the request body.
  2. You do not specify a catalog or project ID with a query parameter.

See the previous section to learn how to set properties used to read delimited files.

For more information about this method see the REST API Reference.

Update a connection

To modify the properties of a connection, call the following PATCH method:

PATCH /v2/connections/{connection_id}

connection_id is the ID of the connection asset returned from the POST https://{service_URL}/v2/connections method, which created the connection asset.

Use the catalog_id or project_id query parameter to specify where the connection asset was created. Either catalog_id or project_id is required.

Set the Content-Type header to application/json-patch+json. The request body contains the connection properties to update using a JSON object in JSON Patch format.

Change the port number of the connection and add a description using this JSON Patch:

[
	{
		"op": "add",
		"path": "/description",
		"value": "My new PATCHed description"
	},
	{
		"op":"replace",
		"path":"/properties/port",
		"value":"40001"
	}
]

By default, the physical connection to the data source is tested when the connection is modified. Use the test=false query parameter to disable the connection test.

For more information about this method see the REST API Reference.

Delete a connection

To delete a persistent connection, call the following DELETE method:

DELETE /v2/connections/{connection_id}

connection_id is the ID of the connection asset returned from the POST https://{service_URL}/v2/connections method, which created the connection asset.

Use the catalog_id or project_id query parameter to specify where the connection asset was created. Either catalog_id or project_id is required.

Schedules

Introduction

Schedules allow you to run a data flow, a notebook, a data profile, or any other given source more than once. It supports various repeat types namely hour, day, week, month, and year with 2 repeat end options namely, end date and the maximum number of runs.

Create a schedule

To create a schedule in a specified catalog or project, call the following POST method:

     HTTP Method : POST
     URI : /v2/schedules

Before you create a schedule, you must consider the following points:

  1. You must have a valid IAM token to make REST API calls and a project or catalog ID.

  2. You must be authorized (be assigned the correct role) to create schedules in the catalog or project.

  3. The start and end dates must be in the following format: YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ (specified in RFC 3339).

  4. The supported repeat types are hour, day, week, month, and year.

  5. There are 2 repeat end options, namely max_invocations and end_date.

  6. The supported repeat interval is 1.

  7. There are 3 statuses for schedules, namely enabled, disabled, and finished. To create a schedule, the status must be enabled. The scheduling service updates the status to finished once it has finished running. You can stop or pause the scheduling service by updating the status to disabled.

  8. You can update the endpoint URI in the target HREF. Supported target methods are POST, PUT, PATCH, DELETE, and GET.

  9. Set generate_iam_token=true. When this option is set to true, the scheduling service generates an IAM token and passes it to the target URL at runtime. This IAM token is required to run schedules automatically at the scheduled intervals. This token is not to be confused with the IAM token required to make Watson Data API REST calls.

This POST method creates a schedule in a catalog with a defined start and a given end date:

    {
    "catalog_id": "aeiou",
    "description": "aeiou",
    "name": "aeiou",
    "tags": ["aeiou"],
    "start_date": "2017-08-22T01:02:14.859Z",
    "status": "enabled",
    "repeat": {
        "repeat_interval": 1,
        "repeat_type": "hour"
    },
    "repeat_end": {
        "end_date": "2017-08-24T01:02:14.859Z"
    },
    "target": {
        "href": "https://api.dataplatform.cloud.ibm.com/v2/data_profiles?start=false",
        "generate_iam_token": true,
        "method": "POST",
        "payload": "aeiou",
        "headers": [
         {
            "name": "content-type",
            "value": "application/json",
            "sensitive": false
           }
        ]
      }
    }

Get multiple schedules in a catalog or project

To get all schedules in the specified catalog or project, call the following GET method:

 HTTP Method: GET
 URI :/v2/schedules

You need the following information to get multiple schedules:

  1. A valid IAM token, schedule ID, and the catalog or project ID.

  2. You must be authorized to get schedules in the catalog or project.

You can filter the returned results by using the options entity.schedule.name and entity.schedule.status and can filter matching types by using StartsWith(starts:) and Equals(e:).

You can sort the returned results either in ascending or descending order by using one or more of the following options: entity.schedule.name, metadata.create_time, and entity.schedule.status.

Get a schedule

To get a schedule in the specified catalog or project, call the following GET method:

     HTTP Method: GET
     URI :/v2/schedules/{schedule_id}

You need the following information to get a schedule:

  1. A valid IAM token, schedule ID, and the catalog or project ID.

  2. You must be authorized to get a schedule in the catalog or project.

Update a schedule

To update a schedule in the specified catalog or project, call the following PATCH method:

HTTP Method: PATCH
URI :/v2/schedules/{schedule_id}

You need the following information to update a schedule:

  1. A valid IAM token, schedule ID, and the catalog or project ID.

  2. You must be authorized to update a schedule in the catalog or project.

You can update all the attributes under entity but can't update the attributes under meta-data.

Patch supports the replace, add, and remove operations. The replace operation can be used with all the attributes under entity. The add and remove operations can only be used with the repeat end options, namely max_invocations and end_date.

The start and end dates must be in the following format: YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ (specified in RFC 3339).

This PATCH method replaces the repeat type, removes the max invocations and adds an end date:

    [
     {
     "op": "remove",
     "path": "/entity/schedule/repeat_end/max_invocations",
     "value":  20
     },
     {
     "op": "add",
     "path": "/entity/schedule/repeat_end/end_date",
     "value": "date"
     },
     {
     "op": "replace",
     "path": "/entity/schedule/repeat/repeat_type",
     "value":  "week"
     }
    ]

Delete a schedule

To delete a schedule in the specified catalog or project, call the following DELETE method:

    HTTP Method : DELETE
    URI :{GATEWAY_URL}/v2/schedules/{schedule_id}

":guid" represents the schedule_id of the deleted schedule.

You need the following information to delete a schedule:

  1. A valid IAM token, schedule ID, and the catalog or project ID.

  2. You must be authorized to delete a schedule in the catalog or project.

Delete multiple schedules

To delete multiple schedules in the specified catalog or project, call the following DELETE method:

HTTP Method: DELETE
URI :{GATEWAY_URL}/v2/schedules

":guid" represents the schedule_id of the deleted schedule.

You need the following information to delete multiple schedules:

  1. A valid IAM token, schedule ID, and the catalog or project ID.

  2. You must be authorized to delete schedules in the catalog or project.

  3. A comma-separated list of the schedule IDs. If schedule IDs are not listed in the parameter schedule_ids, the scheduling service will delete all the schedules in the catalog or project.

Catalogs

IBM Knowledge Catalog helps you easily organize, find and share data assets, analytical assets, etc. for many data science projects and for the users who need to use those assets.

You can use the Catalog API to create catalogs which are rich metadata repositories for organizing and exploring metadata.

There are two phrases that will be used repeatedly throughout this (and the "Assets" and "Asset Types") documentation:

  • asset resource: The primary content of the asset. Many assets have a resource that is stored in an external repository: a data file, connected data set, notebook file, dashboard definition, or model definition.

  • asset metadata: The information about the asset resource. Each asset has a primary metadata document in a project or catalog and might have additional metadata documents.

See the Asset Terminology section for more information about those two phrases.

There is one special user-provided storage that must be specified by the creator of a catalog at the time the catalog is created: a Cloud Object Storage bucket for public cloud deployment and a file system for hybrid cloud deployment. We'll informally call that the "catalog's bucket". The creator of the catalog owns that bucket, but by providing that bucket's identification info during catalog creation, the catalog creator is allowing the IBM Knowledge Catalog graphical User Interface to store asset resources in that bucket and is allowing other IBM Knowledge Catalog APIs to stored (extended) asset metadata in that bucket.

If a user wants to store and retrieve asset resources (like spreadsheets, images, etc.) in the catalog's bucket, then that user can use the Assets API API to assist in that process.

In some cases, one of the other IBM Knowledge Catalog APIs (for example, the "Profiling" API) will store (extended) asset metadata documents in the catalog's bucket.

This section describes some of the individual Catalog APIs.

Get a Catalog

You can get metadata about a catalog using the get Catalog API. (Note: you aren't retrieving the actual data catalog with the GET Catalog API - you're just retrieving metadata that describes the catalog.)

Get Catalog - Request URL:

GET {service_URL}/v2/catalogs/{catalog_id}

Get Catalog - Response Body:

{
	"metadata": {
		"guid": "c6f3cbd8-2b7f-42fb-aa60-___",
		"url": "https://api.dataplatform.cloud.ibm.com/v2/catalogs/c6f3cbd8-2b7f-42fb-aa60-___",
		"creator_id": "IBMid-___",
		"create_time": "2018-11-06T17:40:32Z"
	},
	"entity": {
		"name": "CatalogForGettingStartedDoc",
		"description": "Catalog created for Getting Started doc",
		"generator": "Your catalog generator",
		"bss_account_id": "12345___",
		"capacity_limit": 0,
		"is_governed": false,
		"saml_instance_name": "IBM w3id"
	},
	"href": "https://api.dataplatform.cloud.ibm.com/v2/catalogs/c6f3cbd8-2b7f-42fb-aa60-___"
}

In this case, the response for the Get Catalog request is identical to the response for the Create Catalog request. If more activity had occurred with the catalog between the Create Catalog and the Get Catalog requests then there might have been some differences between the two responses.

Get Catalogs

To obtain the metadata for all the catalogs that you have access to (ie, are a collaborator of), you can call the GET Catalogs API.

Get Catalogs - Request URL:

GET {service_URL}/v2/catalogs

Note: the above URL is the simplest URL for getting catalogs because it doesn't contain any parameters. There are a number of optional parameters (limit, bookmark, skip, include, bss_account_id) to the above URL that you can make use of to limit the number of catalogs for which metadata is returned.

Get Catalogs - Response Body:

{
  "catalogs": [
    {
      "metadata": {
        "guid": "c6f3cbd8-2b7f-42fb-aa60-___",
        "url": "https://api.dataplatform.cloud.ibm.com/v2/catalogs/c6f3cbd8-2b7f-42fb-aa60-___",
        "creator_id": "IBMid-___",
        "create_time": "2018-11-06T17:40:32Z"
      },
      "entity": {
        "name": "CatalogForGettingStartedDoc",
        "description": "Catalog created for Getting Started doc",
        "generator": "Your catalog generator",
        "bss_account_id": "12345___",
        "capacity_limit": 0,
        "is_governed": false,
        "saml_instance_name": "IBM w3id"
      },
      "href": "https://api.dataplatform.cloud.ibm.com/v2/catalogs/c6f3cbd8-2b7f-42fb-aa60-___"
    }
  ],
  "nextBookmark": "g1AAAAFCeJzLYWBgYMlgTmHQSklKzi9KdUhJMjT___",
  "nextSkip": 0
}

In the above example, metadata for only one catalog is returned - the catalog created above. An advantage of calling the GET Catalogs API is you don't have to remember the ID of any particular catalog in order to get the metadata for that catalog.

Assets

From a high level, an asset is an item of data or data analysis in a project or catalog. Most of these assets consist of two parts:

  • Asset resource: The primary content of the asset. Many assets have a resource that is stored in an external repository: a data file (eg. text file, image, video, etc.), connected data set (eg. database table), notebook file, dashboard definition, or model definition. The Assets API does not affect this part of the asset. Think of this as the object that's being described by asset metadata (ie, an asset resource is a "decribee").

  • Asset metadata: The information about the asset resource. Each asset has a primary metadata document in a project or catalog and might have additional metadata documents. This is the part of the asset that you can get, create, or operate on with the Assets API. Think of this as the object that's doing the describing of an asset resource (ie, asset metadata is a "describer").

A library is a useful analogy for understanding the scope of the Assets API. A library contains a set of books and an index. The index, or card catalog, contains a card about each book. A card has information about the book, including the location of the book. A Watson project or catalog contains only the card catalog part of the library. The books, or asset resources, are elsewhere. Consequently, the Assets API can return the location of an asset resource, but not affect the asset resource in any way.

The term asset encapsulates the following:

  • [1] asset resource: the primary / initial resource that a user wants described by a primary metadata document.
  • [2] primary metadata document: a document added to a catalog to describe an asset resource.
  • [3] attributes: chunks of data inside a primary metadata document that describe either the asset resource or a secondary / extended metadata document.
  • [4] secondary / extended metadata documents: additional documents containing information related to the asset resource. Attached to the primary metadata document. Can be generated by catalog processes, such as profiling.
  • [5] a combination of all of the above: the IBM Knowledge Catalog UI presents information from each of the above on a single page and calls all that information an "asset".

For example, when you call the Get Assets API, you receive asset metadata (in a primary metadata document). The asset metadata might point to the location of the asset resource, but the Get Assets API does not return the asset resource. Similarly, when you run the Create Assets API, you create a primary metadata document that can, eventually, include the location of an existing asset resource.

This overview section provides a picture of the parts of a "primary metadata document" and then explains the parts of that picture. The picture provides a kind of "map" of a primary metadata document, so it's recommended to spend a few minutes studying it. Readers who prefer API examples can skip over the explanation of that picture that follows, and go straight to the Assets API Examples section. However, the Assets API Examples section will often refer back to the terms and explanations discussed in this Assets API Overview section.

Note: when calling any of the endpoints in the Assets API you must specify either a catalog ID or a project ID to indicate whether the metadata for an asset is (to be) in a catalog or a project. Because the Assets API endpoints can be applied to either a catalog or a project, rather than repeating the phrase "either a catalog or a project" over and over throughout the rest of this documentation, only the term "catalog" will be used. The possibility of instead using a "project" will be implied.

Asset Primary Metadata Document (or Card)

A primary metadata document is a document that contains the primary metadata for an asset resource. Once a primary metadata document has been created and stored in the catalog, it's often informally said that that asset resource has been "cataloged", or "added to the catalog". Note: being cataloged, or added to the catalog, does not mean the asset resource has been moved or copied and is now physically stored inside the catalog - it just means a primary metadata document has been created for that asset resource, and that primary metadata document is now stored in the catalog.

Almost every Assets API endpoint revolves around creating, reading, modifying or deleting a primary metadata document. JSON is natively used to store primary metadata documents in a catalog, and to transfer those documents in Assets API REST calls. So, JSON examples of primary metadata documents will be used throughout this documentation.

In this documentation, the term card (as in, an index card in a library's catalog) will often be used as a short nickname for the phrase "primary metadata document". In this documentation, "card" and "primary metadata document" mean exactly the same thing. The term "card" just saves us from reading and writing the lengthier phrase "primary metadata document" over and over.

A primary metadata document (ie, card) is a JSON object that's composed of up to three top-level fields, named as follows:

1. [**metadata**](#Section_Assets__Overview_and_Terminology__Asset_Metadata_Document__metadata_group): a JSON object containing metadata _common to all_ [asset types](#Section_Assets__Overview_and_Terminology__Asset_Type)
2. [**entity**](#Section_Assets__Overview_and_Terminology__Asset_Metadata_Document__entity_group): a JSON object containing [attributes](#Section_Assets__Overview_and_Terminology__Attributes), each containing metadata _specific to one_ asset type
3. [**attachments**](#Section_Assets__Overview_and_Terminology__Asset_Metadata_Document__attachments_group): an optional JSON array, each item of which is a JSON object containing _metadata for_ an attached (ie, externally stored) [asset resource](#Section_Asset__Terminology_Overview__definition__Asset_Resource) or [extended metadata document](#Section_Assets__Overview_and_Terminology__Asset_Metadata_Document_Overview__attachment__extended_metadata)

For a pictorial representation of a primary metadata document (ie, card) and its associated asset resource and extended metadata documents, see the Parts of a Primary Metadata Document figure below:

Green rectangles and arrows illustrate the role that thename of the primary asset type plays in connecting parts to each other.Underlines highlight the role that the name of a secondary asset type plays in connecting other parts to each other. { "metadata": { ... "asset\_type": "data\_asset", "asset\_attributes": [ "data\_asset", "data\_profile", ... ], ... } "entity": { "data\_asset": { ...metadata related to data\_asset... }, "data\_profile": { ...metadata related to data\_profile... }, ... more attributes } "attachments": [ { "asset\_type": "data\_asset", "connection\_id": "070e9b...", "connection\_path": ".../Sample.csv", ... }, { asset\_type": "data\_profile", "handle": { "bucket": "...", ... } ... more attachment items } ]} Sample.csv file Asset Resource: An Asset's Primary Metadata Document, or Card: CATALOG DATABASE: ...many more CARDS... User-provided Storage Repository A: (one of possibly many) ...many more Asset Resources... JSON document containing moremetadata aboutthe Asset Resource The one and only CATALOG'S BUCKET(which is provided by user): ...many more Extended Metadata documents and/or Asset Resources... Figure: The Parts of a Primary Metadata Document, or Card Extended Metadata Document: EXTERNAL STORAGE REPOSITORIES provided by the User INTERNAL STORAGEprovided by the Catalog Two Attributes.- each Attribute is an instance of a different Asset Type.- name of Attribute matchesname of Asset Type. Primary Attribute Extended (or Secondary) Attribute Metadata for an attachedAsset Resource Metadata for an attachedExtended Metadata Document Red rectangles indicate the 3 main sections of a card. { "metadata": { ... "asset\_type": "data\_asset", "asset\_attributes": [ "data\_asset", "data\_profile", ... ], ... } "entity": { "data\_asset": { ...metadata related to data\_asset... }, "data\_profile": { ...metadata related to data\_profile... }, ... more attributes } "attachments": [ { "asset\_type": "data\_asset", "connection\_id": "070e9b...", "connection\_path": ".../Sample.csv", ... }, { asset\_type": "data\_profile", "handle": { "bucket": "...", ... } ... more attachment items } ]}

In particular, note that:

- red rectangles are used in the figure to highlight the [three top-level fields of a card](#Section_Assets__Overview_and_Terminology__Asset_Metadata_Document_Overview__three_top_level_fields_of_a_card).
- the green rectangles illustrate how important the _name_ of the [primary asset type](#Section_Assets__Overview_and_Terminology__Asset_Type__Primary_Asset_Type_definition) is in relating various parts of the card, and the attached [asset resource](#Section_Asset__Terminology_Overview__definition__Asset_Resource), to each other.  In the example figure, the value of `"metadata.asset_type"` is "data\_asset".  The value you'll see in your card depends on the "asset_type" you've specified for your asset.

"metadata" field of a Primary Metadata Document

The "metadata" field of a primary metadata document (ie, of a card) is a JSON object that contains metadata fields that are common across all types of assets. (See the top red rectangle in the parts figure.) The Assets API specifies the names of the fields that go into the "metadata" part of the card. The user must supply values for some of the fields in "metadata"; the values of other fields in "metadata" will be filled in by the Assets API during the life of the card. Here's a list of some of the fields inside "metadata" (see example cards in the Get Asset section for more extensive lists):

  • "asset_id":
    • The ID of the card (ie, primary metadata document) rather than of the asset resource described by the card.
    • Created internally by the Assets API at the time the card is created. That is, you do not supply this value.
  • "asset_type":
  • "asset_attributes":
    • You must not supply any value for this field when creating a primary metadata document. The Assets APIs maintain the contents of this field.
    • An array of attribute names (only the names, not the actual attributes).
    • Each attribute / asset type name listed in this array will have a correspondingly named attribute in the "entity" field of the card.
    • The name of each attribute must match the name of an existing asset type, so this is also an array of the names of the primary and secondary / extended asset types used by this card.
  • "name": the name of the asset resource this card describes
  • "description": a description of the asset resource
  • "origin_country": the originating country for the asset resource
  • "tags": an array of terms that users want to associate with the asset resource
  • "rov": Rules Of Visibility.
    • "mode": -1 - this is the default, which corresponds to "mode" : 0, public (see below)
    • "mode": 0 - indicates public visibility, in which everybody can view and search the values of the asset's primary metadata document (card), and preview the asset's data. Note: access can still be denied based on actionable governance policy rules.
	"rov": {
		"mode": 0,
		"collaborator_ids": []
	}
    • "mode": 8 - indicates private visibility, which allows users listed as members of the asset (as denoted by collaborator_ids list) to view and search all fields (including metadata, entity, and attachments) of the asset's primary metadata document (card), and preview the asset's data. Non-members are allowed to only view and search the metadata field, and cannot preview the asset's data. This mode is only available through the API, and is not exposed in the IKC UI. Note: access can still be denied based on actionable governance policy rules.
	"rov": {
	"mode": 8,
	"collaborator_ids": [
		{
			"IBMid-06___": {
				"user_iam_id": "IBMid-06___"
			}
		},
		{
			"IBMid-27___": {
				"user_iam_id": "IBMid-27___"
			}
		}
	]
}
    • "mode": 16 - indicates hidden visibility, in which only users listed as members of the asset (as denoted by collaborator_ids list) have any access to fields in the asset, and non-members have no access to the asset. Note: access can still be denied based on actionable governance policy rules.
	"rov": {
	"mode": 16,
	"collaborator_ids": [
		{
			"IBMid-06___": {
				"user_iam_id": "IBMid-06___"
			}
		},
		{
			"IBMid-27___": {
				"user_iam_id": "IBMid-27___"
			}
		}
	]
}

"entity" field of a Primary Metadata Document

The "entity" field of a card (ie, primary metadata document) is a JSON object that contains additional JSON objects called attributes, each of which contains metadata fields that are specific to one asset type. (See the middle red rectangle in the parts figure.) The only contents of the "entity" field are attributes, which are discussed in the next section.

Note: the fact that the "entity" section contains attributes for more than one asset type does not mean that a single card contains metadata for more than one asset resource. A card always contains metadata for exactly one asset resource, and that asset resource will have exactly one attribute associated with it (see primary attribute below). All the other attributes in the "entity" field contain extended metadata describing the single asset resource that the card was created for. Really, asset types ought to be thought of as attribute types because asset types literally define (some of) the fields that will appear in attributes.

Attributes

In the Assets API, an attribute is a collection of metadata that:

- is contained directly inside the ["entity"](#Section_Assets__Overview_and_Terminology__Asset_Metadata_Document__entity_group) field of the [primary metadata document](#Section_Assets__Overview_and_Terminology__definition__primary_metadata_document).
- is identically named with, and has fields that are partially defined by, an [Asset Type](#Section_Assets__Overview_and_Terminology__Asset_Type)
- describes an [asset resource](#Section_Asset__Terminology_Overview__definition__Asset_Resource) or something related to that asset resource, such as an [extended metadata document](#Section_Assets__Overview_and_Terminology__Asset_Metadata_Document_Overview__attachment__extended_metadata)

There is one attribute in the "entity" field for each attribute name that appears in the "metadata.asset_attributes" array. So, for example, if the "metadata.asset_attributes" array contains these two attribute names:

   "metadata": {
      ...
      "asset_attributes": [
         "data_asset",
         "data_profile"
      ],
   }

then the "entity" field will contain these two correspondingly named attributes:

   "entity": {
      "data_asset": {  // attribute name matches "data_asset" in "metadata.asset_attributes"
         ...attribute contents...
      },
      "data_profile": {  // attribute name matches "data_profile" in "metadata.asset_attributes"
         ...attribute contents...
      }
   }

The name of each attribute in "entity" must also match the name of an existing asset type. That is, an attribute named "X" will contain metadata related to an asset type also named "X". So, an attribute's name can be thought of as simultaneously telling us that attribute's "type". For example, in this asset metadata document example, both the attribute names "data_asset" and "data_profile" refer to asset types with those same names.

There is one special attribute that will be referred to as the primary attribute. The primary attribute is the main attribute used to describe an asset resource. Every primary metadata document will have exactly one primary attribute. The name of the primary attribute is the same as the name that appears in the "metadata.asset_type" field.

Any attribute other than the primary attribute is a "secondary" / "extended" attribute whose name must match the name of a secondary / extended asset type. A common example of an attribute for extended metadata is named "data_profile", which is created by the Profiling API. For example, see the underlined names in the Parts of a Primary Metadata Document figure, or the "entity.data_profile" field in this asset metadata document.

Although the Assets API restricts the names of attribute objects to match the names of asset types, the Assets API does not (in general) specify what the contents of those attributes should be. So, in some sense, the fields within an attribute are the opposite of the fields within the "metadata" field:

  • the Assets API "owns" (or, specifies) which fields go inside "metadata"
  • the user "owns" (or, specifies) which fields go inside the attributes (except for some fields of already available asset types)

The following example shows two attributes, whose names must match asset types, but whose contents are (for the most part) up to the user:

   "entity": {
      "data_asset": { // attribute name must match some asset type's name
         ...
         data_asset *type creator* and
         data_asset *attribute creator*
         decide what fields go here
         ...    
      },
      "data_profile": { // attribute name must match some asset type's name
         ...
         data_profile *type creator* and
         data_profile *attribute creator*
         decide what fields go here
         ...    
      }
   }

Because the Asset Types API is itself the creator of some already available asset types, the Asset Types API specifies some of the fields for any attribute whose name corresponds to one of those already available asset types. For example, see the discussion of the already available asset type called "data_asset".

Note: there is a GET attribute API that can be used to retrieve just the attributes in the "entity" section of the primary metadata document, instead of the entire primary metadata document as returned by the GET asset API.

"attachments" (optional) field of a Primary Metadata Document

The "attachments" field of a card (ie, primary metadata document) is a JSON array, each item of which contains metadata for one attachment. (See the bottom red rectangle in the parts figure.)

The word attachment (or attachments) can be interpreted in multiple ways:

  1. the "attachments" array in the primary metadata document

  2. an attachment item in the "attachments" array

  3. a metadata document that will be returned from a call to the GET Attachment API. That metadata document will contain information that points to, and can be used to retrieve, either...

  4. the asset resource being described by the primary metadata document

  5. an extended metadata document stored in the catalog's bucket and containing extended metadata for the asset resource

Each attribute in the "entity" field can have a corresponding attachment item in the "attachments" array. An attribute and its corresponding attachment item are related to each other by using the name of the attribute as the value for the attachment item's "asset_type" field. For example, notice in the following card snippet how the attribute name "data_asset" is used to link that "data_asset" attribute to its attachment item in the "attachments" array:

   "entity": {
      ...other attributes

      "data_asset": { // <-- attribute's name matches its...
         ...
      },

      ...other attributes
   },

   "attachments": [
      ...other attachment items

      {
         ...
         "asset_type": "data_asset",  // <-- ...attachment's asset_type
         ...
         "connection_id": "...",   // connection_ fields are one way
         "connection_path": "...", // that item points to attached object
         ...
      },

      ...other attachment items
   ]

Notice also in the above card snippet that, in this case, the attachment item contains two "connection_..." fields that point to the attachment object located in external storage. So, an attribute has an attachment item which points to an attachment object.

Like the fields of "metadata", the fields of an attachment item are specified by the Assets API. Some of the most important fields in an attachment item are:

  • "asset_type":
    • describes the type of the attachment
    • figuratively connects the attachment item to the attribute with the same name
  • "connection_id" and "connection_path" (optional):
    • this pair of fields specify the ID of a WDP Connection and a path in the associated data repository that points to the attached object
    • always used for an attached asset like a database table
    • can also be used for an attached asset resource (eg, spreadsheet) that can be stored in the catalog's bucket
    • the presence of these two fields means the attachment will be known as a remote attachment
  • "object_key" and "handle" (optional):
    • this pair of fields contain information identifying and pointing to the location of an attached object (either an asset or an extended metadata document) in the catalog's bucket
    • the presence of these two fields means the attachment will be known as a referenced attachment

For any attachment, only one of the following two pairs of fields will be used:

  1. "connection_id" and "connection_path" (ie, remote attachment), or
  2. "object_key" and "handle" (ie, referenced attachment).

Interestingly, being remote does not tell you whether or not an attachment is in the catalog. Remote only tells you how the attached object can be retrieved: by using a connection.

An attachment item (in the card) points to one of two kinds of attached object (in external storage):

  1. an asset, or

  2. and extended metadata document.

Those are briefly discussed in the next 2 sections.

Asset Resource Attachment

The most typical attachment object is the asset resource being described by the card.

Follow the green arrows in the Parts of a Primary Metadata Document figure to see how:

  • the asset's type name leads to
  • an attribute name, which leads to
  • a primary attribute, which leads to
  • an attachment metadata item for that attribute, which finally leads to
  • the attached asset resource.

For a full example that shows an attachment metadata item for an attached csv file, see the (only) item in the "attachments" array in Get Asset - CSV File - Response Body - Before Profiling.

Extended Metadata Document Attachment(s)

The other kind of attachment objects are extended metadata documents. A card can have 0, 1, or many attached extended metadata documents. These documents each contain a related set of (additional) metadata describing the asset resource. Extended metadata documents are stored externally in the catalog's bucket.

See the underlined "data_profile" type name in the Parts of a Primary Metadata Document figure for a visualization of how, for one extended metadata document, the three parts ("metadata", "entity", "attachments") of a card are related to each other.

See the second item in the "attachments" array in Get Asset - CSV File - Response Body - After Profiling for an example showing an attachment item for a "data_profile" extended metadata document.

Uses of "asset_type" value

From the previous sections, you can see that the "asset_type" value shows up in:

For example, see the Parts of a Primary Metadata Document figure above, where the name of the primary attribute is, in this case, "data_asset" and is highlighted with green rectangles in all the places it's used. The path shown by the green arrows in the figure starts at the "metadata.asset_type" field and ends at the asset resource, in this case a file called Sample.csv.

Other Assets API Objects

Finally, here is a brief list of some of the remaining objects that can be manipulated with the Assets APIs:

  • owner
    • the owner of the asset
  • collaborators
    • users who are allowed to see and possibly edit (some parts of) the asset
  • perms
    • permissions for viewing / editing an asset
  • ratings
    • indications of how popular or useful the asset is
  • stats
    • statistics on how often and when the asset was viewed or edited, and who did that viewing or editing.

Getting an Asset

It's important to understand that the GET Asset API does not return an asset resource like a database table, a spreadsheet, a csv file, etc. Instead, it returns a primary metadata document (ie, card) that describes an asset resource.

Obviously, a primary metadata document (ie, card) must have been created before it can be retrieved. Still, it's instructive to see actual examples of a card and its parts before attempting to create those things. After all, many users will retrieve cards that were previously created by someone else.

This and the following sections show how to retrieve asset metadata and attachments (eg, an asset resource and extended metadata documents).

Getting an Asset - for a Connection

We'll start by retrieving a common primary metadata document (ie, card): one for a "connection" asset type. This is a simple card because it has no attachments. That makes it an easy example to start with, even though many of the other cards you'll encounter do have attachments.

Use the following GET Asset API to retrieve the primary metadata document for a connection. Note that this requires that you know and supply the IDs of both the primary metadata document (ie, card) and of the catalog that contains the card. Either someone has given you both of those IDs or you can browse to the asset's page using the IBM Knowledge Catalog UI and then extract both the catalog ID and the primary metadata document ID from within the URL in the browser's address bar.

Getting an Asset - Request URL:
GET {service_URL}/v2/assets/{asset_id}?catalog_id={catalog_id}

The following is the primary metadata document (ie, card) that's returned.

Note: you may find it helpful to look at the Parts of a Primary Metadata Document Figure before looking at the following Response Body.

Getting an Asset - Connection - Response Body:
{
  "metadata": {
    "rov": {
      "mode": 0,
      "collaborator_ids": {}
    },
    "usage": {
      "last_updated_at": "2018-11-06T17:40:37Z",
      "last_updater_id": "IBMid-___",
      "last_update_time": 1541526037227,
      "last_accessed_at": "2018-11-06T17:40:37Z",
      "last_access_time": 1541526037227,
      "last_accessor_id": "IBMid-___",
      "access_count": 0
    },
    "name": "ConnectionForCSVFile",
    "description": "Connection for CSV file",
    "tags": [],
    "asset_type": "connection",
    "origin_country": "us",
    "rating": 0,
    "total_ratings": 0,
    "catalog_id": "c6f3cbd8-2b7f-42fb-aa60-___",
    "created": 1541526037227,
    "created_at": "2018-11-06T17:40:37Z",
    "owner_id": "IBMid-___",
    "size": 0,
    "version": 2,
    "asset_state": "available",
    "asset_attributes": [
      "connection"
    ],
    "asset_id": "070e9be2-40a8-4e0e-___",
    "asset_category": "SYSTEM"
  },
  "entity": {
    "connection": {
      "datasource_type": "193a97c1-4475-4a19-b90c-295c4fdc6517",
      "context": "source,target",
      "properties": {
        "bucket": "catalogforgettingsta___",
        "secret_key": "{wdpaes}12345___=",
        "api_key": "{wdpaes}eo/12345_=",
        "resource_instance_id": "crn:v1:bluemix:public:cloud-object-storage:global:a/12345c___:7240b198-b0f6-___::",
        "access_key": "12345___",
        "region": "us-geo",
        "url": "https://s3.us-south.objectstorage.softlayer.net"
      },
      "flags": []
    }
  },
  "href": "https://api.dataplatform.cloud.ibm.com/v2/assets/070e9be2-40a8-4e0e-___?catalog_id=c6f3cbd8-2b7f-42fb-aa60-___"
}

The above response has two of the three primary groups of metadata that were described in the Primary Metadata Document section: "metadata" and "entity".

As discussed in Assets API Overview section, the contents of the "metadata" field are common to all primary metadata documents (ie, cards). The set of fields in "metadata" is completely defined by the Assets API. The values for some of those fields must be provided by the creator of the card, while other fields' values will be populated by various Assets APIs during the life of the card. Note the following fields' values in particular:

  • "metadata" fields whose values are provided by the creator of the card:

    • "name": "ConnectionForCSVFile"

    • "description": "Connection for CSV file"

    • "asset_type": "connection"

    • "asset_attributes": [ "connection"

      ]

  • "metadata" fields whose values are set by various Assets APIs during the life of the card:

    • "usage": contains various statistics describing usage of the card/asset
    • "catalog_id": the ID of the catalog that contains the card
    • "created_at": the time and date at which the card was created
    • "asset_id": the ID of the card (not the asset resource)

For more info about the "metadata" fields, see the discussion on "metadata" in the Assets API Overview section above.

The contents of the "entity" field are only partially defined by the Assets API. In particular, the "entity" field shown in the above card contains a field whose name must match the value in "metadata.asset_type", in this case, "connection". That field is the primary attribute.

On the other hand, both the names and the values of all the fields inside the primary attribute "entity.connection" are completely determined by the creator of the "connection" asset type and the creator of the "connection" attribute. The Assets API does not, in general, decide what fields go inside the primary attribute (or any other attribute). In the example "connection" attribute above, some of the more interesting fields are:

  • "datasource_type" - specifies the ID of the type of the data source to which a connection will be formed.
  • "properties" - specifies connection metadata specific to the type of the datasource. The exact contents of this field will change according to the type of the datasource.

For more info on the contents of "entity" in general, see the discussion on "entity" in the Assets API Overview section.

Notice the above card contains no "attachments" array. That means there is no attached asset resource associated with this card. A natural question is: how can "connection" asset metadata exist for, or describe, a non-existent "connection" asset resource? Actually, a "connection" asset resource does exist, but only when the metadata in the connection's primary metadata document is used to create a client-server connection at runtime.

Get Asset - for a CSV File

This section shows a far more typical example in which the primary metadata document (ie, card) does have an attached asset resource - in this case, a csv file named Sample.csv. Here's the very simple contents of the Sample.csv file:

Sample.csv file contents
Name,Number
abc,123
def,456

Use the GET Asset API to retrieve the asset metadata for the Sample.csv asset resource. Note: the GET Asset API only returns a primary metadata document (ie, card) that describes the Sample.csv file - it does not return the actual Sample.csv file.

Get Asset - Request URL:
GET {service_URL}/v2/assets/{asset_id}?catalog_id={catalog_id}

It's instructive to show two different versions of the primary metadata document for the Sample.csv asset:

  1. Before profiling (which returns a small metadata document - without extended metadata)
  2. After profiling (which returns a much larger metadata document - with extended metadata)

Note: you may find it helpful to look at the Parts of a Primary Metadata Document Figure before looking at either of the following two Get Asset Response Bodies.

Here is the smaller primary metadata document that exists before the Profile API is invoked on the Sample.csv file.

Get Asset - CSV File - Response Body - Before Profiling:
{
  "metadata": {
    "name": "Sample.csv",
    "description": "A simple csv file.",
    "asset_type": "data_asset",
    "rov": {
      "mode": 0,
      "collaborator_ids": {}
    },
    "usage": {
      "last_updated_at": "2018-11-06T17:45:23Z",
      "last_updater_id": "IBMid-___",
      "last_update_time": 1541526323713,
      "last_accessed_at": "2018-11-06T17:45:23Z",
      "last_access_time": 1541526323713,
      "last_accessor_id": "IBMid-___",
      "access_count": 0
    },
    "origin_country": "united states",
    "rating": 0,
    "total_ratings": 0,
    "catalog_id": "c6f3cbd8-2b7f-42fb-aa60-___",
    "created": 1541526321437,
    "created_at": "2018-11-06T17:45:21Z",
    "owner_id": "IBMid-___",
    "size": 0,
    "version": 2,
    "asset_state": "available",
    "asset_attributes": [
      "data_asset"
    ],
    "asset_id": "45f4ab8c-37d5-45a1-8adf-___",
    "asset_category": "USER"
  },
  "entity": {
    "data_asset": {
      "mime_type": "text/csv",
      "dataset": false
    }
  },
  "attachments": [
    {
      "id": "b8c7a390-e857-4c34-add8-___",
      "version": 2,
      "asset_type": "data_asset",
      "name": "remote",
      "description": "remote",
      "connection_id": "070e9be2-40a8-4e0e-___",
      "connection_path": "catalogforgettingsta-datacatalog-r1s___/data_asset/Sample_SyjEQUy6m.csv",
      "create_time": 1541526323713,
      "size": 0,
      "is_remote": true,
      "is_managed": false,
      "is_referenced": false,
      "is_object_key_read_only": false,
      "is_user_provided_path_key": true,
      "transfer_complete": true,
      "is_partitioned": false,
      "complete_time_ticks": 1541526323713,
      "user_data": {},
      "test_doc": 0,
      "usage": {
        "access_count": 0,
        "last_accessor_id": "IBMid-___",
        "last_access_time": 1541526323713
      }
    }
  ],
  "href": "https://api.dataplatform.cloud.ibm.com/v2/assets/45f4ab8c-37d5-45a1-8adf-___?catalog_id=c6f3cbd8-2b7f-42fb-aa60-___"
}

The above primary metadata document has all three primary groups of metadata ("metadata", "entity", and "attachments") that were described in the Assets API Overview section.

The contents of the "metadata" field are very similar to those shown above for the Connection card example. The most important difference is the value that the user specified as the "asset type" for the Sample.csv asset, namely "data_asset". That asset type name shows up in two places inside the "metadata" section of the primary metadata document:

  • "metadata":
    • "asset_type": "data_asset"
    • "asset_attributes": [ "data_asset" ]

As discussed in the Attributes section, the fact that "metadata.asset_type" has the value "data_asset" means the "entity" field of the card must contain a primary attribute called "data_asset". The Asset Types API provides the predefined asset type "data_asset". That "data_asset" type definition declares that there are two mandatory fields in a "data_asset" attribute: "mime_type" and "dataset", as can be seen in the card above and repeated here:

  • "entity":
    • "data_asset":
      • "mime_type": "text/csv"
        • specifies the mime type of the asset resource. Here, the mime type indicates that the asset resource is a text csv file.
      • "dataset": false
        • false because there is no "columns" field in this primary attribute.
        • Note: false does not mean there are no columns in the asset resource. Clearly, our Sample.csv file does have columns. The problem here is that no one has (yet) told the card that the asset resource has columns. Compare this "data_set" attribute to the one shown in the next example Get Asset - CSV File - Response Body - After Profiling, where the value of "dataset" has been changed to true, and the primary attribute does have a "columns" field.

Unlike in the Connection card example above, the card for the Sample.csv file does have an "attachments" field. In this case, the "attachments" array has one item in it. That item contains metadata that points to the attached asset resource (ie, the Sample.csv file). Some of the more interesting fields in that attachment item are:

  • "id": "b8c7a390-e857-4c34-add8-___"
    • identifies the metadata document that points to the attached asset resource
  • "asset_type": "data_asset"
  • "connection_id": "070e9be2-40a8-4e0e-___"
    • identifies a connection primary metadata document (ie, card) which contains credentials and other info that can be use to connect to the external repository that contains the attached asset resource (ie, the "Sample.csv" file)
    • not coincidentally, the particular connection card referred to by "070e9be2-40a8-4e0e-___" is the exact same connection card shown above in Get Asset - Connection Primary Metadata Document
  • "connection_path": "catalogforgettingsta-datacatalog-r1s___/data_asset/Sample_SyjEQUy6m.csv",
    • identifies the path in the external repository that contains the attached asset (ie, the "Sample.csv" file)
  • "is_remote": true
    • as discussed in the "attachments" overview section, is_remote is true because "connection_id" and "connection_path" are being used to describe how to get the Sample.csv asset resource.
  • "is_referenced": false (at most one of "is_referenced" and "is_remote" will be true)

Get Asset - CSV File - Response Body - After Profiling:

Now, let's compare what GET {service_URL}/v2/assets/{asset_id}?catalog_id={catalog_id} returns for the same asset after the Profile API has been invoked on the Sample.csv file:

{
  "metadata": {
    "rov": {
      "mode": 0,
      "collaborator_ids": {}
    },
    "usage": {
      "last_updated_at": "2018-11-12T15:33:34Z",
      "last_updater_id": "iam-ServiceId-12345___",
      "last_update_time": 1542036814782,
      "last_accessed_at": "2018-11-12T15:33:34Z",
      "last_access_time": 1542036814782,
      "last_accessor_id": "iam-ServiceId-12345___",
      "access_count": 0
    },
    "name": "Sample.csv",
    "description": "Simple csv file for experiment for getting started document.",
    "tags": [],
    "asset_type": "data_asset",
    "origin_country": "united states",
    "rating": 0,
    "total_ratings": 0,
    "catalog_id": "c6f3cbd8-2b7f-42fb-aa60-___",
    "created": 1541526321437,
    "created_at": "2018-11-06T17:45:21Z",
    "owner_id": "IBMid-___",
    "size": 9238,
    "version": 2,
    "asset_state": "available",
    "asset_attributes": [
      "data_asset",
      "data_profile"
    ],
    "asset_id": "45f4ab8c-37d5-45a1-8adf-___",
    "asset_category": "USER"
  },
  "entity": {
    "data_asset": {
      "mime_type": "text/csv",
      "dataset": true,
      "columns": [
        {
          "name": "Name",
          "type": {
            "type": "varchar",
            "length": 1024,
            "scale": 0,
            "nullable": true,
            "signed": false
          }
        },
        {
          "name": "Number",
          "type": {
            "type": "varchar",
            "length": 1024,
            "scale": 0,
            "nullable": true,
            "signed": false
          }
        }
      ]
    },
    "data_profile": {
      "971e9c66-be4c-44b4-91f3-___": {
        "metadata": {
          "guid": "971e9c66-be4c-44b4-91f3-___",
          "asset_id": "971e9c66-be4c-44b4-91f3-___",
          "dataset_id": "45f4ab8c-37d5-45a1-8adf-___",
          "url": "https://api.dataplatform.cloud.ibm.com/v2/data_profiles/971e9c66-be4c-44b4-91f3-___?catalog_id=c6f3cbd8-2b7f-42fb-aa60-___&dataset_id=45f4ab8c-37d5-45a1-8adf-___",
          "catalog_id": "c6f3cbd8-2b7f-42fb-aa60-___",
          "created_at": "2018-11-12T15:32:53.902Z",
          "accessed_at": "2018-11-12T15:32:53.902Z",
          "owner_id": "IBMid-___",
          "last_updater_id": "IBMid-___"
        },
        "entity": {
          "data_profile": {
            "options": {
              "disable_profiling": false,
              "max_row_count": 5000,
              "max_distribution_size": 100,
              "max_numeric_stats_bins": 200,
              "classification_options": {
                "disabled": false,
                "use_all_ibm_classes": true,
                "ibm_class_codes": [],
                "custom_class_codes": []
              }
            },
            "execution": {
              "status": "finished",
              "is_supported": true,
              "dataflow_id": "3f1ace02-4d40-451d-9bc7-___",
              "dataflow_run_id": "f774f92f-5a61-49ca-8a68-___"
            },
            "columns": [],
            "attachment_id": "8d614be0-6900-403b-ab50-___"
          }
        },
        "href": "https://api.dataplatform.cloud.ibm.com/v2/data_profiles/971e9c66-be4c-44b4-91f3-___?catalog_id=c6f3cbd8-2b7f-42fb-aa60-___&dataset_id=45f4ab8c-37d5-45a1-8adf-___"
      },
      "attribute_classes": [
        "NoClassDetected",
        "Organization Name"
      ]
    }
  },
  "attachments": [
    {
      "id": "b8c7a390-e857-4c34-add8-___",
      "version": 2,
      "asset_type": "data_asset",
      "name": "remote",
      "description": "remote",
      "connection_id": "070e9be2-40a8-4e0e-___",
      "connection_path": "catalogforgettingsta-datacatalog-r1s___/data_asset/Sample_SyjEQUy6m.csv",
      "create_time": 1541526323713,
      "size": 0,
      "is_remote": true,
      "is_managed": false,
      "is_referenced": false,
      "is_object_key_read_only": false,
      "is_user_provided_path_key": true,
      "transfer_complete": true,
      "is_partitioned": false,
      "complete_time_ticks": 1541526323713,
      "user_data": {},
      "test_doc": 0,
      "usage": {
        "access_count": 0,
        "last_accessor_id": "IBMid-___",
        "last_access_time": 1541526323713
      }
    },
    {
      "id": "8d614be0-6900-403b-ab50-___",
      "version": 2,
      "asset_type": "data_profile",
      "name": "data_profile_971e9c66-be4c-44b4-91f3-___",
      "object_key": "data_profile_971e9c66-be4c-44b4-91f3-___",
      "create_time": 1542036813627,
      "size": 9238,
      "is_remote": false,
      "is_managed": false,
      "is_referenced": true,
      "is_object_key_read_only": false,
      "is_user_provided_path_key": true,
      "transfer_complete": true,
      "is_partitioned": false,
      "complete_time_ticks": 1542036813627,
      "user_data": {},
      "test_doc": 0,
      "handle": {
        "bucket": "catalogforgettingsta-datacatalog-r1s___",
        "location": "us-geo",
        "key": "data_profile_971e9c66-be4c-44b4-91f3-___",
        "upload_id": "done",
        "max_part_num": 1
      },
      "usage": {
        "access_count": 0,
        "last_accessor_id": "iam-ServiceId-12345___",
        "last_access_time": 1542036813627
      }
    }
  ],
  "href": "https://api.dataplatform.cloud.ibm.com/v2/assets/45f4ab8c-37d5-45a1-8adf-___?catalog_id=c6f3cbd8-2b7f-42fb-aa60-___"
}

Let's look at a few of the most important differences between the primary metadata document for the Sample.csv file before and after profiling:

  • "metadata":

    • "asset_attributes": [ "data_asset", "data_profile" ]
      • Note the "data_profile" attribute name has been added
  • "entity":

    • "data_asset":

      • "columns": the Profile API has added the "columns" field to the data_asset attribute,
      • "dataset": the Profile API caused this to change from false to true because of the newly added "columns" field
    • "data_profile":

      • this "data_profile" attribute is entirely new, and was added by the Profile API.
      • the name of this secondary attribute matches the name of the secondary asset type "data_profile", which was (previously) created by the Profile API.
      • the contents of this "data_profile" attribute was entirely decided by the Profile API, not by the Assets API.
      • this attribute contains a lot of extended metadata about the "data_profile" run that produced a "data_profile" extended metadata document.
  • "attachments":

    • a new item has been added to the "attachments" array
    • that new item contains the following metadata about an extended metadata document:
      • "id": "8d614be0-6900-403b-ab50-___"
      • "asset_type": "data_profile"
        • note that the value "data_profile" matches the name of the "data_profile" attribute that this attachment item belongs to, so linking the attachment item and the attribute.
      • "handle": contains various fields pointing to the actual attached extended metadata document which is located in some external repository. That extended metadata document will contain a great deal more metadata about the asset resource, that is, about the "Sample.csv" file.

The next section shows how to retrieve the Extended Metadata Document that's referred to by the new "data_profile" "attachments" item just described above.

Get Attachment - Extended Metadata Document:

The following example builds on the GET Asset example from the previous section and shows how to retrieve an attachment that is an extended metadata document.

An attachment can be retrieved in 4 steps.

Step 1: Decide the asset_type of the attachment you want.

The only choices you have for asset_type in a given primary metadata document are listed in that document's "metadata.asset_attributes" field. In the example above those values are:

  • "data_asset"
  • "data_profile"

The asset_type of the extended metadata document we want is "data_profile".

Step 2: Get the "id" of the "attachments" item whose "asset_type" field has the value you chose in Step 1.

In the primary metadata document, look for the only "attachments" item whose "asset_type" field has the value you chose in Step 1, namely "data_profile". In our example primary metadata document above, that "attachments" item has the "id" value "8d614be0-6900-403b-ab50-___".

Step 3: Invoke the Get Attachment API to get attachment metadata for the attached extended metadata document.

Get Asset Attachment - Request URL
GET /v2/assets/{asset_id}/attachments/{attachment_id}

The values for the above URL parameters are obtained as follows:

  • {asset_id}: is the same as what appears in the "metadata.asset_id" field of the above primary metadata document, namely "45f4ab8c-37d5-45a1-8adf-___"

  • {attachment_id} is the of "id" that was obtained in Step 2, namely "8d614be0-6900-403b-ab50-___".

Invoke the above GET Attachment API with the above values, which will return an attachment metadata document as shown in the following response body:

Get Asset Attachment - Response Body:
{
  "attachment_id": "8d614be0-6900-403b-ab50-___",
  "asset_type": "data_profile",
  "is_partitioned": false,
  "name": "data_profile_971e9c66-be4c-44b4-91f3-___",
  "created_at": "2018-11-12T15:33:33Z",
  "object_key": "data_profile_971e9c66-be4c-44b4-91f3-___",
  "object_key_is_read_only": false,
  "bucket": {
    "bucket_name": "catalogforgettingsta-datacatalog-r1s___",
    "bluemix_cos_connection": {
      "viewer": {
        "bucket_connection_id": "5b6bc03d-577d-4609-b3a4-___"
      },
      "editor": {
        "bucket_connection_id": "070e9be2-40a8-4e0e-a468-___"
      }
    }
  },
  "url": "https://s3.us-south.objectstorage.softlayer.net/catalogforgettingsta-datacatalog-r1s___/data_profile_971e9c66-be4c-44b4-91f3-___?response-content-disposition=attachment%3B%20filename%3D%22data_profile_971e9c66-be4c-44b4-91f3-___%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20190423T162446Z&X-Amz-SignedHeaders=host&X-Amz-Expires=86400&X-Amz-Credential=d2d518b66ac64de___%2F2019___%2Fus-geo%2Fs3%2Faws4_request&X-Amz-Signature=ce7322d7291396c511a6df38635df4e85b7c78c173___",
  "transfer_complete": true,
  "size": 9238,
  "user_data": {},
  "creator_id": "iam-ServiceId-12345___",
  "usage": {
    "access_count": 1,
    "last_accessor_id": "IBMid-___",
    "last_access_time": 1556036686480
  },
  "href": "https://api.dataplatform.cloud.ibm.com/v2/assets/45f4ab8c-37d5-45a1-8adf-726c65b68008/attachments/8d614be0-6900-403b-ab50-___?catalog_id=c6f3cbd8-2b7f-42fb-aa60-___"
}

It's important to understand that the GET Attachment API only returns a metadata document that describes where, or how, an attached asset resource or extended metadata document can be accessed or retrieved.

The most important field in the above response is "url" which contains a signed URL that can be used to retrieve the actual extended metadata document. Note that the "url" points to a completely different server than the server that responds to "Assets API" calls! Extended metadata documents are not stored in the catalog.

Step 4: Use the "url" in the response from Step 3 to call the relevant server to get the extended metadata document.

The simplest way to use that "url" value is to paste it into the address bar of a browser, and let the browser retrieve the extended metadata document. Here's a peek at some of the contents of the large extended metadata document that can be retrieved using that "url" value. That large extended metadata document was created by the Profile API and contains a great deal of extended metadata about our small Sample.csv file:

{
	"summary": {
		"version": "1.9.3",
		"row_count": 2,
		"score": 1,
		"score_stats": {
			"n": 2,
			"mean": 1.0,
			"variance": 0.0,
			"stddev": 0.0,
			"min": 1.0,
			"max": 1.0,
			"sum": 2.0
		},
...
	},
	"columns": [{
			"name": "Name",
			"value_analysis": {
				"distinct_count": 2,
				"null_count": 0,
				"empty_count": 0,
				"unique_count": 2,
				"max_value_frequency": 1,
				"min_string": "abc",
				"max_string": "def",
				"inferred_type": {
					"type": {
						"length": 3,
						"precision": 0,
						"scale": 0,
						"type": "STRING"
					}
				},
...
		}, {
			"name": "Number",
			"value_analysis": {
				"distinct_count": 2,
				"null_count": 0,
				"empty_count": 0,
				"unique_count": 2,
				"max_value_frequency": 1,
				"min_string": "123",
				"max_string": "456",
				"min_number": 123.0,
				"max_number": 456.0,
				"inferred_type": {
					"type": {
						"length": 3,
						"precision": 3,
						"scale": 0,
						"type": "INT16"
					}
				},
...
	]
}

Get Attachment - Asset Resource:

The 4 steps given above to retrieve an extended metadata document can also be used to retrieve an asset resource like the Sample.csv file example.

The main difference is that in Step 1 you would choose the asset_type "data_asset" because that is the primary asset type of the primary metadata document, ie. the asset_type that identifies both the primary attribute and the primary attachment, ie, the asset resource.

Create Asset: book

Before you can create a primary metadata document (ie, card) the asset type that you want to use for that card must already exist. You can use one of the already available asset types, or you can use an asset type that you have created.

The Create Asset Type: book section shows how to create an asset type named book. In this section, that asset type will be used to create a primary metadata document for a book asset resource. That primary metadata document will have:

Use the following endpoint to create a primary metadata document for a book asset resource:

Create Asset: book - Request URL:

POST {service_URL}/v2/assets?catalog_id={catalog_id}

Create Asset: book - Request Body:

{
  "metadata": {
    "name": "Getting Started with Assets",
    "description": "Describes how to create and use metadata for assets",
    "tags": ["getting", "started", "documentation"],
    "asset_type": "book",
    "origin_country": "us",
    "rov": {
      "mode": 0
    }
  },
  "entity": {
    "book": {
	  "author": {
		  "first_name": "Tracy",
		  "last_name": "Smith"
	  },
	  "price": 29.95
    }
  }
}

The above request body specifies the preliminary contents for the primary metadata document about to be created. Most of the fields have been described previously in the Asset's Primary Metadata Document section. However, there are a few things to note in particular about the above request:

  • "metadata": you supply the values of only some of the fields that will end up appearing inside the "metadata" field of the primary metadata document about to be created, including:
    • "asset_type": the value "book" matches the name of the asset type for this document
    • "name": the name to use for the asset being described by this document
    • "description": a description for the asset

Notice that you do not supply a "metadata.asset_attributes" field in the request body. If you include a "metadata.asset_attributes" field in your Create Asset request body then the request will be rejected because it tried to supply a reserved value. The Assets API reserves control of the contents of the "metadata.asset_attributes" field.

  • "entity": you supply the entire contents of the "entity" field

Notice the above "book" attribute doesn't contain a field called "title" - a field which might be expected in an attribute for a book. In this case, we've chosen to put the title of the book in the "metadata.name" field of the card. However, the creator of the "book" attribute is free to include whatever fields they want in that attribute, including a field called "title" if desired.

Create Asset: book - Response Body:

{
  "metadata": {
    "rov": {
      "mode": 0,
      "collaborator_ids": {}
    },
    "usage": {
      "last_updated_at": "2019-04-30T14:37:57Z",
      "last_updater_id": "IBMid-___",
      "last_update_time": 1556635077746,
      "last_accessed_at": "2019-04-30T14:37:57Z",
      "last_access_time": 1556635077746,
      "last_accessor_id": "IBMid-___",
      "access_count": 0
    },
    "name": "Getting Started with Assets",
    "description": "Describes how to create and use metadata for assets",
    "tags": [
      "getting",
      "started",
      "documentation"
    ],
    "asset_type": "book",
    "origin_country": "us",
    "rating": 0,
    "total_ratings": 0,
    "catalog_id": "c6f3cbd8-___",
    "created": 1556635077746,
    "created_at": "2019-04-30T14:37:57Z",
    "owner_id": "IBMid-___",
    "size": 0,
    "version": 2,
    "asset_state": "available",
    "asset_attributes": [
      "book"
    ],
    "asset_id": "3da5389d-d4a4-43da-be1f-___",
    "asset_category": "USER"
  },
  "entity": {
    "book": {
      "author": {
        "first_name": "Tracy",
        "last_name": "Smith"
      },
      "price": 29.95
    }
  },
  "href": "https://api.dataplatform.cloud.ibm.com/v2/assets/3da5389d-d4a4-43da-be1f-___?catalog_id=c6f3cbd8-___",
  "asset_id": "3da5389d-d4a4-43da-be1f-___"
}

Notice that the card returned in the Create Asset Response Body has many more fields than were present in the Request Body. The Create Asset API has added a lot of information to the "metadata" part of the primary metadata document:

  • "asset_id": most importantly, the Create Asset API has given your primary metadata document an id
  • "owner_id": the API has made the caller of the API be the owner of the asset
  • "created_at": the API has recorded the time at which the metadata document was created. In general, this is not the same as the time at which an attached asset resource was created (although in this case there is no attached asset resource).
  • "total_ratings": contains the number of ratings this asset has recieved. 0 for now because the primary metadata document is brand new.
  • "usage": usage statistics. Since this is a brand new card these statistics don't yet contain much interesting data.
  • "asset_attributes": notice that the Create Asset API has added the name of the primary attribute to this array.

On other hand, notice that the Create Asset API did not modify the contents of the "entity" field in any way. In particular, the Create Asset API did not modify the contents of the primary attribute "book".

Your catalog now contains a primary metadata document for a "book" asset resource.

Associate a Term with an Asset

You can associate one or more terms with an asset. Within the asset's primary metadata document a pre-defined attribute called "asset_terms" (one of the global asset_types) is used to contain the array of terms associated with the asset.

The first time any term is associated with an asset, the Create Asset Attribute API must be used to create and populate an instance of the "asset_terms" attribute inside the asset's primary metadata document. In the following example, we're only associating a single term with an asset, so the "list" value in the request body is an array with a single element containing info related to that single term.

POST {service_URL}/v2/assets/{asset_id}/attributes?catalog_id={catalog_id}

Body:

{
  "name": "asset_terms",
  "entity": {
    "list": [
        {
            "term_id": "--insert your term's id here--",
            "term_display_name": "first_term"
        }
    ]
  }
}

Note: the field named "term_display_name" is not strictly mandatory, but is highly recommended because its value is what will be used when searching for assets by term. Its value is also the term name that users will see in the Catalog UI.

The response should look like:

{
  "asset_id": "--your asset id--",
  "asset_terms": {
    "list": [
      {
        "term_id": "--your term id--",
        "term_display_name": "first_term"
      }
    ]
  },
  "href": ".../v2/{asset_id}/attributes/asset_terms?catalog_id={catalog_id}"
}

The next time you GET the asset you should see the "asset_terms" attribute you just created:

{
  "metadata": {
     ...
  },
  
  "entity": {
    ...
    "asset_terms": {
      "list": [
        {
          "term_id": "--your term id--",
          "term_display_name": "first_term"
        }
      ]
    }
  },
  
  "attachments": [
     ...
  ]
}

If you want to associate additional terms with an asset, or remove existing terms, then use the Update Asset Attribute API. For example, the following adds an additional term to the already existing "asset_terms" attribute of the asset used in the above example:

PATCH {service_URL}/v2/assets/{asset_id}/attributes/asset_terms?catalog_id={catalog_id}

Body:

[
	{
		"op": "replace",
		"path": "/list",
		"value": [
			{
				"term_id": "--insert your term's id here--",
				"term_display_name": "first_term"
			},
			{
				"term_id": "--insert your second term's id here--",
				"term_display_name": "second_term"
			}
		]
	}
]

You can use GET the asset to see the new collection of terms in the asset_terms attribute of the asset.

Associate a Classification with an Asset

You can associate one or more classifications with an asset. The classifications associated with the asset reside within the "data_profile" attribute of the asset. When user runs asset profiling, then the profiling job will add the suitable classifications. However, users can manually add classifications to an asset also.

If profile has not run on the asset, then the "data_profile" attribute will not exist. In such a scenario, the Create Asset Attribute API must be used to create and populate an instance of the "data_profile" attribute inside the asset's primary metadata document. Since the classification is added manually, the property added will be "data_classification_manual". In the example below, we are adding a single classification to an asset in a catalog. If you don't know the id and global id of the classification, you can run the API GET artifact of a given type. If you know the id of the classification, you can obtain the global_id of the classification by running the GET classification API.

POST {service_URL}/v2/assets/{asset_id}/attributes?catalog_id={catalog_id}

Body:

{
  "name": "data_profile",
  "entity": {
                 "data_classification_manual": [
                {
                    "id": "--insert your classification's id here--",
                    "name": "your_classification_name",
                    "global_id": "--insert your classification's global id here--"
                }
            ]
        }
}

The response should look like:

{
  "asset_id": "{asset_id}",
  "data_profile": {
    "data_classification_manual": [
      {
        "id": "{classification id}",
        "name": "your_classification_name",
        "global_id": "{classification global id}"
      }
    ]
  },
  "href": "/v2/assets/{asset_id}/attributes/data_profile?catalog_id={catalog_id}"
}

You can use GET the asset to see the new collection of classifications in the data_profile attribute of the asset.

{
  "metadata": {
     ...
  },
  
  "entity": {
    ...
        "data_profile": {
            "data_classification_manual": [
                {
                    "id": "{classification id}",
                    "name": "your_classification_name",
                    "global_id": "{classification global id}"
                }
            ]
        }
  },
  
  "attachments": [
     ...
  ]
}

If you want to associate additional classifications with an asset, or remove existing classifications, then use the Update Asset Attribute API. For example, the following adds an additional classification, to the existing "data_profile" attribute of the asset, without replacing the classification added in the previous example:

PATCH /v2/assets/{asset_id}/attributes/data_profile?catalog_id={catalog_id}

Body:

[
      {
        "op": "add",
        "path": "/data_classification_manual/1",
        "value":
            {
               "id":"--insert your second classification's id here--",
               "name":"your_second_classification_name",
               "global_id":"--insert your second classification's global id here--"
            }
      }
]

The response should look like:

{
  "data_classification_manual": [
    {
      "id": "{classification id}",
      "name": "your_classification_name",
      "global_id": "{classification global id}"
    },
    {
      "id": "{second classification id}",
      "name": "your_second_classification_name",
      "global_id": "{second classification global id}"
    }
  ]
}

The following example replaces all the classifications associated with the asset and replaces with a new list

PATCH /v2/assets/{asset_id}/attributes/data_profile?catalog_id={catalog_id}

Body:

[
      {
        "op": "replace",
        "path": "/data_classification_manual",
        "value":
            [
                {
                   "id":"--insert your classification's id here--",
                   "name":"your_classification_name",
                   "global_id":"--insert your classification's global id here--"
                }
            ]
      }
]

The response should look like:

{
  "data_classification_manual": [
    {
      "id": "{classification id}",
      "name": "your_classification_name",
      "global_id": "{classification global id}"
    }
  ]
}

Duplicate Asset

Duplicate Asset Overview

When a CAMS call tries to create an asset (e.g. create a new asset, promote/publish/clone an asset, etc.), CAMS can optionally detect pre-existing duplicate assets and take appropriate actions based on configurations and query parameters, e.g., ignoring the duplicates and create a new asset, or failing the call and returning an error saying duplicates were found, or updating the existing duplicate.

Similarly, when a CAMS call tries to update an asset, CAMS can also optionally detect if the asset with the incoming change would have any duplicates if the change were persisted and take appropriate actions based on configurations and query parameters, e.g., ignoring the duplicates and update the asset, or failing the call and returning an error saying the change would result in duplicates.

This process is called duplicate asset processing. This section describes how the duplicate asset processing works in CAMS and how you can make it work in the ways you desire.

What is a duplicate

An asset is considered a duplicate if it fits any of the following scenarios:

  • Original asset - the asset that the incoming asset was originally cloned/published from.

For instance, if you cloned/published an asset A to a project/catalog and resulted in asset B, and then try to publish/clone the asset B back to the original catalog/project, the asset A will be seen as the original asset and considered as a duplicate.

  • Copies of the same asset - an asset is cloned/published/promoted from the same asset as the incoming asset

For example, if you cloned/published/promoted an asset A to a project/catalog/space and resulted in asset B, and then try to clone/publish/promote the asset A again to the same target project/catalog/space, the asset B will be seen as the copy of the same asset and considered as a duplicate.

  • Asset with the same values - an asset has the same values as the incoming asset based on the effective duplicate detection strategy of the asset type. See Duplicate Detection Strategy section for more details about duplicate detection strategy.

Let's say that the effective duplicate detection strategy of the asset type data_asset in a project is DUPLICATE_DETECTION_BY_NAME (i.e., the duplicate detection will base on the metadata.name field). If you try to create an asset of type data_asset with the name KPIReport2021 in this project, and there is an existing asset A of type data_asset with the same name, then the asset A will be considered as a duplicate.

What to do with a duplicate

Users can set the configuration duplicate_action of the asset containers and/or specify the query parameter duplicate_action while calling endpoints to control how the service handles duplicate assets. The valid values of duplicate_action for calls creating a new asset are:

  • IGNORE - ignore the duplicates and create a new asset
  • REJECT - fail the call and return an error response similar to the one below (no asset will be created):
{
  "trace": "290c281c-4adc-4e40-aa49-aaf7cd2dbf6a",
  "errors": [
    {
      "code": "already_exists",
      "message": "ASTSV3040E: Duplicate assets exist. '[cc5f7412-5c96-4d66-9c14-40b3c944ad79, 244a3612-63a8-4140-9423-f40841be33ee]'"
    }
  ]
}
  • UPDATE - update the duplicate with the incoming changes. See Multiple duplicates for how to choose the duplicate for updating if more than one duplicate is found. See here on how the duplicate asset is updated.
  • REPLACE - overwrite the duplicate with the input values. See Multiple duplicates for how to choose the duplicate for overwriting if more than one duplicate is found. See here on how the duplicate asset is overwritten.

The valid values of duplicate_action for calls making changes to an existing asset (including restoring a deleted asset) are:

  • IGNORE - ignore the duplicates and update the asset
  • REJECT - fail the call and return an error response similar to the one below. The asset will not be updated or restored.
{
  "trace": "8ea27315-c958-435a-b415-e3632a664dbc",
  "errors": [
    {
      "code": "already_exists",
      "message": "ASTSV3128E: The asset will have duplicate assets with IDs '[a0a54f65-8a3d-4f22-95b7-5456d8e43a71]' after saving the change."
    }
  ]
}

Or the below for restoring an asset. Note that the reason that the id of the asset that will have duplicates is also in the message is that restoring an asset may potentially restore multiple related assets and it is possible that some of these related assets will have duplicates.

{
  "trace": "7b2668a4-c794-4720-83dd-f4f16e9d0a04",
  "errors": [
    {
      "code": "already_exists",
      "message": "ASTSV3128E: The asset '8c740814-5fc0-4294-a2be-f042f15098f1' will have duplicate assets with IDs '[a0a54f65-8a3d-4f22-95b7-5456d8e43a71]' after being restored."
    }
  ]
}
  • UPDATE and REPLACE are not allowed to be used for the query parameter duplicate_action for calls updating assets. However, if the query parameter duplicate_action is not supplied and the configuration duplicate_action is set to one of these values in the asset container level, they will be the effective value of the duplicate_action. In which case, they will be treated the same as REJECT.

The configuration duplicate_action can be set in the asset container level during the creation of a container and can be modified later by using the endpoint PUT /v2/asset_containers/configurations. If the configuration duplicate_action is not specified in an asset container, it will be equivalent to IGNORE.

The following example shows how to supply the configuration duplicate_action (along with other duplicate asset processing related configurations) while creating a catalog:

{
  "name": "my catalog",
  ...
  "configurations": {
    "duplicate_action": "REJECT",
    ...
  }
}

The following example shows how to update the configuration by using the endpoint PUT /v2/asset_containers/configurations:

{
  "duplicate_action": "REPLACE",
  ...
}

The configuration duplicate_action can be overwritten by a query parameter duplicate_action for individual calls to control how CAMS handles duplicates for these particular calls. The endpoints that support the query parameter are listed below. Note that the allowed options may differ from endpoint to endpoint depending on if the endpoint supports all available options.

  • POST /v2/assets
  • POST /v2/data_assets
  • POST /v2/assets/{asset_id}/publish
  • POST /v2/assets/{asset_id}/clone
  • POST /v2/assets/{asset_id}/promote
  • POST /v2/assets/{asset_id}/deepcopy
  • POST /v2/assets/bulk_create
  • POST /v2/assets/bulk_patch
  • PATCH /v2/assets/{asset_id}
  • POST /v2/assets/{asset_id}/attributes
  • PATCH /v2/assets/{asset_id}/attributes/{attribute_key}
  • DELETE /v2/assets/{asset_id}/attributes/{attribute_key}
  • POST /v2/assets/{asset_id}/attachments
  • DELETE /v2/assets/{asset_id}/attachments/{attachment_id}
  • POST /v2/trashed_assets/{asset_id}/restore

Duplicate Detection Strategy

The duplicate detection strategy defines what fields to be used for determining if assets of a particular asset type are duplicates. The available duplicate detection strategies are:

  • DUPLICATE_DETECTION_BY_NAME - the metadata.name field
  • DUPLICATE_DETECTION_BY_RESOURCE_KEY - the metadata.resource_key field
  • DUPLICATE_DETECTION_BY_NAME_AND_RESOURCE_KEY - the metadata.name and the metadata.resource_key fields
  • DUPLICATE_DETECTION_NOT_APPLICABLE - no duplicate will be determined. If this strategy is used, no duplicate will be determined by the strategy. At the same time, it also disables the duplicate detection for original asset and copies of the same asset. In other words, it disables duplicate detection for assets of the asset type completely.

The duplicate detection strategy can be set in several levels as shown below (from the highest priority to the lowest priority). Setting with a higher priority will take precedence over the setting with a lower priority.

  • Strategy of the asset type defined in the asset container configuration, e.g.,
{
  "duplicate_strategies": [
    {
      "asset_type": "data_asset",
      "strategy": "DUPLICATE_DETECTION_BY_NAME_AND_RESOURCE_KEY"
    }
  ]
}
  • Strategy specified in the asset type definition, e.g.,
{
  "description": "Job Run",
  "fields": [],
  "identity": {
  	"strategy": "DUPLICATE_DETECTION_NOT_APPLICABLE"
  }
}
  • System default strategy of the asset type in the residing asset container. i.e.,

    • Project/Space:
    • connection: DUPLICATE_DETECTION_BY_NAME_AND_RESOURCE_KEY
    • Catalog:
    • connection: DUPLICATE_DETECTION_BY_NAME_AND_RESOURCE_KEY
    • data_asset: DUPLICATE_DETECTION_BY_NAME_AND_RESOURCE_KEY
  • The default_duplicate_strategy specified in the asset container configuration (which applies to all asset types), i.e.,

{
  "default_duplicate_strategy": "DUPLICATE_DETECTION_BY_NAME"
}
  • System default strategy DUPLICATE_DETECTION_BY_NAME (which applies to all asset types)

Multiple duplicates

It is possible that a call may find more than one duplicate for a given asset. It could be that the duplicates were created before CAMS started processing duplicate assets, or the duplicates were created because multiple calls were creating the same asset at the same time.

If the effective value for duplicate_action is REJECT, CAMS will fail the call and return the asset ids of all the duplicates in the error response. If the effective value for duplicate_action is UPDATE or REPLACE, CAMS will rank the duplicates based on the following order and choose the duplicate that has the highest score and the caller has permission to update as the target for updating or overwriting. When all things are equal, the duplicates will be ranked by the created time (i.e., the metadata.created field) from the earliest to the most recent.

  • Original asset
  • Copies of the same asset
  • Asset with the same values

How the duplicate asset is updated or overwritten

If the effective value of duplicate_action is UPDATE or REPLACE, the following information of the duplicate asset that has the highest score and the caller has permission to update will be updated or overwritten with the values from the incoming asset based on the rules. Any other aspects of the duplicate asset will not be updated or overwritten, e.g., privacy settings, collaborators, owners, source asset, ratings, revisions, non-inline relationships, related assets, etc.

  • metadata
    • metadata.name
    • metadata.description
    • metadata.resource_key
    • metadata.origin_country
    • metadata.tags
  • attributes (e.g., entity.data_asset, entity.data_profile, entity.column_info, etc.)
  • attachments (i.e., attachments[*])

If duplicate_action is UPDATE, the chosen duplicate asset will be updated as described below. The result will look the same as the duplicate asset but with the incoming changes.

  • The listed metadata fields will be replaced with the values from the incoming asset if the value from the incoming asset is not null
  • All attributes in the incoming asset will be copied over and any existing attribute will be replaced. Some exceptions may apply, e.g.,
    • If the existing or incoming attribute connection represents a reference connection, the existing attribute connection will not be replaced.
    • Reference copy terms are preserved
  • All attachments in the incoming asset will be copied over. Any existing attachments with the same asset_type as the attachments in the incoming asset will be removed.

If duplicate_action is REPLACE, the chosen duplicate asset will be updated as described below. The result will look the same as the incoming asset with some exceptions.

  • All listed metadata fields will be replaced with the values from the incoming asset (even if the value from the incoming asset is null)
  • All existing attributes will be removed and all attributes in the incoming asset will be copied over with the exception of the attribute connection. If the existing or incoming attribute connection represents a reference connection, the existing attribute connection will remain unchanged.
  • All existing attachments will be removed and all attachments in the incoming asset will be copied over

Let's say you have an existing asset that looks like below

{
  "metadata": {
    "name":"B",
    "description":"C",
    "tags":[
      "confidential"
    ]
  },
  "entity": {
    "data_asset": {
      "mime_type": "binary"
    },
    "something": {}
  },
  "attachments":[
    {
      "asset_type": "data_asset",
      "name": "attachment 1"
    },
    {
      "asset_type": "something",
      "name": "attachment 2"
    }
  ]
}

and you try to add the following asset

{
  "metadata": {
    "name":"A",
  },
  "entity": {
    "data_asset": {
      "mime_type": "text/csv"
    }
  },
  "attachments":[
    {
      "asset_type": "data_asset",
      "name": "attachment 3"
    }
  ]
}

If the effective duplicate_action is UPDATE, the existing asset will be modified to be the following

{
  "metadata": {
    "name":"A",
    "description":"C",
    "tags":[
      "confidential"
    ]
  },
  "entity": {
    "data_asset": {
      "mime_type": "text/csv"
    },
    "something": {}
  },
  "attachments":[
    {
      "asset_type": "something",
      "name": "attachment 2"
    },
    {
      "asset_type": "data_asset",
      "name": "attachment 3"
    }
  ]
}

If the effective duplicate_action is REPLACE, the existing asset will be modified to be the following

{
  "metadata": {
    "name":"A"
  },
  "entity": {
    "data_asset": {
      "mime_type": "text/csv"
    }
  },
  "attachments":[
    {
      "asset_type": "data_asset",
      "name": "attachment 3"
    }
  ]
}

Backup revision

When the best duplicate is updated as a result of asset duplicate processing, a revision is created in case we want to go back or review what was changed. The revision will contain commit information similar to below:

{
  "committed_at": "2020-11-17T08:13:39.103Z",
  "commit_message": "Backup prior to update the best duplicate",
  "reason": "update_duplicate",
  "duplicate_source": {
    "operation": "clone",
    "asset_id": "ca0007d9-051d-478f-b87f-82f38fc6997c",
    "catalog_id": "c548b021-e026-49a6-aa60-35fe478afdb5"
  }
}

The asset in the response will contain the previous_revision field in such a case. Which can be used to determine if the call indeed created a new asset or updated an existing asset.

{
    "metadata": {
        ...,
        "commit_info": {
            "previous_revision": 1
        }
    },
    "entity": {
        ...
    },
    "asset_id": "c1bf6686-836c-4f93-b173-c2ed52da8e76"
}

Check duplicates before creating an asset

The duplicate asset processing automatically kicks in when a CAMS call tries to create an asset. However, in some cases, you may want to check possible duplicates before creating an asset or before publish/clone/promote/deepcopy an asset. CAMS provides an endpoint POST /v2/assets/duplicates/search to help you do this. You can either supply an existing asset or an asset payload to check the duplicates. The endpoint will list all the potential duplicates and why they were considered duplicates.

Lineage and Activity event messages change

If the query parameter duplicate_action is UPDATE or REPLACE and duplicate assets are found, the calls will change from creating a new asset to updating an existing asset. As a result, the corresponding Lineage and Activity event messages will also change from creating an asset to updating an asset.

Known issues/limitations

Duplicate assets may be created due to race condition

When a call is made to create an asset, CAMS searches for potential duplicates and creates the asset only if no duplicate is found. If multiple calls are made at the exact same time to create the same asset, it is possible to result in a duplicate. For example, two calls try to create the same asset at the same time, and both calls search for potential duplicates and do not find any duplicates; both calls think there is no duplicate and create the asset. As the result, the same asset will be created twice and each asset is a duplicate of the other.

There is currently no way to prevent such cases from happening. If this happened, the user would have to choose one of these assets and delete others. Internally, CAMS always favours the asset that has the earliest value in the metadata.created field and chooses it for future duplicate updating/overwriting operations.

Troubleshooting

Duplicate assets are not detected

Sometimes you may see assets that look like duplicates but are not detected as duplicates. You can call the GET /v2/assets/{asset_id} API to get the JSON representation of these assets and compare the fields that are used for identifying duplicates. If the fields are not the same, then the assets are not duplicates. Otherwise, it may fall into one of the situations where real duplicates are not detected. Please see the Known issues/limitations section for more details.

For instance, if the effective duplicate detection strategy is DUPLICATE_DETECTION_BY_NAME_AND_RESOURCE_KEY, you can compare the metadata.name and the metadata.resource_key fields of these assets and see if they are indeed the same; if the effective duplicate detection strategy is DUPLICATE_DETECTION_BY_NAME, you can compare the metadata.name field of these assets. For details about what fields are used for a strategy, please see Duplicate detection strategy section.

Asset Types

Asset Types serve multiple purposes in the Assets API. Asset types fall into two categories:

  • Primary asset type:

    • describes the primary type of an asset
    • every primary metadata document (ie, card) will have exactly one primary asset type, whose name will be stored in the card's "metadata.asset_type" field
    • every card will have exactly one primary attribute whose name matches the name of the primary asset type
    • a very common example of a primary asset type is the "data_asset" type, examples of which are shown throughout this documentation

  • Secondary / Extended asset type:

The names of various asset types are used in the following ways, all at once, within a single primary metadata document:

The content, or definition, of an asset type serves the following purposes:

  • tell the catalog what fields of an attribute should be indexed for searching
  • specify search paths and cross attribute searching
  • specify additional features like relationships and external asset previews (both of which are beyond the scope of this document)

An asset type must exist in the catalog before it can be used for any of the above purposes.

As of this writing there are several asset types available, including the following:

  1. data_asset
  2. folder_asset
  3. policy_transform
  4. asset_terms
  5. column_info
  6. connection
  7. ai_training_definition
  8. data_flow
  9. activity
  10. notebook
  11. machine-learning-stream
  12. dashboard
  13. data_profile_nlu

You are free to use any of the above asset types. You do not have to, nor are you allowed to, create or over-write any of the above asset types.

Use the Create Asset Type API to create your own asset type. See Asset Type Fields for an overview of the specification of an asset type. See Create Asset Type: book for an example of creating an asset type.

Asset Type Fields

Here is a description for each of the fields in the definition of an asset type. You supply values for these fields when creating an asset type. You will see those same values returned when you get a list of asset types or get a specific asset type.

  • "name":
    • can be used in catalog searches of attribute contents
  • "description": a description for this asset type
  • "fields":
    • an array that contains information for the fields in the corresponding attribute that should be indexed for subsequent searches.
    • does not (necessarily) describe all the fields in attributes of this asset type.
    • there must be at least one item in this array. In other words, there must be at least one index for an asset type.
    • see the following Fields Table for a description of the contents of an item in the "fields" array
    • see "fields" and "properties" Note below
  • "properties":
    • an object that contains "non-index" information for the fields in the corresponding attribute. This information is typically used by UIs that display/edit assets.
    • does not (necessarily) describe all the fields in attributes of this asset type.
    • see the following Properties Table for a description of the contents of an item in the "properties" object
    • see "fields" and "properties" Note below
  • "external_asset_preview": beyond the scope of this document
  • "relationships": beyond the scope of this document
  • "localized_metadata_attributes": a description for this asset type
  • "decorates": list of pointers to types this type can decorate
  • "identity": identity definition of the assets of the type
  • "global_search_searchable": list of fields made searchable through Global Search functionality
    • The fields correspond the the "key" defined in the field
  • "attribute_behavior": define the behavior only if this asset type is used as an attribute
    • it contains a field "remove_on_copy". This field can take boolean values true or false.
    • when "remove_on_copy" is true, then during cloning, publishing or promoting the asset, the attribute is removed from the asset
  • "attribute_only": takes boolean values true or false. When true, then this attribute will be used as custom attributes
  • "data_protection": asset type properties and attachments that should be removed when user who does not have access is trying to view the data
  • "is_column_custom_attribute": takes boolean values true or false. When true, then this attribute can be applied as a column level attribute. See Columns and Column Level Attributes
  • "can_have_image": takes boolean values true or false. Set to true if asset type is expected to support uploading of images
  • "icon_id": name or id of the svg image to be used as the icon for the asset type
  • "allow_decorators": takes boolean value true or false. When true, custom attributes can decorate this asset type

Note: "fields" and "properties" can, optionally, both be used to describe the exact same field in an attribute. Whether you use "fields" and/or "properties" depends on what you want to specify for a field. For example, if you're creating an asset type named "person" and a person has a field called "birthdate" (resulting in "entity.person.birthdate" being present in the primary metadata document) then:

  • if you want birthdate to be indexed (for searching) then you would include an entry in the "fields" array for birthdate
  • if you want a UI to understand/display the birthdate properly then you would include an entry in the "properties" object for that same birthdate field

See this example which shows both an example "fields" array and an example "properties" object.

Fields Table: Asset Type "fields" array - item contents

Key Description Example Required
key the name of both the field that will appear in an attribute for this asset type, and the name of the corresponding index for that attribute field data_asset.mime_type Yes
type the data type of the field being indexed boolean, or number, or string Yes
facets beyond the scope of this document true or false No. Defaults to false.
search_path a json path that locates a field in the attribute See Search Path Examples below. Yes
is_searchable_across_types specifies whether this field can be used in a query without specifying the asset type true or false No. Defaults to false.

Properties Table: Asset Type "properties" object - item contents

Name Type Description
type String Specifies the data type for the property. This value is required. Possible types are: string, number
description String A displayable string to describe the property.
is_array boolean true if the property value is multi-valued (json array).
required boolean true if the property requires a value to be set.
hidden boolean true if the application UI should not display the property or value.
readonly boolean true if the property should not be changed once set.
default_value matches the "type" A value that should be set if no value is provided when the asset attribute is created.
placeholder string A string an application UI can use as a prompt before a value is entered.
values array, elements matching "type" An array of allowed values for the property. Used to describe a limited enumeration or "choice list".
minimum integer/number For an integer or number property, the minimum allowed value.
maximum integer/number For an integer or number property, the maximum allowed value. If both minimum and maximum are specified, minimum must be less than or equal to maximum.
min_length integer For a string property, the minimum allowed length. If specified, must be greater than or equal to zero.
max_length integer For a string property, the maximum allowed length. If specified, must be greater than or equal to zero. If both min_length and max_length are specified, min_length must be less than or equal to max_length.
properties object For a property of type 'object', the recursive definition of the properties, described as in this table. This allows describing nested object-valued properties.

Search Path Examples

  • See the request body in Create Asset Type: book for an example of where a search path is used in the definition of an asset type.

    • Note: when you specify a search path in the definition of an asset type's "field", you only specify the path within the correspondingly named attribute. You needn't specify the attribute name. For example if you have an attribute called "book" that has a field called "author.last_name" within it, you only need to specify "author.last_name" as the search path - not "book.author.last_name".
  • See Search Asset Type: attribute - book for an example of where a search path is used in the body of a search.

    • Note: when you specify a search path in the body of search you must specify the name of the attribute being searched. For example if you have an attribute called "book" that has a field called "author.last_name" within it, you would include the name of the attribute in the search path: "book.author.last_name".
  • "price" : a simple path contains just the name of the field to be searched. In this case the attribute being searched should have a simple field called "price".

  • "tags[]" : traverse a json array called "tags". Because tags[] is not followed by any further names it must be a basic type (e.g. string, boolean, or number), and so its elements will be indexed directly.

  • "asset_terms[].name" : this search path indicates a path starting with a json object named "term_assignments" at the top, traversing through a json array named asset_terms (you use the [] at the end of the field name to indicate it's an array), landing on another json object that has a field called "name". The "name" field will be indexed.

  • "asset_terms[0].name" : same as above but only the first element in the "asset_terms" array will be traversed.

  • "columns.*.tags[]" : traverse an object called "columns" followed by any column name (the '*' indicates a wildcard), followed by a json array called "tags". Because tags[] is not followed by any further names it must be a basic type (e.g. string, boolean, or number), and so its elements will indexed directly.

  • "column_tags.*[]" : the json object "column_tags" contains a series of arrays indicated by *[]. The name of the array object doesn't matter - we want to index it.

Global Search searchable custom attributes

Fields that have been identified as Global Search searchable by being included in global_search_searchable array by their key, will be synchronized as custom attributes to Global Search microservice, and will become searchable via Global Search. Note that field will only be synchronized to Global Search if field definition contains a valid search_path. Values found at that search_path will be synchronized to Global Search, otherwise field will be ignored. Any values provided in global_search_searchable array which do not correspond to any existing fields of the type will be ignored.

An example of valid configuration of global_search_searchable attributes would be:

{
    "name": "book",
    "description": "Book asset type",
    "fields": [
        {
            "key": "last_name",
            "type": "string",
            "facet": false,
            "is_array": false,
            "search_path": "author.last_name",
            "is_searchable_across_types": true
        }
    ],
    "global_search_searchable": [
      "last_name"
    ],
    "properties": {
        "price" : {
            "type": "number",
            "description": "Suggested retail price",
        }
    }
}

Following are key characteristics of a valid definition:

  • Key of a field last_name is included in global_search_searchable array.
  • Field last_name has a properly defined search_path which contains a valid json path.

Common pitfalls:

  • Not including search_path into the field definition will cause the field to be ignored and prevent it from indexing. Similarly, an invalid json path definition within search_path which either is not formatted correctly, or points to a wrong location will prevent field value from being indexed as global_search_searchable.
  • Make sure that only the key value of the field is used inside global_search_searchable. In the above example last_name is the name of the field, so the global_search_searchable array contains an last_name.

data_asset Type

"data_asset" is by far the most commonly used already available asset type. It can be seen in:

The reason "data_asset" is so popular is that it is a generic asset type that allows you to declare a specific type for a given asset resource without explicitly creating an asset type named after that specific type. For example, say you want to create a primary metadata document for a csv file. You could first create a specific asset type named, say, "csv_file", and then create a primary metadata document (for that csv file) and specify "csv_file" as the value for "metadata.asset_type". However, you can avoid creating a specific "csv_file" asset type by instead using the generic "data_asset" asset type and then use the "mime_type" field of the "data_asset" attribute to declare that the specific type of your asset resource is a csv file. To do so, the primary metadata document for the csv file would have:

  • a "metatada.asset_type" value of the generic type "data_asset"
  • a "entity.data_asset.mime_type" value of the specific type "text/csv".

The fields "asset_type" and "mime_type" both describe the "type" of the asset resource. However:

  • the type specified by the "metatada.asset_type" field (ie, "data_asset") is generic
  • the type specified by the "entity.data_asset.mime_type" field (ie, "text/csv") is specific

It is the "mime_type" field of the data_asset type that allows you to declare a specific type for an asset without creating that specific type(!).

So, in its most basic use, the "data_asset" asset type is a very "lite" asset type. It's used to avoid creating many other "heavier" asset types. However, if you need to create more complex attributes with indexes for specific fields in your attribute then you will have to create your own asset type (see Create Asset Type: book for an example).

The other two fields of the type "data_asset" are "dataset" and "columns".

  • "dataset" value of false means that the "columns" field is absent in a "data_asset" attribute
  • "dataset" value of true means that the "columns" field is present in a "data_asset" attribute

The "columns" field of a "data_asset" attribute is optionally used to specify metadata for columns of assets that have columns, like csv files, spreadsheets, database tables, etc.

The full definition of the "data_asset" type is shown in Get Asset Type: data_asset - Response Body.

See Get Asset - CSV File - Response Body - Before Profiling and Get Asset - CSV File - Response Body - After Profiling for examples where a "data_asset" is used for a csv asset resource.

Using Secondary / Extended / Decorator Asset Types to Simulate Type Inheritance

Asset type inheritance/subclassing is not supported by the Asset Type API. Asset types can be combined through the use of Secondary / Extended / Decorator Asset Types, to simulate inheritance through composition of multiple types. A "decorator" can combine a common set of properties that under a traditional inheritance model would be part of the super class and "decorate" those types that would traditionally be the child class. The asset type decorates field specifies the child asset types that are decorated. Note that type decoration is not enforced by the API, i.e. there is no checking that the contents of an asset has fields which match what is declared in any asset type. However, the IKC UI honors the type decorator setting by presenting the fields in decorator types as custom attributes in the Asset Overview screen UI under "Details" section. For more details on using the asset type decorator feature, see Tailor your Data Catalog with custom asset attributes.

Get Asset Types

You can get a list of the asset types in a catalog using the following Asset Types API:

Get Asset Types - Request URL:

GET {service_URL}/v2/asset_types?catalog_id={catalog_id}

Get Asset Types - Response Body:

{
  "resources": [
    {
      "description": "Data Asset Type",
      "fields": [
        {
          "key": "dataset",
          "type": "boolean",
          "facet": true,
          "is_array": false,
          "is_searchable_across_types": false
        },
        {
          "key": "mime_type",
          "type": "string",
          "facet": true,
          "is_array": false,
          "is_searchable_across_types": false
        },
        {
          "key": "columns",
          "type": "string",
          "facet": true,
          "is_array": true,
          "search_path": "columns[].name",
          "is_searchable_across_types": true
        }
      ],
      "external_asset_preview": {},
      "relationships": [],
      "name": "data_asset",
      "version": 3
    },
    "global_search_searchable": [
      "mime_type"
    ],
    {
      "description": "An asset type you can use to describe the columns of a data asset.  Normally attached as a property to an existing data asset.",
      "fields": [
        {
          "key": "column_info_term_display_name",
          "type": "string",
          "facet": true,
          "is_array": false,
          "search_path": "*.column_terms[].term_display_name",
          "is_searchable_across_types": true
        },
        {
          "key": "column_info_term_id",
          "type": "string",
          "facet": true,
          "is_array": false,
          "search_path": "*.column_terms[].term_id",
          "is_searchable_across_types": false
        },
        {
          "key": "column_info_tag",
          "type": "string",
          "facet": true,
          "is_array": false,
          "search_path": "*.column_tags[]",
          "is_searchable_across_types": true
        },
        {
          "key": "column_info_description",
          "type": "string",
          "facet": false,
          "is_array": false,
          "search_path": "*.column_description",
          "is_searchable_across_types": true
        },
        {
          "key": "column_info_omrs_guid",
          "type": "string",
          "facet": true,
          "is_array": false,
          "search_path": "*.omrs_guid",
          "is_searchable_across_types": true
        }
      ],
      "external_asset_preview": {},
      "relationships": [],
      "name": "column_info",
      "version": 4
    },
    {
      "description": "An asset type that you can use to assign terms from a business glossary to any asset.  Attach items of this type as attributes to other assets.",
      "fields": [
        {
          "key": "asset_term_display_name",
          "type": "string",
          "facet": true,
          "is_array": false,
          "search_path": "list[].term_display_name",
          "is_searchable_across_types": true
        },
        {
          "key": "asset_term_id",
          "type": "string",
          "facet": true,
          "is_array": false,
          "search_path": "list[].term_id",
          "is_searchable_across_types": false
        }
      ],
      "external_asset_preview": {},
      "relationships": [],
      "name": "asset_terms",
      "version": 1
    },
...
  ]
}

See Asset Type Fields for descriptions of the fields in each of the above asset types.

In a scenario in which the user has not yet created any of their own asset types, the result will contain only the pre-existing, global, asset types. For brevity, the actual sample result shown above includes only a subset of those asset types. Try the GET Asset Types API on your catalog to see the complete set of pre-existing, global, asset types.

Get Asset Type: data_asset

You can get an individual asset type in a catalog using the following Asset Types API:

Get Asset Type: data_asset - Request URL:

GET {service_URL}/v2/asset_types/{type_name}?catalog_id={catalog_id}

Supplying "data_asset" as the value for the {type_name} parameter in the above url will produce a response like the following:

Get Asset Type: data_asset - Response Body:

{
  "description": "Data Asset Type",
  "fields": [
    {
      "key": "mime_type",
      "type": "string",
      "facet": true,
      "is_array": false,
      "is_searchable_across_types": false
    },
    {
      "key": "dataset",
      "type": "boolean",
      "facet": true,
      "is_array": false,
      "is_searchable_across_types": false
    },
    {
      "key": "columns",
      "type": "string",
      "facet": true,
      "is_array": true,
      "search_path": "columns[].name",
      "is_searchable_across_types": true
    }
  ],
  "global_search_searchable": [
      "mime_type"
  ],
  "external_asset_preview": {},
  "relationships": [],
  "name": "data_asset",
  "version": 3
}

See Asset Type Fields for descriptions of the fields in the above asset type definition.

Since an asset type called "data_asset" exists, you can create a primary metadata document (ie, card) with a "metadata.asset_type" value of "data_asset". That card must then also have a primary attribute called "data_asset".

The most interesting item in the "fields" array in the above "data_asset" asset type definition is the item with "key" value "mime_type". That item means that a primary attribute named "data_asset" will have a field called "mime_type". The value of that "mime_type" attribute field will declare the specific type of the asset resource represented by the primary metadata document. For example, see the field "entity.data_asset.mime_type" in Get Asset - CSV File - Response Body - Before Profiling where the "mime_type" value is "text/csv".

Notice the "data_asset" attribute in Get Asset - CSV File - Response Body - Before Profiling only contains two fields - "mime_type" and dataset. The columns field specified in the definition of the "data_asset" asset type is not present in the "data_asset" attribute.

Now compare all the items in the "fields" array in the above "data_asset" asset type definition with the "entity.data_asset" attribute fields as shown, for example, in Get Asset - CSV File - Response Body - After Profiling. Notice that now all the fields described in the "fields" array of the "data_asset" type are present as fields in the "entity.data_asset" attribute. In particular, profiling has added the "columns" field to the "data_asset" attribute.

The Before Profiling and After Profiling examples illustrate that not all the fields defined in an asset type need be present in a corresponding attribute.

Lastly, note that asset type definition includes a global_search_searchable list of field keys, including the value mime_type. That indicates that mime_type value of every instance of this asset type will be seachable via Global Search microservice.

Create Asset Type: book

Say you have a book asset resource and you want to create a primary metadata document to describe that book. You will first need to create an asset type called "book" (as shown below) so you can then:

  1. use the name of that asset type as the value for the "metadata.asset_type" field in the primary metadata document
  2. create a primary attribute named "book" that will contain data about your book.

Say you want that primary attribute to look like the following:

    "book": {
        "author": {
            "first_name": "Tracy",
            "last_name": "Smith"
          },
          "price": 29.95
        }
    }

The above "book" attribute has:

  • one complex field called "author" (complex fields are allowed in attributes)
  • one simple field called "price".

For this example, assume you'll want to be able to search inside the "author.last_name" field of "book" attributes.

In addition to that, lets assume that you would like to use value of "author.last_name" field to search for "books" via Global Search microservice.

To create an asset type named "book" that will allow you to do all of the above, use a request like the following:

Create Asset Type: book - Request URL:

POST {service_URL}/v2/asset_types?catalog_id={catalog_id}

Create Asset Type: book - Request Body:

{
    "name": "book",
    "description": "Book asset type",
    "fields": [
        {
            "key": "author.last_name",
            "type": "string",
            "facet": false,
            "is_array": false,
            "search_path": "author.last_name",
            "is_searchable_across_types": true
        }
    ],
    "global_search_searchable": [
      "author.last_name"
    ],
    "properties": {
        "price" : {
            "type": "number",
            "description": "Suggested retail price",
        }
    }
}

The purpose of most of the fields used in the above request was described in the Asset Type Fields section. Here are some things to note specifically in the above request:

  • "name": uses only lowercase letters, ie, "book"
  • "fields": even though our goal attribute has multiple fields in it, there is only one item in the asset type's "fields" array. That is because the "fields" array should only contain items for the fields of an attribute that we want the catalog to create an index for. In this case, we only want an index for the "author.last_name" field of "book" attributes.
    • "key": the name of the attribute field that we want indexed, and the name for that index. In this case, "author.last_name".
    • "type": the type of the "author.last_name" field is "string"
    • "facet": an explanation of this field is beyond the scope of this document
    • "is_array": false because "author.last_name" is not an array
    • "search_path": this is the path inside the attribute to the value that we want indexed
    • "is_searchable_across_types": an explanation of this field is beyond the scope of this document
  • "global_search_searchable" since we would like to be able to search for author.last_name value using Global Search - we include corresponding field.key value.

Create Asset Type: book - Response Body:

{
  "description": "Book asset type",
  "fields": [
     {
        "key": "author.last_name",
        "type": "string",
        "facet": false,
        "is_array": false,
        "search_path": "author.last_name",
        "is_searchable_across_types": true
     }
  ],
  "global_search_searchable": [
    "author.last_name"
  ],
  "relationships": [],
  "name": "book",
  "version": 1
}

The response to the POST /v2/asset_types API echoes the input, with two additional fields:

- `relationships`: an explanation of the contents of this field is beyond the scope of this document
- `version`: the version of the newly created asset type

You now have an asset type called "book" that specifies one indexed, search-able, field called "author.last_name". See Create Asset: book for an example of the ways in which that "book" asset type can be used when creating a primary metadata document.

Search Asset Type: attribute - book

The Search Asset Type API can be used to search inside a catalog for all the primary metadata documents that satisfy both of the following conditions:

  1. have a "metadata.asset_type" value that matches the asset type name specified in the {type_name} URL parameter
  2. have an attribute whose fields' values match those specified in the request body.

Recall that one of the primary reasons for creating an asset type is to specify fields in attributes (named after that asset type) that will be indexed for searching. The Create Asset Type: book section showed how to create an asset type named "book". The Create Asset: book section showed how to create a primary metadata document whose "metadata.asset_type" value and primary attribute name are both "book". So, if you use the value "book" for the {type_name} parameter in the URL below, and if you supply the following request body, then you'll get back matching metadata for books.

Search Asset Type: attribute - book - Request URL

POST {service_URL}/v2/asset_types/{type_name}/search?catalog_id={catalog_id}

Search Asset Type: attribute - book - Request Body:

{
     "query":"book.author.last_name:Smith"
}

Notice how the query specifies both the attribute (book) to be searched and the search path (author.last_name) within that attribute. The value to match is specified after the colon (:). In this case, the value is Smith.

The following is the result of the above search:

Search Asset Type: attribute - book - Response Body:

{
  "total_rows": 1,
  "results": [
    {
      "metadata": {
        "rov": {
          "mode": 0,
          "collaborator_ids": {}
        },
        "usage": {
          "last_updated_at": "2019-05-01T18:58:51Z",
          "last_updater_id": "IBMid-___",
          "last_update_time": 1556737131140,
          "last_accessed_at": "2019-05-01T18:58:51Z",
          "last_access_time": 1556737131140,
          "last_accessor_id": "IBMid-___",
          "access_count": 0
        },
        "name": "Getting Started with Assets",
        "description": "Describes how to create and use metadata for assets",
        "tags": [
          "getting",
          "started",
          "documentation"
        ],
        "asset_type": "book",
        "origin_country": "us",
        "rating": 0,
        "total_ratings": 0,
        "catalog_id": "c6f3cbd8-___",
        "created": 1556635077746,
        "created_at": "2019-04-30T14:37:57Z",
        "owner_id": "IBMid-___",
        "size": 0,
        "version": 0,
        "asset_state": "available",
        "asset_attributes": [
          "book"
        ],
        "asset_id": "3da5389d-d4a4-43da-be1f-___",
        "asset_category": "USER"
      },
      "href": "https://api.dataplatform.cloud.ibm.com/v2/assets/3da5389d-d4a4-43da-be1f-___?catalog_id=c6f3cbd8-___"
    }
  ]
}

In this case, there is only one primary metadata document returned in the "results" array (namely, the primary metadata document that was created in the Create Asset: book section). In general, there can be many matching documents in the "results" array.

Notice the results of an Asset Type Search, as shown above, only contain the "metadata" section of a primary metadata document. In particular, the "entity" section that contains the attributes is not returned. That is done to reduce the size of the response because, in general, the "entity" section of a primary metadata document can be much larger than the "metadata" section. Use the value of the "metadata.asset_id" in one of the items in "results" to retrieve either:

  • the entire primary metadata document (using the GET Asset API), or
  • just the attributes of the primary metadata document (using the GET Attributes API).

Notes:

  • searching is not limited to just primary attributes (like book above). Searches may also be performed on:
  • other parameters available for searches are:
    • limit (number): limit number of search results
    • sort (string): sort columns for search results
    • counts: beyond the scope of this document
    • drilldown: beyond the scope of this document

Search Asset Type: metadata - name

You're not limited to searching within attributes (like the attribute search shown in the previous section). You can also search within the "metadata" section of a primary metadata document.

Search Asset Type: metadata - name - Request URL:

POST {service_URL}/v2/asset_types/{type_name}/search?catalog_id={catalog_id}

Search Asset Type: metadata - name - Request Body:

{
    "query":"asset.name:Getting Started with Assets"
}

Notice the query signifies that the search should take place in the "metadata" section of the primary metadata document by using the term asset at the beginning of the search path. Then the field to be searched within "metadata" is specified - name in the example above. The value to match is specified after the colon (:), in this case the value is Getting Started with Assets.

The following is the result of the above search:

Search Asset Type: metadata - name - Response Body:

{
  "total_rows": 1,
  "results": [
    {
      "metadata": {
        "rov": {
          "mode": 0,
          "collaborator_ids": {}
        },
        "usage": {
          "last_updated_at": "2019-04-30T17:27:56Z",
          "last_updater_id": "IBMid___",
          "last_update_time": 1556645276827,
          "last_accessed_at": "2019-04-30T17:27:56Z",
          "last_access_time": 1556645276827,
          "last_accessor_id": "IBMid___",
          "access_count": 0
        },
        "name": "Getting Started with Assets",
        "description": "Describes how to create and use metadata for assets",
        "tags": [
          "getting",
          "started",
          "documentation"
        ],
        "asset_type": "book",
        "origin_country": "us",
        "rating": 0,
        "total_ratings": 0,
        "catalog_id": "c6f3cbd8-___",
        "created": 1556635077746,
        "created_at": "2019-04-30T14:37:57Z",
        "owner_id": "IBMid-___",
        "size": 0,
        "version": 0,
        "asset_state": "available",
        "asset_attributes": [
          "book"
        ],
        "asset_id": "3da5389d-d4a4-43da-be1f-___",
        "asset_category": "USER"
      },
      "href": "https://api.dataplatform.cloud.ibm.com/v2/assets/3da5389d-d4a4-43da-be1f-___?catalog_id=c6f3cbd8-___"
    }
  ]
}

In this case, the result is the same as was described in Search Asset Type: attribute - book - Response Body. See that section for more details.

Data Assets and Columns

Data assets represent tables or files from a connection to a data source (ex. tables) or files uploaded into cloud object storage associated with Projects or Catalog. Data assets extend the generic asset service and attachments functionality. This means that like generic assets, data assets also have name, description, visibility, members, tags, classifications and asset_type. In addition, data assets have mime type, column related attributes and properties. The asset type for data asset is data_asset and it is one of the asset types already available.

Like other assets, we can add or update attributes on data assets also. In addition, data assets can have attributes which are associated with individuals columns. Given below is a simple format of a data asset, which has attributes associated with columns.

{
    "metadata": {
        ...
        ...
        "name": "Name of the data asset",
        "asset_type": "data_asset",
        "asset_attributes": [
            "data_asset",
            "column_info",
            "column_level_custom_attribute",
            ... other attributes
        ],
        "asset_id": "id of the data asset"
    },
    "entity": {
        "data_asset": {
            "mime_type": "text/csv",
            "dataset": false,
            "columns": [
                {
                    "name": "NameOfColumn", // Name of the column
                    "type": {
                        "type": "varchar",
                        "length": 1024,
                        "scale": 0,
                        "nullable": true,
                        "signed": false
                    }
                }
            ]
        },
        "column_info": {
            "NameOfColumn": {            // we are listing the column_info attributes associated with each column
                "column_description": "description of the column",
                "column_terms": [
                    {
                        "term_display_name": "test_term",
                        "term_id": "d3d667e1-____"
                    }
                ]
            }
        },
        "column_level_custom_attribute": { // Column level custom attribute
            "columns": [
                {
                    "name": "NameOfColumn",
                    "OtherColumnProperty": "dummy value"
                }
            ]
        },
        ... other attributes
    },
    "attachments": [
      ...      
      ...
   ]
}

All asset APIs listed in Assets API Overview apply to data assets as well. In additions, data assets have special APIs.

Creating a Data Asset

Creating a data asset is similar to creating any other asset. In here,

In the first example, we will create a connected data asset. It represents a table or a file from an exisitng connection. The sample request body and the corresponding response is given below.

Create Data Asset: Request URL:

POST {service_URL}/v2/data_assets

Create Data Asset: -Sample Request Body:

{
    "metadata": {
        "name": "CUSTOMER", // Name of table
        "description": "customer table", // description
        "tags": [
            "public"
        ],
        "asset_type": "data_asset",
        "origin_country": "us",
        "rov": {
            "mode": 0
        }
    },
    "entity": {
        "data_asset": {
            "mime_type": "application/x-ibm-rel-table",
            "dataset": true,
            "properties": [
                {
                    "name": "schema_name",
                    "value": "DB2INST1"
                },
                {
                    "name": "table_name",
                    "value": "CUSTOMER"
                }
            ],
            "columns": [ // list of columns in the data asset
                {
                    "name": "CID",
                    "type": {
                        "type": "bigint",
                        "length": 19,
                        "scale": 0,
                        "nullable": false,
                        "signed": true,
                        "native_type": "BIGINT"
                    }
                },
                {
                    "name": "INFO",
                    "type": {
                        "type": "sqlxml",
                        "length": 0,
                        "scale": 0,
                        "nullable": true,
                        "signed": false,
                        "native_type": "XML"
                    }
                },
                {
                    "name": "HISTORY",
                    "type": {
                        "type": "sqlxml",
                        "length": 0,
                        "scale": 0,
                        "nullable": true,
                        "signed": false,
                        "native_type": "XML"
                    }
                }
            ]
        }
    },
    "attachments": [ // details of the connection
        {
            "asset_type": "data_asset",
            "name": "CUSTOMER",
            "description": "customer table",
            "mime": "application/x-ibm-rel-table",
            "connection_id": "3a______",
            "connection_path": "/DB2_path_/CUSTOMER_table_path",
            "is_partitioned": false
        }
    ]
}

Create Data Asset: - Response Body:

{
  "metadata": {
    "usage": {
      "last_updated_at": "2023-04-20T20:13:39Z",
      "last_updater_id": "-- creator id--",
      "last_update_time": 1682021619570,
      "last_accessed_at": "2023-04-20T20:13:39Z",
      "last_access_time": 1682021619570,
      "last_accessor_id": "-- creator id--",
      "access_count": 0
    },
    "rov": {
      "mode": 0,
      "collaborator_ids": {},
      "member_roles": {
        "-- creator id--": {
          "user_iam_id": "-- creator id--",
          "roles": [
            "OWNER"
          ]
        }
      }
    },
    "name": "CUSTOMER",
    "description": "customer table",
    "tags": [
      "public"
    ],
    "asset_type": "data_asset",
    "origin_country": "us",
    "resource_key": "0000:0000:0000:0000:0000:FFFF:0914:9C3E|50000|sample:/DB2INST1/CUSTOMER",
    "rating": 0,
    "total_ratings": 0,
    "catalog_id": "e1____",
    "created": 1682021619570,
    "created_at": "2023-04-20T20:13:39Z",
    "owner_id": "-- creator id--",
    "size": 0,
    "version": 2,
    "asset_state": "available",
    "asset_attributes": [
      "data_asset"
    ],
    "asset_id": "12____",
    "asset_category": "USER",
    "creator_id": "-- creator id--"
  },
  "entity": {
    "data_asset": {
      "mime_type": "application/x-ibm-rel-table",
      "dataset": true,
      "properties": [
        {
          "name": "schema_name",
          "value": "DB2INST1"
        },
        {
          "name": "table_name",
          "value": "CUSTOMER"
        }
      ],
      "columns": [
        {
          "name": "CID",
          "type": {
            "type": "bigint",
            "length": 19,
            "scale": 0,
            "nullable": false,
            "signed": true,
            "native_type": "BIGINT"
          }
        },
        {
          "name": "INFO",
          "type": {
            "type": "sqlxml",
            "length": 0,
            "scale": 0,
            "nullable": true,
            "signed": false,
            "native_type": "XML"
          }
        },
        {
          "name": "HISTORY",
          "type": {
            "type": "sqlxml",
            "length": 0,
            "scale": 0,
            "nullable": true,
            "signed": false,
            "native_type": "XML"
          }
        }
      ]
    }
  },
  "href": "/v2/assets/12____?catalog_id=e1____",
  "asset_id": "12____",
  "attachments": [
    {
      "attachment_id": "2a____",
      "asset_type": "data_asset",
      "attachment_type": "remote",
      "datasource_type": "8c____",
      "is_partitioned": false,
      "name": "CUSTOMER",
      "description": "customer table",
      "mime": "application/x-ibm-rel-table",
      "connection_id": "3a____",
      "connection_path": "/DB2INST1/CUSTOMER",
      "user_data": {},
      "href": "/v2/assets/12____/attachments/2a____?catalog_id=e1____",
      "asset_category": "USER"
    }
  ]
}

In the next example, we will create a data asset which represents a local file uploaded to catalog. The URL for the API remains same. The sample request body and the corresponding response are given below.

Create Data Asset for Local File: -Sample Request Body:

{
    "metadata": {
        "name": "New data Asset",
        "description": "data table",
        "tags": [
            "public"
        ],
        "asset_type": "data_asset",
        "origin_country": "us",
        "rov": {
            "mode": 0
        }
    },
    "entity": {
        "data_asset": {
            "mime_type": "application/octet-stream",
            "dataset": true,
            "columns": [
                {
                    "name": "COLUMN1",
                    "type": {
                        "length": 1024,
                        "nullable": true,
                        "type": "varchar",
                        "scale": 0,
                        "signed": false
                    }
                },
                {
                    "name": "COLUMN2",
                    "type": {
                        "length": 1024,
                        "nullable": true,
                        "type": "varchar",
                        "scale": 0,
                        "signed": false
                    }
                },
                {
                    "name": "COLUMN3",
                    "type": {
                        "length": 1024,
                        "nullable": true,
                        "type": "varchar",
                        "scale": 0,
                        "signed": false
                    }
                },
                {
                    "name": "COLUMN4",
                    "type": {
                        "length": 1024,
                        "nullable": true,
                        "type": "varchar",
                        "scale": 0,
                        "signed": false
                    }
                },
                {
                    "name": "COLUMN5",
                    "type": {
                        "length": 1024,
                        "nullable": true,
                        "type": "varchar",
                        "scale": 0,
                        "signed": false
                    }
                },
                {
                    "name": "COLUMN6",
                    "type": {
                        "length": 1024,
                        "nullable": true,
                        "type": "varchar",
                        "scale": 0,
                        "signed": false
                    }
                },
                {
                    "name": "COLUMN7",
                    "type": {
                        "length": 1024,
                        "nullable": true,
                        "type": "varchar",
                        "scale": 0,
                        "signed": false
                    }
                },
                {
                    "name": "COLUMN8",
                    "type": {
                        "length": 1024,
                        "nullable": true,
                        "type": "varchar",
                        "scale": 0,
                        "signed": false
                    }
                }
            ],
            "properties": [
                {
                    "name": "bucket",
                    "value": "--bucket name--"
                },
                {
                    "name": "file_name",
                    "value": "file_path/file_name-csv"
                },
                {
                    "name": "first_line_header",
                    "value": "false"
                },
                {
                    "name": "encoding",
                    "value": "UTF-8"
                },
                {
                    "name": "invalid_data_handling",
                    "value": "fail"
                },
                {
                    "name": "file_format",
                    "value": "csv"
                }
            ]
        }
    },
    "attachments": [
        {
            "asset_type": "data_asset",
            "name": "remote",
            "description": "remote",
            "mime": "text/csv",
            "connection_id": "26____",
            "connection_path": "Cloud_object_storage_path/file_name-csv.csv",
            "is_partitioned": false
        }
    ]
}

Create Data Asset For Local File: - Response Body:

For the above request, the expected response is given below.

{
  "metadata": {
    "usage": {
      "last_updated_at": "2023-04-20T20:23:21Z",
      "last_updater_id": "-- creator id--",
      "last_update_time": 1682022201699,
      "last_accessed_at": "2023-04-20T20:23:21Z",
      "last_access_time": 1682022201699,
      "last_accessor_id": "-- creator id--",
      "access_count": 0
    },
    "rov": {
      "mode": 0,
      "collaborator_ids": {},
      "member_roles": {
        "-- creator id--": {
          "user_iam_id": "-- creator id--",
          "roles": [
            "OWNER"
          ]
        }
      }
    },
    "name": "New data Asset",
    "description": "data table",
    "tags": [
      "public"
    ],
    "asset_type": "data_asset",
    "origin_country": "us",
    "resource_key": "New data Asset",
    "rating": 0,
    "total_ratings": 0,
    "catalog_id": "e1______",
    "created": 1682022201699,
    "created_at": "2023-04-20T20:23:21Z",
    "owner_id": "-- creator id--",
    "size": 0,
    "version": 2,
    "asset_state": "available",
    "asset_attributes": [
      "data_asset"
    ],
    "asset_id": "80___",
    "asset_category": "USER",
    "creator_id": "-- creator id--"
  },
  "entity": {
    "data_asset": {
      "mime_type": "application/octet-stream",
      "dataset": true,
      "columns": [
        {
          "name": "COLUMN1",
          "type": {
            "length": 1024,
            "nullable": true,
            "type": "varchar",
            "scale": 0,
            "signed": false
          }
        },
        {
          "name": "COLUMN2",
          "type": {
            "length": 1024,
            "nullable": true,
            "type": "varchar",
            "scale": 0,
            "signed": false
          }
        },
        {
          "name": "COLUMN3",
          "type": {
            "length": 1024,
            "nullable": true,
            "type": "varchar",
            "scale": 0,
            "signed": false
          }
        },
        {
          "name": "COLUMN4",
          "type": {
            "length": 1024,
            "nullable": true,
            "type": "varchar",
            "scale": 0,
            "signed": false
          }
        },
        {
          "name": "COLUMN5",
          "type": {
            "length": 1024,
            "nullable": true,
            "type": "varchar",
            "scale": 0,
            "signed": false
          }
        },
        {
          "name": "COLUMN6",
          "type": {
            "length": 1024,
            "nullable": true,
            "type": "varchar",
            "scale": 0,
            "signed": false
          }
        },
        {
          "name": "COLUMN7",
          "type": {
            "length": 1024,
            "nullable": true,
            "type": "varchar",
            "scale": 0,
            "signed": false
          }
        },
        {
          "name": "COLUMN8",
          "type": {
            "length": 1024,
            "nullable": true,
            "type": "varchar",
            "scale": 0,
            "signed": false
          }
        }
      ],
      "properties": [
        {
          "name": "bucket",
          "value": "--bucket name--"
        },
        {
          "name": "file_name",
          "value": "file_path/file_name-csv"
        },
        {
          "name": "first_line_header",
          "value": "false"
        },
        {
          "name": "encoding",
          "value": "UTF-8"
        },
        {
          "name": "invalid_data_handling",
          "value": "fail"
        },
        {
          "name": "file_format",
          "value": "csv"
        }
      ]
    }
  },
  "href": "/v2/assets/80__?catalog_id=e1____",
  "asset_id": "805e24e6-2473-41d4-9e2a-679df9a40e7b",
  "attachments": [
    {
      "attachment_id": "2b____",
      "asset_type": "data_asset",
      "attachment_type": "remote",
      "is_partitioned": false,
      "name": "remote",
      "description": "remote",
      "mime": "text/csv",
      "connection_id": "26____",
      "connection_path": "Cloud_object_storage_path/file_name-csv.csv",
      "user_data": {},
      "href": "/v2/assets/80____/attachments/2b____?catalog_id=e1____",
      "asset_category": "USER"
    }
  ]
}

Retrieving a Data Asset

Retrieving a data asset can be achieved by calling APIs for retrieving any other asset. Since data assets are also uploaded locally we can retrieve csv files also. However, we have special APIs designed specifically to retrieve data assets.

If we retrieve the data asset created in the previous section

Retrieve a Data Asset: Request URL:

GET {service_URL}/v2/data_assets/{asset_id}?catalog_id={catalog_id}

Retrieve Data Asset: - Response Body:

{
  "metadata": {
    "usage": {
      "last_updated_at": "2023-04-17T20:20:56Z",
      "last_updater_id": "--id--",
      "last_update_time": 1681762856921,
      "last_accessed_at": "2023-04-17T20:20:56Z",
      "last_access_time": 1681762856921,
      "last_accessor_id": "--id--",
      "access_count": 0
    },
    "rov": {
      "mode": 0,
      "collaborator_ids": {},
      "member_roles": {
        "--id--": {
          "user_iam_id": "--id--",
          "roles": [
            "OWNER"
          ]
        }
      }
    },
    "name": "CUSTOMER",
    "description": "customer table",
    "tags": [
      "public"
    ],
    "asset_type": "data_asset",
    "origin_country": "us",
    "resource_key": "string",
    "rating": 0,
    "total_ratings": 0,
    "catalog_id": "e12____",
    "created": 1681762856921,
    "created_at": "2023-04-17T20:20:56Z",
    "owner_id": "--id--",
    "size": 0,
    "version": 2,
    "asset_state": "available",
    "asset_attributes": [
      "data_asset"
    ],
    "asset_id": "75____",
    "asset_category": "USER",
    "creator_id": "--id--"
  },
  "entity": {
    "data_asset": {
      "mime_type": "application/x-ibm-rel-table",
      "dataset": true,
      "columns": [
        {
          "name": "CID",
          "type": {
            "length": 19,
            "nullable": false,
            "type": "bigint",
            "scale": 0,
            "signed": true
          }
        },
        {
          "name": "INFO",
          "type": {
            "length": 0,
            "nullable": true,
            "type": "sqlxml",
            "scale": 0,
            "signed": false
          }
        },
        {
          "name": "HISTORY",
          "type": {
            "length": 0,
            "nullable": true,
            "type": "sqlxml",
            "scale": 0,
            "signed": false
          }
        }
      ],
      "properties": [
        {
          "name": "schema_name",
          "value": "DB2INST1"
        },
        {
          "name": "table_name",
          "value": "CUSTOMER"
        }
      ]
    }
  },
  "attachments": [
    {
      "id": "51d____",
      "version": 2,
      "asset_type": "data_asset",
      "name": "CUSTOMER",
      "description": "customer table",
      "mime": "application/x-ibm-rel-table",
      "connection_id": "3a____",
      "connection_path": "/DB2_path_/CUSTOMER_table_path",
      "datasource_type": "8c____",
      "creator_id": "--id--",
      "create_time": 1681762856936,
      "size": 0,
      "is_remote": true,
      "is_managed": false,
      "is_referenced": false,
      "is_object_key_read_only": false,
      "is_user_provided_path_key": true,
      "transfer_complete": true,
      "is_partitioned": false,
      "complete_time_ticks": 1681762856936,
      "user_data": {},
      "test_doc": 0,
      "usage": {
        "access_count": 0,
        "last_accessor_id": "--id--",
        "last_access_time": 1681762856936
      }
    }
  ],
  "href": "/v2/data_assets/75__?catalog_id=e1____"
}

Retrieving Columns from a Data Asset

Data assets often contain information regarding the columns in the table or file. Use the GET columns API to retrieve the column related information, such as the terms, column description or any other custom attribute assigned to a column etc.

Retrieve Columns from a Data Asset: Request URL:

GET {service_URL}/v2/data_assets/{asset_id}/columns?catalog_id={catalog_id}

Retrieve Columns from a Data Asset: - Response Body:

{
  "total_rows": 1, // Total number of columns
  "resources": [
    {
      "data_asset": {
        "columns": [
          {
            "name": "NameOfColumn",
            "type": {
              "type": "varchar",
              "length": 1024,
              "scale": 0,
              "nullable": true,
              "signed": false
            },
            "position": 1
          }
        ]
      },
      "column_info": {
        "NameOfColumn": {
          "column_description": "column description",
          "column_terms": [
            {
              "term_display_name": "test_term",
              "term_id": "d3d______"
            }
          ],
          "name": "NameOfColumn"
        }
      },
      "column_level_custom_attribute": {
        "columns": [
          {
            "name": "NameOfColumn",
            "OtherColumnProperty": "dummy value"
          }
        ]
      }
    }
  ]
}

Data assets can hold information about the columns of the data. It is important to note that they do not hold the actual column and the column values. The information it can stores can be the terms and data class assigned after profiling or manually, data quality score of the column, the type of the column, tags associated with the column and the description of the column. We can create custom attributes and assign them to columns also. The Create Asset Type: book section shows how to create an asset type named book.

Among the already available asset types, asset types "data_asset" and "column_info" contain attributes for columns.

The basic structure of data_asset asset type is described in section data_asset Type. Here we will elaborate on the "columns" field of the data_asset.

The "columns" field consists of a list of elements. Each element represents a column. It is populated after profiling. Example of a single column element is given below

{
          "name": "MARITAL_STATUS", // Name of the column
          "type": {
            "type": "varchar",
            "length": 1024,
            "scale": 0,
            "nullable": true,
            "signed": false
          }
}

The column_info attribute in a data asset represents information about each column. The informations is added manually, or after running profiling or metadata enrichment. The "column_info" field consists of a map. Each key-value pair represents an individual column. Each key is the name of the column. The value of the key represents attributes assigned to the column. Example of a single column element's column_info is given below

"MARITAL_STATUS": { // name of the column
                    "data_class": {
                        "selected_data_class": {
                            "id": "7a8e___",
                            "name": "status",
                            "setByUser": false
                        }
                    },
                    "inferred_type": {
                        "length": 10,
                        "precision": 0,
                        "scale": 0,
                        "type": "STRING",
                        "display_name": "varchar(10)"
                    },
                    "quality": {
                        "score": 98
                    },
                    "column_terms": [
                        {
                            "term_id": "7a8e____",
                            "term_display_name": "TestTerm",
                            "confidence": 0.984,
                            "specification": "Data class based assignment"
                        }
                    ],
                    "suggested_terms": [],
                    "rejected_terms": [],
                    "name": "MARITAL_STATUS"
                }
            }

Assigning Terms and Data Class to a Column

We can assign terms and data class to a column manually also. The terms associated with individual columns reside as an array inside the column_info attribute.

In the first scenario we will add a single term and data class to a file which does not have the "column_info" attribute. This can happen if a csv file has been uploaded locally. In this case, we need to use the Create Asset API to create and populate an instance of "column_info" attribute inside the asset's primary metadata document.

POST {service_URL}/v2/assets/{asset_id}/attributes?catalog_id={catalog_id}

Body:

{
    "name": "column_info",
    "entity": {
        "BUSINESS_NAME": {
            "column_terms": [
                {
                    "term_id": "--your term id--",
                    "term_display_name": "term_name"
                }
            ],
            "data_class": {
                "selected_data_class": {
                    "id": "--your data class id--",
                    "name": "data_class_name"
                }
            }
        }
    }
}

The response should look like:

{
  "asset_id": "--your asset id--",
  "column_info": {
    "BUSINESS_NAME": { // Name of your column
      "column_terms": [
        {
          "term_id": "--your term id--",
          "term_display_name": "term_name"
        }
      ],
      "data_class": {
        "selected_data_class": {
          "id": "--your data class id--",
          "name": "data_class_name"
        }
      }
    }
  },
  "href": "/v2/assets/b8____/attributes/column_info?catalog_id=e1____"
}

If you want to associate additional terms or data class to a column, or add terms or data class to a column which does not have terms or data class, or remove existing terms or data class from a column, then use the Update Asset Attribute API. In the following example, we will replace terms assigned to the column BUSINESS_NAME and add terms to a column which does not have any terms yet.

PATCH {service_URL}/v2/assets/{asset_id}/attributes/column_info?catalog_id={catalog_id}

Body:

[
    {
        "op": "replace",
        "path": "/BUSINESS_NAME/column_terms", // column to which we already have terms and data class
        "value": [
            {
                "term_id": "--your term id--",
                "term_display_name": "new_term_name"
            }
        ]
    },
    {
        "op": "add",
        "path": "/ADDRESS", // column to which no terms are data classes are assigned
        "value": {
            "column_terms": [
                {
                    "term_id": "--your term id--",
                    "term_display_name": "term_name_2"
                }
            ]
        }
    }
]

The response should look like:

{
  "BUSINESS_NAME": {
    "column_terms": [
      {
        "term_id": "--your term id--",
        "term_display_name": "new_term_name"
      }
    ],
    "data_class": {
      "selected_data_class": {
        "id": "--your data class id--",
        "name": "data_class_name"
      }
    }
  },
  "ADDRESS": {
    "column_terms": [
      {
        "term_id": "--your term id--",
        "term_display_name": "term_name_2"
      }
    ]
  }
}

Custom Attributes for Columns

Custom attributes can be added to individual columns.

Creating an Asset Type for Column Level

The first step is to create an asset type which can be assigned to a column. To search based on column level custom attributes, use global search. Users are not allowed to create assets of asset type which have properties associated with columns. This asset type can only be used to create attributes on a data_asset or a cobol_copybook. All properties are on column level.

  • Ensure is_column_custom_attribute=true. This field can be edited from false to true, but cannot be edited from true to false value
  • Ensure allow_decorators=false
  • Ensure all searchable fields are listed in the fields list. All the elements of the fields list must have a valid key and a valid search_path.
  • Populate the global_search_searchable with the keys mentioned in the elements of the fields

Given below is an example

POST {service_URL}/v2/asset_types
{
  "description": "Asset type for custom column attribute",
  "name": "column_attribute",
  "is_column_custom_attribute" : true, // is_column_custom_attribute should be true
  "allow_decorators": false, // allow_decorators shuld be false
  "attribute_only":true,
  "decorates": [
      {
        "asset_type_name": "data_asset" // only two values allowed; data_asset and/or cobol_copybook
      }
  ],
  "fields": [
  {
      "key": "name",
      "type": "string",
      "facet": false,
      "search_path": "columns.*.name"
    },
    {
      "key": "field1",
      "type": "string",
      "facet": false,
      "search_path": "columns.*.field1"
    },
    {
      "key": "field2",
      "type": "string",
      "facet": false,
      "search_path": "columns.*.field2"
    }
  ],
  "global_search_searchable": ["name", "field1", "field2"],
  "properties" : {
      "name" : {
          "type": "string"
      },
      "host" : {
          "type": "string"
      },
      "new_prop" : {
          "type": "string"
      }
  }

}

Adding the Column Level Attribute to a Column

Users can add columns with a map. The top level field name will always be columns. The value of columns fields will be a map.

Example of attribute being listed as a map is

"columns": {
        "city": {
          "host": "host1",
          "field1": "column1field1",
          "field2": "column1field2"
        }
      }

The details are listed in section Adding the Attribute as a Map.

Adding the Attribute as a Map

When column level attribute is added to the asset, then the attribute in the asset's entity will have the following structure. Please note the top level columns field. e.g.

   "column_attribute": {
      "columns": {
        "city": { // column name
          "host": "host1",
          "field1": "column1field1",
          "field2": "column1field2"
        }
      }
    }
  }

In the above example, for column name "city", the associated property values are host=host1, field1=column1field1, field2=column1field2

To add this attribute to an asset:

POST /v2/assets/{asset_id}/attributes API. Sample body will look like
{
    "name": "column_attribute",
    "entity": {
        "columns": {
            "city": {
              "host": "host1",
              "field1": "column1field1",
              "field2": "column1field2"
            }
        }
    }
}

To update this attribute use the PATCH /v2/assets/{asset_id}/attributes/{attribute_key} or the POST /v2/assets/bulk_patch API

Data Profiles

Introduction

Data profiles contains classification and information about the distribution of your data, which helps you to understand your data better and make the appropriate data shaping decisions.

Data profiles are automatically created when a data set is added to a catalog with data policy enforcement. The profile summary helps you in analyzing your data more closely and in deciding which cleansing operations on your data will provide the best results for your use-case. You can also perform CRUD operations on data profiles for data sets in catalogs or projects without data policy enforcement.

Create a data profile

You can use this API to:

  • Create a data profile
  • Create and execute a data profile

To create a data profile for a data set in a specified catalog or project and not execute it, call the following POST method:

POST /v2/data_profiles?start=false

OR

POST /v2/data_profiles

To create a data profile for a data set in a specified catalog or project and execute it, call the following POST method:

POST /v2/data_profiles?start=true

The minimal request payload required to create a data profile is as follows:

{
    "metadata": {
        "dataset_id": "{DATASET_ID}",
        "catalog_id": "{CATALOG_ID}"
    }
}

OR

{
    "metadata": {
        "dataset_id": "{DATASET_ID}",
        "project_id": "{PROJECT_ID}"
    }
}

The request payload can have an entity part which is optional:

    {
        "metadata": {
            "dataset_id": "{DATASET_ID}",
            "catalog_id": "{CATALOG_ID}"
        },
        "entity": {
            "data_profile": {
                "options": {
                    "max_row_count": {MAX_ROW_COUNT_VALUE},
                    "max_distribution_size": {MAX_SIZE_OF_DISTRIBUTIONS},
                    "max_numeric_stats_bins": {MAX_NUMBER_OF_STATIC_BINS},
                    "classification_options": {
                        "disabled": {BOOLEAN_TO_ENABLE_OR_DISABLE_CLASSIFICATION_OPTIONS},
                        "class_codes": {DATA_CLASS_CODE},
                        "items": {ITEMS}
                }
            }
        }
    }

The following parameters are required in the URI and the payload:

  1. start: Specifies whether to start the profiling service immediately after the data profile is created. The default is false.

  2. max_row_count: Specifies the maximum number of rows to perform profiling on. If no value is provided or if the value is invalid (negative), the default is to 5000 rows.

  3. row_percentage: Specifies the percentage of rows to perform profiling on. If no value is provided or if the value is invalid (<0 or >100).

  4. max_distribution_size: Specifies the maximum size of various distributions produced by the profiling process. If no value is provided, the default is 100.

  5. max_numeric_stats_bins: Specifies the maximum number of bins to use in the numerical statistics. If no bin size is provided, the default is 100 bins.

  6. classification_options: Specifies the various options available for classification.

    (i). disabled: If true, the classification options are disabled and default values are used.

    (ii). class_codes: Specifies the data class code to consider during profiling.

    (iii). items: Specifies the items.

    Note: You can get various data class codes through the data class service.

To create a data profile for a data set, the following steps must be completed:

  1. You must have a valid IAM token to make REST API calls and a project or catalog ID.

  2. You must have an IBM Cloud Object Storage bucket, which must be associated with your catalog in the project.

  3. The data set must be added to your catalog in the project.

  4. Construct a request payload to create a data profile with the values required in the payload.

  5. Send a POST request to create a data profile.

When you call the method, the payload is validated. If a required value is not specified or a value is invalid, you get a response message with an HTTP status code of 400 and information about the invalid or missing values.

The response of the method includes a location header with a value that indicates the location of the profile that was created. The response body also includes a field href which contains the location of the created profile.

The execution.status of the profile is none if the start parameter is not set or is set to false. Otherwise, it is in submitted state or any other state depending on the profiling execution status.

The following are possible response codes for this API call:

Response HTTP status Cause Possible Scenarios
201 Created A data profile was created.
400 Bad Request The request payload either had some invalid values or invalid/unwanted parameters.
401 Unauthorized Invalid IAM token was provided in the request header.
403 Forbidden User is not allowed to create a data profile.
500 Internal Server Error Some runtime error occurred.

Get a data profile

To get a data profile for a data set in a specified catalog or project, call the following GET method:

GET /v2/data_profiles/{PROFILE_ID}?catalog_id={CATALOG_ID}&dataset_id={DATASET_ID}

OR

GET /v2/data_profiles/{PROFILE_ID}?project_id={PROJECT_ID}&dataset_id={DATASET_ID}

The value of PROFILE_ID is the value of metadata.guid from the successful response payload of the create data profile call.

For other runtime errors, you might get an HTTP status code of 500 indicating that profiling didn't finished as expected.

The following are possible response codes for this API call:

Response HTTP status Cause Possible Scenarios
200 Success Data profile is created and executed.
202 Accepted Data profile is created and under execution.
401 Bad Request Invalid IAM token was provided in the request header.
403 Forbidden User is not allowed to get the data profile.
404 Not Found The data profile specified was not found.
500 Internal Server Error Some runtime error occurred.

Update a data profile

To update a data profile for a data set in a specified catalog or project, call the following PATCH method:

PATCH /v2/data_profiles/{PROFILE_ID}?catalog_id={CATALOG_ID}&dataset_id={DATASET_ID}

OR

PATCH /v2/data_profiles/{PROFILE_ID}?project_id={PROJECT_ID}&dataset_id={DATASET_ID}

The value of PROFILE_ID is the value of metadata.guid from the successful response payload of the create data profile call.

The JSON request payload must be as follows:


    [
      {
        "op": "add",
        "path": "string",
        "from": "string",
        "value": {}
      }
    ]

During update, the entire data profile is replaced, apart from any read-only or response-only attributes.

If profiling processes are running and the start parameter is set to true, then a data profile is only updated if the stop_in_progress_runs parameter is set to true.

The updates must be specified by using the JSON patch format, described in RFC 6902.

Modify asset level classification

This API is used for CRUD operations on asset level classification.

To modify the asset level classification details in the data_profile parameter for a data set in a specified catalog or project, call the following PATCH method:

PATCH /v2/data_profiles/classification?catalog_id={CATALOG_ID}&dataset_id={DATASET_ID}

OR

PATCH /v2/data_profiles/classification?project_id={PROJECT_ID}&dataset_id={DATASET_ID}

The JSON request payload must be structured in the following way:

    [
      {
        "op": "add",
        "path": "/data_classification",
        "value": [
            {
               "id":"{ASSET_LEVEL_CLASSIFICATION_ID}",
               "name":"{ASSET_LEVEL_CLASSIFICATION_NAME}"
            }
         ]
      }
    ]

The path attribute must be set to what is written in the previous JSON request payload, otherwise you will get a validation error with an HTTP status code of 400.

The values of ASSET_LEVEL_CLASSIFICATION_ID and ASSET_LEVEL_CLASSIFICATION_NAME can be: PII and PII details respectively.

The data updates must be specified by using the JSON patch format, described in RFC 6902 [https://tools.ietf.org/html/rfc6902]. For more details about JSON patch, see [http://jsonpatch.com].

A successful response has an HTTP status code of 200 and lists the asset level classifications.

The following are possible response codes for this API call:

Response HTTP status Cause Possible Scenarios
200 Success Asset Level Classification is added to the asset.
400 Bad Request The request payload either had some invalid values or invalid/unwanted parameters.
401 Unauthorized Invalid IAM token was provided in the request header.
403 Forbidden User is not allowed to add asset level classification to the asset.
500 Internal Server Error A runtime error occurred.

Delete a data profile

To delete a data profile for a data set in a specified catalog or project, call the following DELETE method:

DELETE /v2/data_profiles/{PROFILE_ID}?catalog_id={CATALOG_ID}&dataset_id={DATASET_ID}&stop_in_progress_profiling_runs=false

OR

DELETE /v2/data_profiles/{PROFILE_ID}?project_id={PROJECT_ID}&dataset_id={DATASET_ID}&stop_in_progress_profiling_runs=true

The value of PROFILE_ID is the value of metadata.guid from the successful response payload of the create data profile call.

You can't delete a profile if the profiling execution status is in running state and the query parameter stop_in_progress_profiling_runs is set to false.

A successful response has an HTTP status code of 204.

Stream Flows

Introduction

The streams flow service provides APIs to create, update, delete, list, start, and stop stream flows.

A streams flow is a continuous flow of massive volumes of moving data that real-time analytics can be applied to. A streams flow can read data from a variety of sources, process that data by using analytic operations or your custom code, and then write it to one or more targets. You can access and analyze massive amounts of changing data as it is created. Regardless of whether the data is structured or unstructured, you can leverage data at scale to drive real-time analytics for up-to-the-minute business decisions.

The sources that are supported include Kafka, Message Hub, MQTT, and Watson IoT. Targets that are supported include Db2 Warehouse on Cloud, Cloud Object Storage, and Redis. Analytic operators that are supported include Aggregation, Python Machine Learning, Code, and Geofence.

Authorization

Authorization is done via Identity Access Management (IAM) bearer token. All API calls will require this Bearer token in the header.

Create a Streams Flow

1. Streaming Analytics instance ID

The streams flow is submitted to a Streaming Analytics service for compilation and running. When creating a flow, the Streaming Analytics instance ID must be provided. The instance ID can be found in the service credentials, which can be accessed from the service dashboard.

2. The pipeline graph

The streams flow represents it's source, targets, and operations in a pipeline graph. The pipeline graph can be generated by choosing the relevant operators in the Streams Designer canvas. To retrieve a pipeline graphcreated by the Streams Designer, use:

GET /v2/streams_flows/85be3e09-1c71-45d3-8d5d-220d6a6ea850?project_id=ff1ab70b-0553-409a-93f9-ccc31471c218

This will return a streams flow containing a pipeline field in the entity. This pipeline object can be copied and submitted into another flow via:

POST /v2/streams_flows/?project_id=ff1ab70b-0553-409a-93f9-ccc31471c218

Request Payload:

{
"name": "My Streams Flow",
"description": "A Sample Streams Flow.",
"engines": {
   "streams": {
     "instance_id": "8ff81caa-1076-41ce-8de1-f4fe8d79e30e"
   }
},
"pipeline": {
     "doc_type": "pipeline",
     "version": "1.0",
     "json_schema": "http://www.ibm.com/ibm/wdp/flow-v1.0/pipeline-flow-v1-schema.json",
     "id": "",
     "app_data": {
         "ui_data": {
             "name": "mqtt 2"
          }
      },
      "primary_pipeline": "primary-pipeline",
      "pipelines": [
       {
          "id": "primary-pipeline",
          "runtime": "streams",
          "nodes": [
          {
              "id": "messagehubsample_29xse4zvabe",
              "type": "binding",
              "op": "ibm.streams.sources.messagehubsample",
              "outputs": [
                  {
                      "id": "target",
                      "schema_ref": "schema0",
                      "links": [
                      {
                        "node_id_ref": "mqtt_o6are9c4f",
                        "port_id_ref": "source"
                      }
                    ]
                  }
                ],
                "parameters": {
                  "schema_mapping": [
                    {
                      "name": "time_stamp",
                      "type": "timestamp",
                      "path": "/time_stamp"
                    },
                    {
                      "name": "customerId",
                      "type": "double",
                      "path": "/customerId"
                    },
                    {
                      "name": "latitude",
                      "type": "double",
                      "path": "/latitude"
                    },
                    {
                      "name": "longitude",
                      "type": "double",
                      "path": "/longitude"
                    }
                  ]
                },
                "connection": {
                  "ref": "EXAMPLE_MESSAGE_HUB_CONNECTION",
                  "project_ref": "EXAMPLE",
                  "properties": {
                    "asset": {
                      "path": "/geofenceSampleData",
                      "type": "topic",
                      "name": "Geospatial data",
                      "id": "geofenceSampleData"
                    }
                  }
                },
                "app_data": {
                  "ui_data": {
                    "label": "Sample Data",
                    "x_pos": 60,
                    "y_pos": 90
                  }
                }
              },
              {
                "id": "mqtt_o6are9c4f",
                "type": "binding",
                "op": "ibm.streams.targets.mqtt",
                "parameters": {},
                "connection": {
                  "ref": "cd5388c3-b203-4c77-803b-bc902d864a30",
                  "project_ref": "a912d673-54d3-4e5c-800f-5088554d3aa8",
                  "properties": {
                    "asset": "t"
                 }
               },
               "app_data": {
                 "ui_data": {
                   "label": "MQTT",
                   "x_pos": 420,
                   "y_pos": 90
                 }
               }
             },
             {
               "id": "mqtt_y84zc3vfche",
               "type": "binding",
               "op": "ibm.streams.sources.mqtt",
               "outputs": [
                 {
                   "id": "target",
                   "schema_ref": "schema1",
                   "links": [
                     {
                        "node_id_ref": "debug_9avg3zdig25",
                        "port_id_ref": "source"
                      }
                    ]
                  }
                ],
                "parameters": {
                "schema_mapping": [
                   {
                     "name": "time_stamp",
                     "type": "timestamp",
                     "path": "/time_stamp"
                   },
                   {
                     "name": "customerId",
                     "type": "double",
                     "path": "/customerId"
                   },
                   {
                     "name": "latitude",
                     "type": "double",
                     "path": "/latitude"
                   },
                   {
                     "name": "longitude",
                     "type": "double",
                     "path": "/longitude"
                   }
                 ]
               },
               "connection": {
                 "ref": "cd5388c3-b203-4c77-803b-bc902d864a30",
                 "project_ref": "a912d673-54d3-4e5c-800f-5088554d3aa8",
                 "properties": {
                   "asset": "t"
                 }
               },
               "app_data": {
                 "ui_data": {
                   "label": "MQTT",
                   "x_pos": -120,
                   "y_pos": -210
                 }
               }
             },
             {
               "id": "debug_9avg3zdig25",
               "type": "binding",
               "op": "ibm.streams.targets.debug",
               "parameters": {},
               "app_data": {
                 "ui_data": {
                   "label": "Debug",
                   "x_pos": 240,
                   "y_pos": -270
                 }
               }
             }
           ]
         }
      ],
      "schemas": [
         {
           "id": "schema0",
           "fields": [
              {
                   "name": "time_stamp",
                   "type": "timestamp"
              },
              {
                   "name": "customerId",
                   "type": "double"
              },
              {
                   "name": "latitude",
                   "type": "double"
              },
              {
                  "name": "longitude",
                  "type": "double"
              }
          ]
        },
        {
          "id": "schema1",
          "fields": [
            {
              "name": "time_stamp",
              "type": "timestamp"
            },
            {
              "name": "customerId",
              "type": "double"
            },
            {
              "name": "latitude",
              "type": "double"
            },
            {
              "name": "longitude",
              "type": "double"
            }
          ]
        }
     ]
  }
}

Streams Flow Lifecycle

After a Streams Flow is created it will be in the STOPPED state unless it's been submitted as a job to be started. When starting a job, a Cloudant asset is created to track the status of the streams flow run. The start job operation can take up to minute to complete, during which time the streams flow will be in the STARTING state. Once the submission and compilation has completed, the streams flow will be in the RUNNING state.

To change the run state use the POST api:

POST /v2/streams_flows/85be3e09-1c71-45d3-8d5d-220d6a6ea850/runs?project_id=ff1ab70b-0553-409a-93f9-ccc31471c218

Request Payload:

{
   "state": "started",
   "allow_streams_start": true
}
  • For starting the streams flow run, use { state: started }. To stop the flows run, use { state: stopped }.

  • Specify "allow_streams_start" to start the Streaming Analytics service in the event that it is stopped.

The start job operation triggers a long running process on the Streaming Analytics service instance. During this time the progress/status of this job can be viewed:

GET https://api.dataplatform.cloud.ibm.com/v2/streams_flows/85be3e09-1c71-45d3-8d5d-220d6a6ea850/runs?project_id=ff1ab70b-0553-409a-93f9-ccc31471c218

A version of the pipeline that has been deployed is saved to represent the Runtime Pipeline. The streams flow can still be edited in the Streams Designer, and it will not have an impact on the Runtime Pipeline that has been deployed, until the user stops the running flow, and starts it again..

Metadata Discovery

Metadata Discovery can be used to automatically discover assets from a connection. The connection used for a discovery run can be associated with a catalog or project, but new data assets will be created in a project. Each asset that is discovered from a connection is added as a data asset to the project.

For a list of the supported types of connections against which the Metadata Discovery service can be invoked, see Discover data assets from a connection.

In general, the discovery process takes a significant amount of time. Therefore, the API to create a discovery run actually only queues a discovery run and then returns immediately (typically before the discovery run is even started). Subsequent calls to different APIs can then be made to monitor the progress of the discovery run (see Monitoring a metadata discovery run and Retrieving discovered assets).

The following example shows a request to create a metadata discovery run. It assumes that a project, a connection, and a catalog have already been created, and that their IDs are known by the caller. If a catalog is provided (as in the following example), the connection is associated with the catalog. If no catalog is provided, the connection is associated with the project.

Note: In the following examples, the discovered assets are found in a connection to a DB2 database, but the details of the database are hidden within the connection. So, the caller of the data_discoveries API specifies the database to discover indirectly via the connection.

API request - Create discovery run:

POST /v2/data_discoveries

Request payload:

{
    "entity": {
        "catalog_id": "816882fa-dcda-46e1-8c6b-fa23c3cbad14",
        "connection_id": "f638398f-fcc7-4856-b78d-5c8efa5b9282",
        "project_id": "960f6aff-295f-4de1-a9d7-f3b6805b3590"
    }
}

In the example request payload, you can see the ID of the connection whose assets will be discovered, and the ID of the project into which the newly created assets will be added.

Response payload:

{
    "metadata": {
        "id": "dcb8a234ad5e438d904a4cdbe0ba70e2",
        "invoked_by": "IBMid-50S...",
        "bss_account_id": "e348e...",
        "created_at": "2018-06-22T15:42:02.843Z"
    },
    "entity": {
        "status": "CREATED",
        "connection_id": "f638398f-fcc7-4856-b78d-5c8efa5b9282",
        "catalog_id": "816882fa-dcda-46e1-8c6b-fa23c3cbad14",
        "project_id": "960f6aff-295f-4de1-a9d7-f3b6805b3590"
    }
}

In the response, you can see that the discovery run was created with the ID dcb8a234ad5e438d904a4cdbe0ba70e2, which you'll need to use if you want to get the status of the discovery run that you just created. Also shown in the response is:

- `invoked_by`: the IAM ID of the account that kicked off the discovery process
- `bss_account_id`: the BSS account ID of the catalog
- `created_at`: the creation date and time of the discovery job

To get the status of a discovery run use the GET data_discoveries API. You can request the status of a discovery run as often as desired. In the following sections, you will be shown a few such calls to illustrate the progression of a discovery run.

API Request - Get status of discovery run:

GET /v2/data_discoveries/dcb8a234ad5e438d904a4cdbe0ba70e2

There is no request payload for the previous GET data_discoveries request. Instead, the ID of the discovery run whose status is being requested is supplied as a path parameter. In the previous URL, use the discovery run ID that was returned by the earlier call to POST data_discoveries. If you no longer have access to the ID of the discovery run for which you want to see status information, see the section Call Discovery API to get the ID of a metadata discovery run.

The following examples show various responses to the same GET data_discoveries monitor request previously shown, made at various points during the discovery run.

Response to status request immediately after creation of a discovery run:

{
    "metadata": {
        "id": "dcb8a234ad5e438d904a4cdbe0ba70e2",
        "invoked_by": "IBMid-50S...",
        "bss_account_id": "e348e...",
        "created_at": "2018-06-22T15:42:02.843Z"
    },
    "entity": {
        "status": "CREATED",
        "connection_id": "f638398f-fcc7-4856-b78d-5c8efa5b9282",
        "catalog_id": "816882fa-dcda-46e1-8c6b-fa23c3cbad14",
        "project_id": "960f6aff-295f-4de1-a9d7-f3b6805b3590"
    }
}

In the previous response, you can see that the status of the discovery run has not yet changed - it is still CREATED. This is because the request to discover assets is put into a queue and will be initiated in the order in which it was received.

Response to status request immediately after a discovery run has actually started:

{
    "metadata": {
        "id": "dcb8a234ad5e438d904a4cdbe0ba70e2",
        "invoked_by": "IBMid-50S...",
        "bss_account_id": "e348e...",
        "created_at": "2018-06-22T15:42:02.843Z",
        "started_at": "2018-06-22T15:42:06.167Z",
        "ref_project_connection_id": "2526ed95-dedd-4904-bb31-c06d9cb1e105"
    },
    "entity": {
        "statistics": {

        },
        "status": "RUNNING",
        "connection_id": "f638398f-fcc7-4856-b78d-5c8efa5b9282",
        "catalog_id": "816882fa-dcda-46e1-8c6b-fa23c3cbad14",
        "project_id": "960f6aff-295f-4de1-a9d7-f3b6805b3590"
    }
}

Now notice that the status has changed to RUNNING which indicates that the discovery process has actually started. Also, the metadata field has some additional fields added to it:

  • started_at: the date and time at which the discovery run started
  • ref_project_connection_id: a reference to a cloned project connection ID, internally set when a discovery is created for a connection in a catalog

In addition, notice that a new statistics object was introduced into the response body. In the response, that object is empty because the discovery run, which has just started hasn't yet discovered any assets.

Response to status request after some assets were discovered:

{
    "metadata": {
        "id": "dcb8a234ad5e438d904a4cdbe0ba70e2",
        "invoked_by": "IBMid-50S...",
        "bss_account_id": "e348e...",
        "created_at": "2018-06-22T15:42:02.843Z",
        "started_at": "2018-06-22T15:42:06.167Z",
        "discovered_at": "2018-06-22T15:42:27.970Z",
        "ref_project_connection_id": "2526ed95-dedd-4904-bb31-c06d9cb1e105"
    },
    "entity": {
        "statistics": {
            "discovered": 128,
            "submit_succ": 128
        },
        "status": "RUNNING",
        "connection_id": "f638398f-fcc7-4856-b78d-5c8efa5b9282",
        "catalog_id": "816882fa-dcda-46e1-8c6b-fa23c3cbad14",
        "project_id": "960f6aff-295f-4de1-a9d7-f3b6805b3590"
    }
}

Notice the statistics object now contains two fields:

  • discovered: the number of assets discovered so far during the discovery run
  • submit_succ: the number of assets successfully submitted for creation so far during the discovery run. A discovered asset goes through an internal pipeline with various stages from being discovered at the connection to being created in the project. Here, submitted means the asset was submitted to the internal pipeline.

Refer to Watson Data API schema for the complete list of the possible fields that might show up in the statistics object.

Because the discovery run isn't yet finished, the status in the previous response is still RUNNING.

Response to status request after the discovery run was completed:

{
    "metadata": {
        "id": "dcb8a234ad5e438d904a4cdbe0ba70e2",
        "invoked_by": "IBMid-50S...",
        "bss_account_id": "e348e...",
        "created_at": "2018-06-22T15:42:02.843Z",
        "started_at": "2018-06-22T15:42:06.167Z",
        "discovered_at": "2018-06-22T15:42:27.970Z",
        "processed_at": "2018-06-22T15:42:45.877Z",
        "finished_at": "2018-06-22T15:43:14.969Z",
        "ref_project_connection_id": "2526ed95-dedd-4904-bb31-c06d9cb1e105"
    },
    "entity": {
        "statistics": {
            "discovered": 179,
            "submit_succ": 179,
            "create_succ": 179
        },
        "status": "COMPLETED",
        "connection_id": "f638398f-fcc7-4856-b78d-5c8efa5b9282",
        "catalog_id": "816882fa-dcda-46e1-8c6b-fa23c3cbad14",
        "project_id": "960f6aff-295f-4de1-a9d7-f3b6805b3590"
    }
}

Notice the status field has changed to COMPLETED to indicate that the discovery run is finished. Other response fields to note:

  • finished_at: the date and time at which the discovery run finished
  • discovered: indicates that 179 assets were discovered at the connection
  • submit_succ: indicates that 179 of the discovered assets were successfully submitted to the discovery run's internal asset processing pipeline.
  • create_succ: indicates that 179 assets were successfully created in the project

At any time during or after a discovery run, you call Asset APIs to get the list of metadata for the currently discovered assets in the project. To retrieve metadata for any list of assets you can make the following call:

POST /v2/asset_types/{type_name}/search?project_id={project_id}

More specifically, to find the metadata for discovered assets the value to use for the {type_name} path parameter is discovered_asset. So, for the discovery run we created, the call to retrieve metadata for the discovered assets would look like this:

API Request - Get metadata for discovered assets:

POST /v2/asset_types/discovered_asset/search?project_id=960f6aff-295f-4de1-a9d7-f3b6805b3590

where the project_id query parameter value 960f6aff-295f-4de1-a9d7-f3b6805b3590 is the same value that was specified in the body of the POST request that was used to create the discovery run.

In addition, the ID of the connection that the discovery was run against has to be specified in the body of the POST, like this:

{
    "query": "discovered_asset.connection_id:\"f638398f-fcc7-4856-b78d-5c8efa5b9282\""
}

Here is part of the response body for the previous query:

{
    "total_rows": 179,
    "results": [
        {
            "metadata": {
                "name": "EMP_SURVEY_TOPIC_DIM",
                "description": "Warehouse table EMP_SURVEY_TOPIC_DIM describes employee survey questions for employees of the Great Outdoors Company, in supported languages.",
                "tags": [
                    "discovered",
                    "GOSALESDW"
                ],
                "asset_type": "data_asset",
                "origin_country": "ca",
                "rating": 0.0,
                "total_ratings": 0,
                "sandbox_id": "960f6aff-295f-4de1-a9d7-f3b6805b3590",
                "catalog_id": "a682c698-6019-437d-a0b9-224aa0a4dbc9",
                "created": 0,
                "created_at": "2018-06-22T15:41:47Z",
                "owner": "abc123@us.ibm.com",
                "owner_id": "IBMid-50S...",
                "size": 0,
                "version": 0.0,
                "usage": {
                    "last_update_time": 1.52968210955E12,
                    "last_updater_id": "iam-ServiceId-87f49...",
                    "access_count": 0.0,
                    "last_accessor_id": "iam-ServiceId-87f49...",
                    "last_access_time": 1.52968210955E12,
                    "last_updater": "ServiceId-87f49...",
                    "last_accessor": "ServiceId-87f49..."
                },
                "asset_state": "available",
                "asset_attributes": [
                    "data_asset",
                    "discovered_asset"
                ],
                "rov": {
                    "mode": 0
                },
                "asset_category": "USER",
                "asset_id": "e35cfd4d-590f-40a5-b75c-ec07c0a4bcbc"
            }
        },
        ...
    ]
}

Notice that the total_rows value 179 matches the create_succ value that was returned in the result of the API call to get the final status of the completed discovery run.

The results array in the previous response body has an entry containing metadata for each asset that was discovered by the discovery run. In the previous code snippet, for brevity, only 2 of the 179 entries are shown. The metadata created by the discovery run includes:

  • name: in this case, the name of the DB2 table that was discovered
  • description: a description of the table as provided by DB2
  • tags: these are useful for searching. The discovered tag is one of the tags set for a discovered asset.
  • asset_type: the type of the asset that was created in the project

Each entry in the results array also contains an href field that points to the actual asset that was created by the discovery run.

There might be times in which you no longer have the ID of the metadata discovery run whose status you're interested in, and so might not be able to call the following API for the specific discovery run you're interested in (which requires that ID):

GET /v2/data_discoveries/dcb8a234ad5e438d904a4cdbe0ba70e2

The following example illustrates how to get the IDs of metadata discovery runs for the connection and catalog that were used in the previous call to create a discovery run:

API Request - Get information for discovery runs:

GET /v2/data_discoveries?offset=0&limit=1000&connection_id=f638398f-fcc7-4856-b78d-5c8efa5b9282&catalog_id=816882fa-dcda-46e1-8c6b-fa23c3cbad14

Note that the values of the query parameters connection_id and catalog_id correspond to the values for the identically named fields in the payload for the previous request to create a discovery run.

Notice also that you can use the offset and limit query parameters to focus on a particular subset of the full list of related discoveries.

The response payload will look like this:

{
    "resources": [
        {
            "metadata": {
                "id": "dcb8a234ad5e438d904a4cdbe0ba70e2",
                "invoked_by": "IBMid-50S...",
                "bss_account_id": "e348e...",
                "created_at": "2018-06-22T15:42:02.843Z",
                "started_at": "2018-06-22T15:42:06.167Z",
                "discovered_at": "2018-06-22T15:42:27.970Z",
                "processed_at": "2018-06-22T15:42:45.877Z",
                "finished_at": "2018-06-22T15:43:14.969Z",
                "ref_project_connection_id": "2526ed95-dedd-4904-bb31-c06d9cb1e105"
            },
            "entity": {
                "statistics": {
                    "discovered": 179,
                    "submit_succ": 179,
                    "create_succ": 179
                },
                "status": "COMPLETED",
                "connection_id": "f638398f-fcc7-4856-b78d-5c8efa5b9282",
                "catalog_id": "816882fa-dcda-46e1-8c6b-fa23c3cbad14",
                "project_id": "960f6aff-295f-4de1-a9d7-f3b6805b3590"
            }
        }
    ],
    "first": {
        "href": "http://localhost:9080/v2/data_discoveries?offset=0&limit=1000&connection_id=f638398f-fcc7-4856-b78d-5c8efa5b9282&catalog_id=816882fa-dcda-46e1-8c6b-fa23c3cbad14"
    },
    "next": {
        "href": "http://localhost:9080/v2/data_discoveries?offset=1000&limit=1000&connection_id=f638398f-fcc7-4856-b78d-5c8efa5b9282&catalog_id=816882fa-dcda-46e1-8c6b-fa23c3cbad14"
    },
    "limit": 1000,
    "offset": 0
}

Anything that is found because it matches the query criteria is returned in the resources array. In the previous response, there is only one entry and it corresponds to the discovery run which was created in the previous Create a metadata discovery run section.

There might be times when you want to stop a discovery run before it's completed. To do so, use the PATCH data_discoveries API. The following illustrates how to abort a discovery run (a different discovery run than the one used in the previous examples):

API Request - Abort a discovery run:

PATCH /v2/data_discoveries/09cbff0981f84c51be4b4d93becc17b0

The previous PATCH request requires the following request body to set the status of the discovery run to "ABORTED":

{
    "op": "replace",
    "path": "/entity/status",
    "value": "ABORTED"
}

The response payload will look like this:

{
    "metadata": {
        "id": "09cbff0981f84c51be4b4d93becc17b0",
        "invoked_by": "IBMid-50S...",
        "bss_account_id": "e348e...",
        "created_at": "2018-06-22T15:45:54.638Z",
        "started_at": "2018-06-22T15:45:56.202Z",
        "finished_at": "2018-06-22T15:46:02.274Z",
        "ref_project_connection_id": "2526ed95-dedd-4904-bb31-c06d9cb1e105"
    },
    "entity": {
        "statistics": {

        },
        "status": "ABORTED",
        "connection_id": "f638398f-fcc7-4856-b78d-5c8efa5b9282",
        "catalog_id": "816882fa-dcda-46e1-8c6b-fa23c3cbad14",
        "project_id": "960f6aff-295f-4de1-a9d7-f3b6805b3590"
    }
}

Notice in the previous response payload that the status has now been set to ABORTED.

Any assets discovered before the run was aborted will remain discovered. In the example, the abort occurred so quickly after the creation of the discovery run that no assets had been discovered, hence the statistics object is empty.

Lineage

Introduction

The lineage of an asset includes information about all events, and other assets, that have led to its current state and its further usage. Asset and Event are the two main entities that are part of the lineage data model. An asset can either be generated from or used in subsequent events. An event can be any of:

  • asset-generation-events
  • asset-modification-events
  • asset-usage-events.

Use the Lineage API to publish events on an asset or to query the lineage of an asset.

Publish a lineage event

The following example shows a sample lineage event that can be posted when a data set is published from a project to a catalog:

Request URL
POST /v2/lineage_events
Request Body
{
  "message_version": "v1",

  "user_id": "IAM-Id_of_User",
  "account_id": "e86f2b06b0b267d559e7c387ceefb089",

  "event_details": {
    "event_id": "sample-event1",
    "event_type": "DATASET_PUBLISHED",
    "event_category": [
      "additions"
    ],
    "event_time": "2018-04-03T14:01:08.603Z",
    "event_source_service": "Watson Knowledge Catalog"
  },

  "generates_assets": [
    {
      "id": "9f9c961a-78d1-4c06-a601-4b5890fdataset03",
      "asset_type": "DataSet",
      "relation": {
        "name": "Created"
      },

      "properties": {
        "dataset": {
          "type": "dataset",
          "value": {
            "id": "9f9c961a-78d1-4c06-a601-4b5890fdataset03",
            "name": "Asset Name in Catalog XX",
            "catalog_id": "9f9c961a-78d1-4c06-a601-4b589catalog"
          }
        },
        "catalog": {
          "type": "catalog",
          "value": {
            "id": "9f9c961a-78d1-4c06-a601-4b589catalog"
          }
        }
      }
    }
  ],
  "uses_assets": [
    {
      "id": "9f9c961a-78d1-4c06-a601-4b5890fdataset02",
      "asset_type": "DataSet",
      "relation": {
        "name": "Used"
      },

      "properties": {
        "dataset": {
          "type": "dataset",
          "value": {
            "id": "9f9c961a-78d1-4c06-a601-4b5890fdataset02",
            "name": "2017_sales_data",
            "project_id": "9f9c961a-78d1-4c06-a601-4b589project"
          }
        },
        "project": {
          "type": "project",
          "value": {
            "id": "9f9c961a-78d1-4c06-a601-4b589project"
          }
        }
      }
    }
  ]
}

Response Body

{
  "metadata": {
    "id": "01014d1f-31cf-4956-bd41-7a77ba14004c",
    "source_event_id": "sample-event1"
  }
}

The id generated in the response can be used to query the details of the published event with the following request:

Request URL
GET v2/lineage_events/01014d1f-31cf-4956-bd41-7a77ba14004c

For more details on each field in the lineage event JSON payload, refer to the Lineage Events section of API documentation.

Query lineage of an asset

The lineage of an asset involved in the sample event can be queried using the following request:

Request URL
GET v2/asset_lineages/9f9c961a-78d1-4c06-a601-4b5890fdataset03

Response Body

{
  "resources": [
    {
      "metadata": {
        "id": "01014d1f-31cf-4956-bd41-7a77ba14004c",
        "source_event_id": "sample-event1",
        "created_at": "2018-04-03T14:01:08.603Z",
        "created_by": "IAM-Id_of_User"
      },
      "entity": {
        "type": "DATASET_PUBLISHED",
        "generates_assets": [
          {
            "id": "9f9c961a-78d1-4c06-a601-4b5890fdataset03",
            "type": "DataSet",
            "relation": {
              "name": "Created"
            },
            "properties": {
              "catalog": {
                "type": "catalog",
                "value": {
                  "id": "9f9c961a-78d1-4c06-a601-4b589catalog"
                }
              },
              "dataset": {
                "type": "dataset",
                "value": {
                  "id": "9f9c961a-78d1-4c06-a601-4b5890fdataset03",
                  "name": "Asset Name in Catalog XX",
                  "catalog_id": "9f9c961a-78d1-4c06-a601-4b589catalog"
                }
              }
            }
          }
        ],
        "uses_assets": [
          {
            "id": "9f9c961a-78d1-4c06-a601-4b5890fdataset02",
            "type": "DataSet",
            "relation": {
              "name": "Used"
            },
            "properties": {
              "dataset": {
                "type": "dataset",
                "value": {
                  "id": "9f9c961a-78d1-4c06-a601-4b5890fdataset02",
                  "name": "2017_sales_data",
                  "project_id": "9f9c961a-78d1-4c06-a601-4b589project"
                }
              },
              "project": {
                "type": "project",
                "value": {
                  "id": "9f9c961a-78d1-4c06-a601-4b589project"
                }
              }
            }
          }
        ],
        "properties": {
          "event_time": "2018-04-03T14:01:08.603Z",
          "event_category": [
            "additions"
          ],
          "event_source_service": "Watson Knowledge Catalog"
        }
      }
    }
  ],
  "limit": 50,
  "offset": 0,
  "first": {
    "href": "https://api.dataplatform.cloud.ibm.com/v2/asset_lineages/9f9c961a-78d1-4c06-a601-4b5890fdataset03?offset=0&_=1528182675331"
  }
}

Searching

The Global Search API comes in two flavours: Simple and Advanced.

Simple Query

The simple query can be invoked like this:

GET /v3/search?query='fred flintstone'&limit=100

With the simple query you can peform simple textual searches using the Lucene syntax. The above query will return items containing fred, flintstone, or both.

Advanced Query

You can use the Global Search api to issue queries using the full capabilities of the Elasticsearch Query Language to search for Catalog assets and Governance artifacts. For details on the structure of an item indexed in global search see below. The advanced query can look something like this:

POST /v3/search -d '
{
  "_source":["provider_type_id", "artifact_id", "metadata.name"],
  "query": {
    "query_string" : { "query" : "flintstone" }
  }
}'

The above query returns any items containg the string "flintstone".

Searching with authorization cache

Global search searches across the Cloud Pak for Data platform and restricts search results to content that a user is authorized to view. For faster search results, you can use cached authorization information by setting the auth_cache parameter to true. The auth_cache parameter is set to false by default to use the most current authorization information.

A simple query using cached authorization information:

GET /v3/search?query='fred flintstone'&limit=100&auth_cache=true

An advanced query using cached authorization information:

POST /v3/search?auth_cache=true -d '
{
  "_source":["provider_type_id", "artifact_id", "metadata.name"],
  "query": {
    "query_string" : { "query" : "flintstone" }
  }
}'

Searching with limited authorization scope

Global Search searches across the Cloud Pak for Data platform. For a faster search, you can limit your search scope to certain platform components using the auth_scope parameter. For example, to limit the scope of your search to assets within catalogs, you can use auth_scope=catalog, or to limit your search to assets within projects, you can use auth_scope=project. Valid values for the auth_scope parameter are catalog, project, space, category, ibm_watsonx_governance_catalog and all (default).

A simple query limiting the scope of the search to catalog only:

GET /v3/search?query='fred flintstone'&limit=100&auth_scope=catalog

An advanced query limiting the scope of the search to catalogs only:

POST /v3/search?auth_scope=catalog -d '
{
  "_source":["provider_type_id", "artifact_id", "metadata.name"],
  "query": {
    "query_string" : { "query" : "flintstone" }
  }
}'


### Searching for terms in specific fields
The above query searched for the word `flintstone` anywhere in an indexed artifact.  You can specify which fields to search in, instead of searching throughout the document using the following example:

```json
{
    "_source":["provider_type_id", "artifact_id", "metadata.name"],
    "query": {
    "match" : { "metadata.name" : "flintstone"  }
    }
}

In the above example, the query is searching for the term flintstone but only in the metadata.name field.

Use key-value pairs to restrict search within specific properties such as the name, description, tags, column names, terms, custom properties and more

  • key:value : This matches value in the key property.
  • key:"value here" : This matches value here in the key property. Quoted value is treated as a whole phrase.
  • key1:value1 key2:value2 key3:value3 : Multiple key value pairs implies an AND between all pairs. The above matches (value1 in the key1 property) AND (value2 in the key2 property) AND (value3 in the key3 property).
  • text before key1:value1 in-between key2:value2 key3:value3 after: Key-value pairs mixed with regular strings. The above matches (text OR before OR in-between OR after in any property) AND (value1 in the key1 property) AND (value2 in the key2 property) AND (value3 in the key3 property)

The following properties can be specified as the key.

name:           Search within the name of an asset or artifact
desc:           Search within the description of an asset or artifact
type:           Search by the type of an asset (asset_type) or artifact (artifact_type) 
owner:          Search by the user ID of the owner of an asset
term:           Search in assets and artifacts with the specified business term assigned
tag:            Search in assets and artifacts with the specified tag
category:       Search for artifacts with the specified primary category
category2:      Search for artifacts with the specified secondary category
abbr:           Search by the abbreviation of a business term
syn:            Search by the synonym of a business term
classification: Search by the classification of an asset or artifact
column:         Search with the name of a column in a data asset
columnDesc:     Search within the description of a column in a data asset
columnTerm:     Search with a business term assigned to a column in a data asset
columnTag:      Search with a tag on a column in a data asset
columnDataclass:Search with a data class of a column in a data asset
columnClassification: Search with a classification on a column in a data asset
connection:     Search with a connection path of an asset
schema:         Search for data assets with the specified schema name
table:          Search for data assets with the specified table name
resourceKey:    Search with a resource key of an asset
steward:        Search by the user ID of the steward of an artifact

Global Search searchable custom attribute names can also be used as a key to restrict search to the specified custom attribute.

Restrictions for keys:

For key-value search by type:, the value must be an asset_type such as data_asset (as referenced by GET /v2/asset_types) or artifact_type such as data_class (as referenced by GET /v3/governance_artifact_types). The value is case-sensitive.

For key-value search by owner: or steward:, the value must be the user ID and not the user name or display name. The value is case-sensitive.

Sample query to restrict search to few properties

{
    "query":{
        "bool":{
            "must":[
                {
                    "gs_user_query":{
                        "search_string":" name:job tag:Toronto",   
                        "nlq_analyzer_enabled": true}
                }    
            ]
        }
    }
}

In this sample query, we want to query on any asset or artifact having job in the name property AND Toronto in the tags property.

Sample query to restrict search to a custom attribute

{
    "query":{
        "bool":{
	    “must”:[
               "nested": {
                  "path": "custom_attributes",
                  "query": {
                      "gs_user_query":{
                        “search_string” : "book.author.last_name:Smith”,
                        "nlq_analyzer_enabled": true,
                        "nested": true
                       }
                   }
              }
           ]
      }
}

In this sample query, we want to query on assets of type book, having a Global Search searchable ("global_search_searchable") field called author.last_name with a value of Smith.

Sorting your queries

By default, Global Search will sort the search results based on their search score. The more relevant an item is to your search terms, the higher its score. You can override that by sorting your search results based on fields in the indexed item.

Sample Query with Sort

{
    "_source":["provider_type_id", "artifact_id", "metadata.name"],
    "query": {
    "query_string" : {
      "query" : "flintstone"
    }
    },
    "sort": [
      {"metadata.modified_on": {"order": "desc","unmapped_type": "date"}}
   ]

}

The above query will sort the search results based on the date the item was modified.

Getting Counts of Things

In addition to querying, you can use the Query Language to get counts of terms that occur in indexed items. For example you might want the top ten words that people add to the tags field of their assets or artifacts.

Sample Query with Aggregation

Here is a sample query of a search for the word flintstone with an aggregation (a count) of the words that people put in their tags fields and their terms fields. See the below for the fields that exist documents indexed in Global Search.

{
    "query": {
    "query_string" : {
      "query" : "flintstone"
    }
    },
    "aggregations" : {
    "num_tags" : {"terms" : { "field" : "metadata.tags.keyword" }},
    "num_terms" : {"terms" : { "field" : "metadata.terms.keyword" }}    
    }
}

Nested Queries and Custom Attributes

You can add any number of custom attributes to an item you index with Global Search, and each custom attribute consists of combinations of a name field, and a value field.

      "custom_attributes": [
        {
          "last_updated_at": 0,
          "attribute_name": "string",
          "attribute_value": "string"
        }
      ]

Because custom attributes normally consist of two fields acting as one, they are nested objects and you must use nested queries to query on those nested objects.

The custom_attributes fields will be included in the response for any result which has custom_attributes. Nested queries are only required to query properties of the custom_attributes, such as custom_attributes.attribute_name or custom_attributes.attribute_value.

Sample Nested Query

In this sample query, we want to query on any asset having a custom attribute named city having a value of ottawa, and a second custom attribute named colour having a value red. In this example, the city attribute is treated as a text field, while the colour attribute will simulate an enumerated list of colours having exact values (i.e. red, blue, green, etc).

{
    "_source":["metadata.name", "custom_attributes"],
    "query": {
    "bool": {
      "must": [
        {
          "nested": {
            "path": "custom_attributes",
            "query": {
              "bool": {
                "must": [
                  {"term": {"custom_attributes.attribute_name": "city"}},
                  {"match": {"custom_attributes.attribute_value": "Ottawa"}}
                ]
              }
            }
          }
        },
        {
          "nested": {
            "path": "custom_attributes",
            "query": {
              "bool": {
                "must": [
                  {"term": {"custom_attributes.attribute_name": "colour"}},
                  {"term": {"custom_attributes.attribute_value.keyword": "red"}}
                ]
              }
            }
          }
        }
      ]
    }
    },
    "aggs": {
    "custom_attr_count": {
      "nested": {
        "path": "custom_attributes"
      },
      "aggs": {
        "city_count": {
          "filter": {
            "term": {"custom_attributes.attribute_name": "city"}
          },
          "aggs": {
            "city_count": {
              "terms": {
                "field": "custom_attributes.attribute_value.keyword",
                "size": 20
              }
            }
          }
        }
      }
    }
    }
}

In the query body illustrated above, there's a query portion, and an aggregations (aggs) portion. There can be any number of custom attributes. Because we only want counts of city we must include a filter in the aggregation so that only attributes whose name is city are counted. Notice that the count is returned for custom_attribute.attribute_value.keyword, not custom_attribute.attribute_value. This is important to note. You cannot sort or aggregate on text fields. You can only do so on keyword fields. Every text field in global search has a corresponding keyword field with a .keyword extension. Use the .keyword field for things you want to count or sort on. Finally, the size parameter restricts the number of counts to return to the top 20.

Caution The key-value search is not supported inside a nested clause.

General Purpose Search Function

Global Search provides a general purpose search function that is tailored to the requirements of CloudPak For Data users. You can invoke it using Global Search's Advanced API (see the Methods section below). It is this function that CloudPak for Data uses when a user enters a search term at the top search bar of the CloudPak for Data user interface. You can invoke it anywhere you would normally invoke a normal ElasticSearch search function. For example it can be the main function of your query:

{
    "query":{
        "gs_user_query":{
            "search_string":"The quick red fox jumped over the lazy brown dog"
         }
     }
}

The search_string field is required and specifies the search query string.

The following optional parameters can be specified as part of the gs_user_query:

  • search_fields - List of fields that the search will be restricted to. If not specified, the search will run across all fields in the configuration.
  • nlq_analyzer_enabled - Specify true to enable the natural language analyzer. The default value is false.
  • semantic_expansion_enabled - Specify true to enable semantic query expansion. The default value is false.
  • nested - Specify true to optimize nested queries. The default value is false.
{
    "query":{
        "gs_user_query":{
            "search_string": "The quick red fox jumped over the lazy brown dog",
            "search_fields": ["metadata.name", "metadata.description"],
            "nlq_analyzer_enabled": true,
            "semantic_expansion_enabled": true,
            "nested": false
         }
     }
}

This search function will find:

  1. a single phrase
  2. multiple individual words
  3. partial words (within words or at the beginning of words)
  4. the first letter of a word

If no search fields are specified, the function will search the entire document, including the name fields, the description field, tags, synonyms, custom attribute values, column names, and column descriptions, etc. It will give the highest priority to the name field of the document.

You can embed gs_user_query within a compound query:

{
    "query":{
        "bool":{
            "must":[
                {"gs_user_query":{"search_string": "the quick red fox jumped over the lazy brown dog"}}
            ],
            "filter":[
                {"term":{"provider_type_id":"cams"}}
            ]
        }
    },
    "sort": [
          {"metadata.modified_on": {"order": "desc","unmapped_type": "date"}}
    ]
}

You can include gs_user_query with complex queries that include aggregations along with sorts:

{
    "query": {
    "gs_user_query" : {
      "search_string": "fred flintstone"
    }
    },
   "sort" : [
      {"metadata.modified_on": {"order": "desc", "unmapped_type": "date"}}
   ],
    "aggregations": {
    "first_letter": {
      "terms": {
        "script": "doc['metadata.name.keyword'].getValue().substring(0,1)",
        "order": {
          "_key": "asc"
        }
      },
      "aggs": {
        "first_letter_group": {
          "terms": {
            "field": "metadata.name.keyword",
            "order": {
              "_key": "asc"
            }
          }
        }
      }
    }
    }   
}

You can use gs_user_query in a nested query to search for custom attributes:

{
    "query": {
    "bool": {
      "should": [
        {
          "gs_user_query": {
            "search_string": "quick red fox",
            "nlq_analyzer_enabled": true
          }
        },
        {
          "nested": {
            "path": "custom_attributes",
            "query": {
              "gs_user_query": {
                "search_string": "lazy brown dog",
                "nlq_analyzer_enabled": true,
                "nested": true
              }
            }
          }
        }
      ]
   }
}

Searching for a quoted phrase

Wrap the phrase in quotes within your query as follows:

{
    "query":{
        "gs_user_query":{
            "search_string":"\"The quick red fox jumped over the lazy brown dog\""
         }
     }
}

The above query will search for exactly the phrase "The quick red fox jumped over the lazy brown dog".

A quoted phrase can also be included in a longer string:

{
    "query":{
        "gs_user_query":{
            "search_string":"The \"quick red fox\" jumped over the \"lazy brown dog\"",
            "nlq_analyzer_enabled": true
         }
     }
}

The above query will search for the phrases quick red fox and lazy brown dog, and will not return results containing only quick, red, fox, lazy, brown, or dog. The query will, however, return results matching the individual words jumped or over.

Searching for words starting with ...

To search for words starting with a letter or letters, enter only the first 1 to 3 letters of the word.

{
    "query":{
        "gs_user_query":{
            "search_string":"in"
         }
     }
}

The above query will return documents with words like infinite and invitation, but not words like definitive.

Searching for parts of words

If your search terms include more than three letters, then Global Search will search for any partial word matches. For example

{
    "query":{
        "gs_user_query":{
            "search_string":"init"
         }
     }
}

The above query will find documents with words like initialize (i.e. at the beginning of the word) and trinitoluene (i.e. within the word). Partial matches will not be found on the metadata.description or entity.assets.column_description fields.

Searching with natural language

Natural language analysis can be applied to English search strings to optimize search results in the following ways:

  • Words that are not important to the search intent are removed from the search query.
  • Phrases in the search string that are common in English are automatically ranked higher than results for individual words.
{
    "query": {
        "gs_user_query": {
            "search_string": "credit card interest in United States",
            "nlq_analyzer_enabled": true
        }
    }
}

The above query will find documents with:

  • Matches for the phrases credit card interest and United States ranked highest
  • Matches for individual words credit, card, interest, United, and States ranked lower

The above query will not return documents containing only the word in.

Result scoring

Results are prioritized using a combination of field priority and type of match as follows:

Type of match:

  1. Matches for entire phrases will score highest.
  2. Exact matches of complete words will score next highest.
  3. If the search term is 3 characters or less results that contain words STARTING with that search term will score next highest.
  4. Partial matches of complete words will score next highest.
  5. Fuzzy matches (i.e. adidas vs adadas) will match, but will score lowest.

Field:

  1. Name
  2. Synonyms, Abbreviation, Terms, Tags or Classifications
  3. Description, Primary or Secondary Category
  4. Column Descriptions, Column Terms, Column Tags or Column Data Class Names

You can query on any of the fields within the document by including the field name in a flattened json structure. For example the field:

{
    "entity":{
    	"artifacts":{
	    "artifact_id":"<id>"
	}
    }
}

is queried for by using the following

entity.artifacts.artifact_id

Documents indexed in global search have the following structure:

{
    "provider_type_id": "string",
    "tenant_id": "string",
    "artifact_id": "string",
    "last_updated_at": 0,
    "metadata": {
    "name": "string",
    "description": "string",
    "artifact_type": "string",
    "tags": [
      "string"
    ],
    "modified_on": "2021-02-11T11:25:59.384Z",
    "modified_by": "string",
    "terms": [
      "string"
    ],
    "term_global_ids": [
      "string"
    ],
    "steward_ids": [
      "string"
    ],
    "steward_group_ids": [
      "string"
    ]
    "state": "string",
    "classifications": [
      "string"
    ],
    "classification_global_ids": [
      "string"
    ]
    },
    "entity": {
    "artifacts": {
      "global_id": "string",
      "version_id": "string",
      "artifact_id": "string",
      "rule_type": "string",
      "effective_start_date": "2021-02-11T11:25:59.384Z",
      "effective_end_date": "2021-02-11T11:25:59.384Z",
      "abbreviation": [
        "string"
      ],
      "synonyms": [
        "string"
      ],
      "synonym_global_ids": [
        "string"
      ],
      "enabled": true
    },
    "assets": {
      "asset_id": "string",
      "asset_name": "string",
      "attribute_quality_score": 0,
      "catalog_id": "string",
      "project_id": "string",
      "space_id": "string",
      "column_names": [
        "string"
      ],
      "column_terms": [
        "string"
      ],
      "column_term_global_ids": [
        "string"
      ],
      "column_descriptions": [
        "string"
      ],
      "connection_paths": [
        "string"
      ],
      "column_tags": [
        "string"
      ],
      "connection_ids": [
        "string"
      ],
      "column_data_class_names": [
        "string"
      ],
      "data_quality_score": 0,
      "data_quality_score_dbl": 0,
      "data_quality_delta": 0,
      "data_quality_delta_dbl": 0,
      "metadata_enrichment_area_id": "string",
      "metadata_enrichment_review_date": 0,
      "resource_key": "string",
      "metadata_enrichment_area_id": "string",
      "asset_id": "string",
      "suggested_column_term_global_ids": [
          "string"
      ],
      "suggested_column_terms": [
          "string"
      ],
      "schema_name": "string",
      "table_name": "string",
      "structured_profiling_completed_date": "2021-02-11T11:25:59.384Z",
      "structured_profiling_status": "string",
      "term_assignment_completed_date": "2021-02-11T11:25:59.384Z",
      "metadata_import_id": "string",
      "first_imported_timestamp": "2021-02-11T11:25:59.384Z",
      "last_imported_timestamp": "2021-02-11T11:25:59.384Z",
      "outdated_timestamp": "2021-02-11T11:25:59.384Z",
      "last_discovered_timestamp": "2021-02-11T11:25:59.384Z",
      "outdated_reason": "string"
    },
    "data_asset_column": {
      "data_class_name": "string",
      "data_class_id": "string",
      "data_class_set_by_user": true,
      "data_quality_score": 0,
      "data_quality_score_dbl": 0,
      "metadata_enrichment_review_date": "2021-02-11T11:25:59.384Z",
      "data_quality_delta": 0,
      "data_quality_delta_dbl": 0,
      "column_order": 0,
      "suggested_class_ids": ["string", "string", "string"],
      "suggested_class_names": ["string", "string", "string"]
    },
    "ref_data_value": {
      "value": "string",
      "value_long": 0,
      "value_dbl": 0,
      "ref_data_set_artifact_id": "string",
      "ref_data_set_version_id": "string",
      "parent_ref_data_value_artifact_id": "string"
    }
    },
    "custom_attributes": [
    {
      "last_updated_at": 0,
      "attribute_name": "string",
      "attribute_value": "string"
    }
    ],
    "categories": [
    {
      "last_updated_at": 0,
      "primary_category_id": "string",
      "primary_category_global_id": "string",
      "primary_category_name": "string",
      "secondary_category_ids": [
        "string"
      ],
      "secondary_category_global_ids": [
        "string"
      ],
      "secondary_category_names": [
        "string"
      ]
    }
    ]
}

Methods

Get configurations

Get the configurations of a catalog/project/space.

GET /v2/asset_containers/configurations

Request

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

No Sample Response

This method does not specify any sample responses.

Replace or create configurations

Replace the configurations of a catalog/project/space or create the configurations if they do not exist.

PUT /v2/asset_containers/configurations

Request

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

Configurations

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

List all asset lists defined for an account

Retrieve a paginated list of asset lists defined for an account.

GET /v2/asset_lists

Request

Query Parameters

  • Query to retrieve a paginated list of asset list metadatas for which the request user has permission to view.

    Search query in Common Expression Language, with special characters encoded. For example, & is %26.

    Examples of query parameters:
    * id
    * type
    * state
    * access_control.owner
    * created_at
    * last_updated_at

    Possible values: 1 ≤ length ≤ 1024, Value must match regular expression ^[\w\.,:$%&=|\(\)\s\-\_\^"]+$

    Example: type==order%26%26created_at%3E=2023-08-23T21:10:40Z

  • Start token for pagination

    Possible values: 1 ≤ length ≤ 512, Value must match regular expression ^[\w\.,:$&\(\)\s\-\_\^"]+$

  • Search result limit

    Possible values: 1 ≤ value ≤ 200

    Default: 200

    Example: 10

  • This parameter can be repeated to add additional sort fields.

    Default: null

    Examples of sort fields (these are case insensitive):

    • created_at
    • -created_at
    • last_updated_at
    • -last_updated_at

    Possible values: 1 ≤ length ≤ 1024, Value must match regular expression ^[\w\.,:$&\(\)\s\-\_\^"]+$

  • curl --request GET --url '{url}/v2/asset_lists' --header 'authorization: Bearer {access_token}' --header 'accept: application/json'

Response

The Asset list collection response API model.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

Example responses
  • {
      "limit": 200,
      "total_count": 1,
      "first": {
        "href": "https://api.dataplatform.cloud.ibm.com/v2/asset_lists"
      },
      "next": {
        "href": "https://api.dataplatform.cloud.ibm.com/v2/asset_lists?start=start_token",
        "start": "start_token"
      },
      "asset_lists": [
        {
          "name": "my_order",
          "description": "Order of multiple items",
          "type": "order",
          "state": "default_state",
          "id": "3204c622-dcb8-4728-869f-484b6ac73dff",
          "asset": {
            "id": "701f4af4-679c-42d1-80b5-0de5796a7514",
            "type": "ibm_data_product_version",
            "container": {
              "id": "71993ab5-3374-4355-8a38-fc4c32debc00",
              "type": "catalog"
            }
          },
          "access_control": {
            "owner": "userId",
            "bss_account_id": "bss_account_id"
          },
          "created_at": "2023-09-17T23:19:08.000Z",
          "last_updated_at": "2023-09-17T23:19:08.000Z",
          "last_updated_by": "userId"
        }
      ]
    }

Create a new asset list

Use this API to creates a new asset list.

If the state is not specified, the asset list will be created in DEFAULT state.
The list may be created with items, or without items.
The list will be owned by the request user.

POST /v2/asset_lists

Request

The asset list for creation.

Examples:
asset_list_for_creation
  • curl --request POST --url '{url}/v2/asset_lists' --header 'accept: application/json' --header 'authorization: Bearer {access_token}' --header 'content-type: application/json' --data '{"name": "my_order","description": "Order of multiple items","items": [{"asset": {"metadata": {"id": "8509d09e-b3d0-4e8b-9682-726a7b95f69a","type": "data_asset","container": {"id": "71993ab5-3374-4355-8a38-fc4c32debc00","type": "catalog"}}},"properties": {"my_property_1": "Value 1","my_property_2": "Value 2"}},{"asset": {"metadata": {"id": "8509d09e-b3d0-4e8b-9682-726a7b95f69b","type": "data_asset","container": {"id": "71993ab5-3374-4355-8a38-fc4c32debc00","type": "catalog"}}},"properties": {"my_property_1": "Value 1","my_property_map": {"my_property_map_key": "Value 2"}}}],"type": "order"}'

Response

The Asset list summary API model for retrieval.

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Too Many Requests

  • Internal Server Error

Example responses
  • {
      "name": "my_order",
      "description": "Order of multiple items",
      "type": "order",
      "state": "default_state",
      "id": "3204c622-dcb8-4728-869f-484b6ac73dff",
      "asset": {
        "id": "701f4af4-679c-42d1-80b5-0de5796a7514",
        "type": "ibm_data_product_version",
        "container": {
          "id": "71993ab5-3374-4355-8a38-fc4c32debc00",
          "type": "catalog"
        }
      },
      "access_control": {
        "owner": "userId",
        "bss_account_id": "bss_account_id"
      },
      "created_at": "2023-09-17T23:19:08.000Z",
      "last_updated_at": "2023-09-17T23:19:08.000Z",
      "last_updated_by": "userId"
    }

Delete asset lists

Deletes asset lists based on a query in Common Expression Language format.

DELETE /v2/asset_lists

Request

Query Parameters

  • Query to delete asset lists for which the request user has permission.

    Search query in Common Expression Language, with special characters encoded. For example, & is %26.

    Examples of query parameters:
    * id
    * type
    * state
    * access_control.owner
    * created_at
    * last_updated_at

    Possible values: 1 ≤ length ≤ 1024, Value must match regular expression ^[\w\.,:$%&=|\(\)\s\-\_\^"]+$

    Example: type==order%26%26created_at%3E=2023-08-23T21:10:40Z

  • curl --request DELETE --url '{url}/v2/asset_lists?query=created_at%3E%3D2023-08-23T21%3A10%3A40Z' --header 'accept: application/json' --header 'authorization: Bearer {access_token}'

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Too Many Requests

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieve an asset list identified by ID

Retrieves the metadata of an asset list of a given identified by ID.

GET /v2/asset_lists/{asset_list_id}

Request

Path Parameters

  • Asset list id (GUID, or [type]_[userId])

    Possible values: length = 36, Value must match regular expression ^[\w\.,:$&\(\)\s\-\_\^"]+$

    Example: aaff9159-8ba4-4ae5-a9d7-3e59d5903d72

  • curl --request GET --url '{url}/v2/asset_lists/{asset_list_id}' --header 'authorization: Bearer {access_token}' --header 'accept: application/json'

Response

The Asset list summary API model for retrieval.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

Example responses
  • {
      "name": "my_order",
      "description": "Order of multiple items",
      "type": "order",
      "state": "default_state",
      "id": "3204c622-dcb8-4728-869f-484b6ac73dff",
      "asset": {
        "id": "701f4af4-679c-42d1-80b5-0de5796a7514",
        "type": "ibm_data_product_version",
        "container": {
          "id": "71993ab5-3374-4355-8a38-fc4c32debc00",
          "type": "catalog"
        }
      },
      "access_control": {
        "owner": "userId",
        "bss_account_id": "bss_account_id"
      },
      "created_at": "2023-09-17T23:19:08.000Z",
      "last_updated_at": "2023-09-17T23:19:08.000Z",
      "last_updated_by": "userId"
    }

Delete an asset list identified by ID

Deletes an asset list identified by ID. The user must have permission to perform this action.

DELETE /v2/asset_lists/{asset_list_id}

Request

Path Parameters

  • Asset list id (GUID, or [type]_[userId])

    Possible values: length = 36, Value must match regular expression ^[\w\.,:$&\(\)\s\-\_\^"]+$

    Example: aaff9159-8ba4-4ae5-a9d7-3e59d5903d72

  • curl --request DELETE --url '{url}/v2/asset_lists/{asset_list_id}' --header 'accept: application/json' --header 'authorization: Bearer {access_token}'

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Conflict

  • Too Many Requests

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update the metadata of an asset list

Use this API to update the asset list metadata. Specify patch operations using http://jsonpatch.com/ syntax.

Fields that can be patched:

  • /name
  • /description
  • /type
  • /state

Note: The ownership cannot be modified after creation.

PATCH /v2/asset_lists/{asset_list_id}

Request

Path Parameters

  • Asset list id (GUID, or [type]_[userId])

    Possible values: length = 36, Value must match regular expression ^[\w\.,:$&\(\)\s\-\_\^"]+$

    Example: aaff9159-8ba4-4ae5-a9d7-3e59d5903d72

JSON array of patch operations as defined in RFC 6902. See http://jsonpatch.com/ for more info.

Examples:
asset_list_patch
  • curl --request PATCH --url '{url}/v2/asset_lists/{asset_list_id}' --header 'accept: application/json' --header 'authorization: Bearer {access_token}' --header 'content-type: application/json' --data '[{"op": "replace","path": "/state","value": "confirmed"}]'

Response

The Asset list summary API model for retrieval.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Unsupported Media Type

  • Internal Server Error

Example responses
  • {
      "name": "my_order",
      "description": "Order of multiple items",
      "type": "order",
      "state": "default_state",
      "id": "3204c622-dcb8-4728-869f-484b6ac73dff",
      "asset": {
        "id": "701f4af4-679c-42d1-80b5-0de5796a7514",
        "type": "ibm_data_product_version",
        "container": {
          "id": "71993ab5-3374-4355-8a38-fc4c32debc00",
          "type": "catalog"
        }
      },
      "access_control": {
        "owner": "userId",
        "bss_account_id": "bss_account_id"
      },
      "created_at": "2023-09-17T23:19:08.000Z",
      "last_updated_at": "2023-09-17T23:19:08.000Z",
      "last_updated_by": "userId"
    }

List the items of an asset list identified by ID

Retrieves the list items of an asset list identified by ID.

GET /v2/asset_lists/{asset_list_id}/items

Request

Path Parameters

  • Asset list id (GUID, or [type]_[userId])

    Possible values: length = 36, Value must match regular expression ^[\w\.,:$&\(\)\s\-\_\^"]+$

    Example: aaff9159-8ba4-4ae5-a9d7-3e59d5903d72

Query Parameters

  • Query to retrieve a paginated list of asset list items for which the request user has permission to view.

    Search query in Common Expression Language, with special characters encoded. For example, & is %26.

    Possible values: 1 ≤ length ≤ 1024, Value must match regular expression ^[\w\.,:$%&=|\(\)\s\-\_\^"]+$

    Example: properties.data_product_id==aaff9159-8ba4-4ae5-a9d7-3e59d5903d72%26%26created_at%3E=2023-08-23T21:10:40Z

  • Start token for pagination

    Possible values: 1 ≤ length ≤ 512, Value must match regular expression ^[\w\.,:$&\(\)\s\-\_\^"]+$

  • Search result limit

    Possible values: 1 ≤ value ≤ 200

    Default: 200

    Example: 10

  • This parameter can be repeated to add additional sort fields.

    Default: null

    Examples of sort fields (these are case insensitive):

    • created_at
    • -created_at
    • last_update_time
    • -last_update_time

    Possible values: 1 ≤ length ≤ 1024, Value must match regular expression ^[\w\.,:$&\(\)\s\-\_\^"]+$

  • curl --request GET --url '{url}/v2/asset_lists/{asset_list_id}/items' --header 'accept: application/json' --header 'authorization: Bearer {access_token}'

Response

The Asset list item collection response API model.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

Example responses
  • {
      "limit": 200,
      "total_count": 2,
      "first": {
        "href": "https://api.dataplatform.cloud.ibm.com/v2/asset_lists/3204c622-dcb8-4728-869f-484b6ac73dff/items"
      },
      "next": {
        "href": "https://api.dataplatform.cloud.ibm.com/v2/asset_lists/3204c622-dcb8-4728-869f-484b6ac73dff/items?start=start_token",
        "start": "start_token"
      },
      "items": [
        {
          "asset": {
            "id": "8509d09e-b3d0-4e8b-9682-726a7b95f69a",
            "type": "data_asset",
            "container": {
              "id": "71993ab5-3374-4355-8a38-fc4c32debc00",
              "type": "catalog"
            }
          },
          "properties": {
            "my_property_1": "Value 1",
            "my_property_2": "Value 2"
          },
          "id": "6357fce0-41ef-433b-95ee-03ade01bd02d",
          "access_control": {
            "owner": "userId",
            "bss_account_id": "bss_account_id"
          },
          "created_at": "2023-09-17T23:19:08.000Z",
          "last_updated_at": "2023-09-17T23:19:08.000Z",
          "last_updated_by": "userId",
          "asset_list_id": "3204c622-dcb8-4728-869f-484b6ac73dff"
        },
        {
          "asset": {
            "id": "8509d09e-b3d0-4e8b-9682-726a7b95f69b",
            "type": "data_asset",
            "container": {
              "id": "71993ab5-3374-4355-8a38-fc4c32debc00",
              "type": "catalog"
            }
          },
          "properties": {
            "my_property_1": "Value 1",
            "my_property_map": {
              "my_property_map_key": "Value 2"
            }
          },
          "id": "cdaf6713-ede0-4a61-9fa4-d65467c59e9c",
          "access_control": {
            "owner": "userId",
            "bss_account_id": "bss_account_id"
          },
          "created_at": "2023-09-17T23:19:08.000Z",
          "last_updated_at": "2023-09-17T23:19:08.000Z",
          "last_updated_by": "userId",
          "asset_list_id": "3204c622-dcb8-4728-869f-484b6ac73dff"
        }
      ]
    }

Retrieve an item in an asset list

Retrieves an item identified by ID of an asset list identified by ID.

GET /v2/asset_lists/{asset_list_id}/items/{asset_list_item_id}

Request

Path Parameters

  • Asset list id (GUID, or [type]_[userId])

    Possible values: length = 36, Value must match regular expression ^[\w\.,:$&\(\)\s\-\_\^"]+$

    Example: aaff9159-8ba4-4ae5-a9d7-3e59d5903d72

  • Asset list item id (GUID)

    Possible values: length = 36, Value must match regular expression ^[\w\.,:$&\(\)\s\-\_\^"]+$

    Example: aaff9159-8ba4-4ae5-a9d7-3e59d5903d73

  • curl --request GET --url '{url}/v2/asset_lists/{asset_list_id}/items/{asset_list_item_id}' --header 'accept: application/json' --header 'authorization: Bearer {access_token}'

Response

The Asset list item canonical API model.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

Example responses
  • {
      "asset": {
        "id": "8509d09e-b3d0-4e8b-9682-726a7b95f69a",
        "type": "data_asset",
        "container": {
          "id": "71993ab5-3374-4355-8a38-fc4c32debc00",
          "type": "catalog"
        }
      },
      "properties": {
        "my_property_1": "Value 1",
        "my_property_2": "Value 2"
      },
      "id": "6357fce0-41ef-433b-95ee-03ade01bd02d",
      "access_control": {
        "owner": "userId",
        "bss_account_id": "bss_account_id"
      },
      "created_at": "2023-09-17T23:19:08.000Z",
      "last_updated_at": "2023-09-17T23:19:08.000Z",
      "last_updated_by": "userId",
      "asset_list_id": "3204c622-dcb8-4728-869f-484b6ac73dff"
    }

Update an asset list item

Use this API to update an asset list item. Specify patch operations using http://jsonpatch.com/ syntax.

Fields that can be patched:

  • /properties
PATCH /v2/asset_lists/{asset_list_id}/items/{asset_list_item_id}

Request

Path Parameters

  • Asset list id (GUID, or [type]_[userId])

    Possible values: length = 36, Value must match regular expression ^[\w\.,:$&\(\)\s\-\_\^"]+$

    Example: aaff9159-8ba4-4ae5-a9d7-3e59d5903d72

  • Asset list item id (GUID)

    Possible values: length = 36, Value must match regular expression ^[\w\.,:$&\(\)\s\-\_\^"]+$

    Example: aaff9159-8ba4-4ae5-a9d7-3e59d5903d73

JSON array of patch operations as defined in RFC 6902. See http://jsonpatch.com/ for more info.

Examples:
asset_list_item_patch
  • curl --request PATCH --url '{url}/v2/asset_lists/{asset_list_id}/items/{asset_list_item_id}' --header 'accept: application/json' --header 'authorization: Bearer {access_token}' --header 'content-type: application/json' --data '[{"op": "add","path": "/properties/my_prop","value": {"key": "Val 1"}},{"op": "replace","path": "/properties/my_prop2/key","value": "Val 2"}]'

Response

The Asset list item canonical API model.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Unsupported Media Type

  • Internal Server Error

Example responses
  • {
      "asset": {
        "id": "8509d09e-b3d0-4e8b-9682-726a7b95f69a",
        "type": "data_asset",
        "container": {
          "id": "71993ab5-3374-4355-8a38-fc4c32debc00",
          "type": "catalog"
        }
      },
      "properties": {
        "my_property_1": "Value 1",
        "my_property_2": "Value 2"
      },
      "id": "6357fce0-41ef-433b-95ee-03ade01bd02d",
      "access_control": {
        "owner": "userId",
        "bss_account_id": "bss_account_id"
      },
      "created_at": "2023-09-17T23:19:08.000Z",
      "last_updated_at": "2023-09-17T23:19:08.000Z",
      "last_updated_by": "userId",
      "asset_list_id": "3204c622-dcb8-4728-869f-484b6ac73dff"
    }

Searches for relationship types

Searches for relationship types using various criteria. The query parameters here provide filters for the relationship types that are returned in the result. If no query parameters are provided, the result will include all relationship types that are visible to your bss account. If an asset container is specified, the results are limited to relationship types where at least one end can be used with the specified asset container. This is the case if the relationship end either has no declared asset container (for example because the end references a global asset type or is untyped) or if the end has an asset container that is the same as the asset container specified. If a relname filter is specified, the results are limited to relationship types where at least one end has a relationship name in the list. In order to see relationship types where at least one end is in the container asset type(s), you must either belong to the container's BSS account or have at least editor permission on the container. All users have permission to see global relationship types.

Limit the relationship types based on the item types:

  • If the asset_type is specified, the results are limited to relationship types where at least one end is either untyped or is in the specified asset type list.
  • If both asset_type and related_asset_type are specified, the results are limited to relationship types where both ends are untyped, or where one end is in the specified asset type list and the other end has the specified asset type list.
  • If the artifact_type is specified, the results are limited to relationship types where at least one end is either untyped or is in the specified artifact type list.
  • If both artifact_type and related_asset_type are specified, the results are limited to relationship types where both ends are untyped, or where one end is in the specified artifact type list and the other end has the specified asset type list.
  • If the asset_type or related_asset_type is set to *#_column, the results are limited to relationship types where one end can be used with any supported column type (currently limited to data_asset columns)
  • If the item type is set to *, the results are limited to relationship types where one end can be used with any asset type or any artifact type.

Note: In CP4D environments there is just one global bss account, so all relationship types are always visible to all users.

GET /v2/asset_relationship_types

Request

Query Parameters

  • Required when container_id is specified and the container is not a catalog. Specifies the type of the container (CATALOG/PROJECT/SPACE). Defaults to CATALOG.

    Default: CATALOG

  • Container ID. This limits results to relationship types that have an endpoint with the specified ID of a catalog, project, or space. If the container is a project or space, the container_type parameter must be also specified, otherwise container_id is treated as a catalog ID. This parameter is required when querying for relationship types associated with a catalog, project, or space. If this parameter is omitted, relationships types are not filtered by their container. Note that any type with an endpoint that has no container ID will also be included the result.

  • The parameter type_name is deprecated, please use asset_type instead

  • Asset Type Name(s). This limits the results to only relationship types that have an endpoint in the specified asset type list, or have an endpoint that is untyped.

  • Artifact Type Name(s). This limits the results to only relationship types that have an endpoint in the specified artifact type list, or have an endpoint that is untyped.

  • Related Asset Type Name(s). This parameter can only be set when either asset_type or artifact_type is also set.

    When asset_type is set, this limits the results to only relationship types that have an endpoint with the specified asset type and the other endpoint with this specified asset type.

    When artifact_type is set, this limits the results to only relationship types that have an endpoint with the specified artifact type and the other endpoint with this specified asset type.

  • limit to use when finding relationship types

    Default: 25

  • Optional bookmark to use when finding relationship types.

  • Relationship name(s). This limits the results to relationship types that have an endpoint with the specified name. The parameter should be repeated for each allowed relationship name.

  • Default display name(s). This limits the results to relationship types that have an endpoint with the specified name. The parameter should be repeated for each allowed relationship name.

  • Specifies the scope of the relationship types which can be (GLOBAL/BSS_ACCOUNT). If GLOBAL - it returns all types scoped to Global.If BSS_ACCOUNT - it returns all types scoped to BSS_ACCOUNT.If query parameter is omitted, it returns all.

  • If specified, the results are limited to relationship types that can be accessed by the specified BSS account. If container_id is also specified, the catalog's BSS account must be the same as the BSS account specified here.

    If bss_account_id is not specified and the API is called with an accredited service ID access token, then there is no filtering of the results based on BSS account.

    If bss_account_id is not specified, and the API is called with a regular user (i.e. non-service ID) access token, then the result depends on whether container_id is specified. If container_id is specified, then the result includes global relationship types and account-scoped relationship types for the container's BSS account. If container_id is not specified, then the result includes global relationship types, and account-scoped relationship types for all of the user's BSS accounts.

Response

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Too Many Requests

No Sample Response

This method does not specify any sample responses.

Creates an asset relationship type

Use this API to create an asset relationship type. The type definition consists of two endpoints which specify the two ends of a bidirectional relationship. The endpoints define the name of the relationship at each end, and the qualified asset type or the qualified artifact type that contains the relationship endpoint. The names of the relationships that can be used with any given asset type or artifact type are required to be unique. If the qualified asset type and the qualified artifact type are omitted, that end can be used with any asset type and any artifact type in any container.

Specifying the Type

The combination of container_type, container_id, and containing_asset_type(s) control what asset types can be used at each end of the relationship. The asset type can be a global asset type, an account-level asset type, a container-scoped asset type, or any asset type.

Global Asset Type

To define a relationship end for a global asset type, the containing_asset_type(s) field must be set to the name of the asset type and the container_id must be omitted. In this case, the relationship end can only be used with the specified global asset type. If the container_type field is set when using a global asset type, it is ignored.

Account Level Asset Type

To define a relationship end for an account-level asset type, the containing_asset_type(s) field must be set to the name of the asset type and the container_id must be omitted. In addition, the bss_account_id query parameter must be set to the bss account that owns the account-level asset type. In this case, the relationship end can only be used with the specified account-level asset type. If the container_type field is set when using an account-level asset type, it is ignored.

Container-Scoped Asset Type

The relationship mechanism allows relationship ends to be restricted to an asset type defined in a specific catalog, project, or space. To do this, the containing_asset_type(s), container_type, and container_id fields must all be set.

Artifact Type

To define a relationship end for an governance artifact type, the containing_artifact_type(s) field must be set to the name of the artifact type and the container_id must be omitted. The on_delete field can only set to IGNORE on both ends

Column Type

To define a relationship end for a column type, the containing_asset_type(s) field must be set in the format of <asset_type>#_column. When *#_column is specified, the relationship end can be used with any supported column type. Currently, only data_asset columns are supported. The on_delete field can only set to IGNORE on both ends

Any Type

To allow a relationship end to be used with any asset type, the containing_artifact_type(s), containing_asset_type(s) and container_id fields for the relationship end must be omitted. In this case, the relationship end can be used with any asset type, any artifact type, and any supported column type in any container. If the container_type field is set, it will be ignored.

Note: Cannot have containing_artifact_type(s) specified in both ends

Specifying the Relationship Type Scope

A relationship type can either be global or be scoped to a BSS account.

A relationship type can be explicitly scoped to a specific bss account using the bss_account_id query parameter. When a relationship type is scoped to a bss account, all specified asset containers and account-level asset types must belong to that bss account. If either endpoint for the relationship type has a specific asset container, the relationship type is automatically scoped to the bss account for the asset container. Account scoped relationship types can only be created if the user either belongs to the same bss account or is an administrator of all asset containers in the relationship type definition.

By default, if neither end of the relationship type specifies an asset container, the relationship type is created in the global scope and is accessible to all users. Only service ids with permission to create global asset types are allowed to create globally scoped relationship types. It is possible to scope a relationship type where neither end has an asset container to a specific BSS account. To do this, you must set the bss_account_id query parameter when creating the relationship type. The bss account must be set to a bss account that you have access to. In that case, the relationship type will be created, but its use will be restricted to asset containers associated with that bss account.

By default, on_delete is set to IGNORE if it is not specified

Note that in CP4D environments, there is only one bss account (999). As a result, in that context relationship types scoped to a specific BSS account are effectively global.

POST /v2/asset_relationship_types

Request

Query Parameters

  • This parameter forces the relationship type to be scoped to the specified bss account. It allows the creation of an account-scoped relationship type where both ends are either untyped, or are global asset types. It is required if the relationship type entity references any account-level asset types. An account-scoped relationship type is only visible to users in the BSS account for the relationship type. If the query parameter is unset, such relationships will be global in scope and can only be created if the user has permission to create a global asset type. Note: the BSS account can also be set via an impersonation header. If it is set in both places, the bss_account_id query parameter has precedence. This parameter is not required if either end of the relationship type has a catalog asset type. If it is set for a relationship type that has a catalog asset type, it must be the same as the BSS account for the catalog.

Relationship Type request body

Response

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Too Many Request

No Sample Response

This method does not specify any sample responses.

Searches for relationship type ends

Find relationship type ends that can be used with an asset type or artifact type. This API supports finding relationship type ends that use global or catalog asset types.

For an asset type:

  • set asset_type. This parameter should be repeated for each allowed asset type
  • All asset types in the list must either be global/account level asset types or be scoped to the asset container specified by the catalog_id, project_id, or space_id.

For a column type:

  • set asset_type as <asset_type>#_column
  • if asset_type is specific to a container (catalog, space, or project), then set a container ID parameter as appropriate (catalog_id, space_id, project_id).

For a governance artifact type:

  • set artifact_type. This parameter should be repeated for each allowed artifact type
POST /v2/asset_relationship_types/search_ends

Request

Query Parameters

  • catalog_id. If no container parameters are set, any asset container the user has access to are allowed.

  • project_id. If no container parameters are set, any asset containers the user has access to are allowed.

  • space_id. If no container parameters are set, any asset containers the user has access to are allowed.

  • asset_type(s). This specifies the asset type(s) whose relationship type ends should be found. This parameter should be repeated for each allowed asset type.

  • artifact_type(s). This specifies the artifact type(s) whose relationship type ends should be found. This parameter should be repeated for each allowed artifact type.

  • end_types. This filters the result to only include relationship type ends of the specified type(s) - valid filter values are {ASSET, ARTIFACT, COLUMN}. If this parameter is not specified, all relationship ends that match other criteria will be returned.

  • Optional limit to use when finding relationship type ends

    Default: 25

  • Optional bookmark to use when finding relationship type ends.

  • orderby. This parameter can be repeated to add additional sort fields.

    Default: relationship_display_name_asc

    Supported sort fields (these are case insensitive):

    • relationship_name_asc
    • relationship_name_desc
    • relationship_display_name_asc
    • relationship_display_name_desc
    • create_time_asc
    • create_time_desc

    Default: relationship_display_name_asc

  • Limits results to only include the specified relationships. By default, all relationship type ends which match the other search criteria are included. Repeat the query parameter to specify multiple relationship names.

Response

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Too Many Requests

No Sample Response

This method does not specify any sample responses.

Finds relationship types that are used by an asset, column or governance artifact

Finds relationship types that are used by an asset, column or a governance artifact. This API only returns the first page of results. It does not accept a bookmark. Any additional pages of results must be fetched using the next page url included in the response.

You can refer to the options in the response to get the full list of relationship names.

POST /v2/asset_relationship_types/search_used_ends

Request

Query Parameters

  • Catalog ID

  • Project ID

  • Space ID

  • Asset ID

  • Artifact ID

  • Artifact Type

  • Optional limit to use when finding relationship types

    Default: 25

  • Includes a list of the related asset types and artifact types in the result. This option adds overhead, so enable it only if the related type information is needed.

    Default: false

  • orderby. This parameter can be repeated to add additional sort fields.

    Default: relationship_display_name_asc

    Supported sort fields (these are case insensitive):

    • relationship_name_asc
    • relationship_name_desc
    • relationship_display_name_asc
    • relationship_display_name_desc
    • create_time_asc
    • create_time_desc

    Default: relationship_display_name_asc

Response

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Too Many Requests

No Sample Response

This method does not specify any sample responses.

deleteRelationshipType

Deletes a relationship type.

DELETE /v2/asset_relationship_types/{relationship_type_id}

Request

Path Parameters

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Too Many Request

No Sample Response

This method does not specify any sample responses.

Patches a relationship type

Updates an existing relationship type. The patch body must be an array of json patch operations as defined in RFC 6902.

The following fields can be patched in each relationship type endpoint:

  • default_display_name (value can be changed but not removed)
  • localized_display_name (values can be added, changed, and removed)
  • on_delete (value can be added, removed, or deleted)

Relationship types where at least one endpoint is a catalog asset type can be patched either by an admin member of the catalog, or by a user in the catalog's BSS account. Global relationship types can only be patched by a user with permission to create global asset types.

It is important to note that the patch specifies updates to apply the current json representation of the relationship types. When specifying an add/replace/remove patch operation, all of parent elements in the path must already exist. In particular, if the relationship type endpoint was originally created without a localized_display_name element, that element needs to be created by the patch operations.

Here are some examples of patches that can be applied:

Add a display name to an endpoint without an existing localized_display_name element:

[
  {
    "op": "add",
    "path": "/end2/localized_display_name",
    "value": {"
      "en-us": "English Display Name"
    }
  }
]

Add a display name to an endpoint with an existing localized_display_name element:

[
  {
    "op": "add",
    "path": "/end2/localized_display_name/en-gb",
    "value": "British Display Name",
  }
]

Change localized display name for en-gb in end2:"

[
  {
    "op": "replace",
    "path": "/end2/localized_display_name/en-gb",
    "value": "New British Display Name"
  }
]

Remove localized display name for en-gb rom end1:

[
  {
    "op": "remove",
    "path": "/end1/localized_display_name/en-gb"
  }
]

Add a relationship option override, replace an existing relationship option override, delete an existing relationship option override:

[
  {
      "op": "add",
      "path": "/end1/option_overrides/-",
      "value": {
          "this_asset_type": "ibm_bi_report",
          "other_asset_type": "ibm_bi_report_query",
          "on_delete": "CASCADE",
          "on_publish": "IGNORE",
          "on_promote": "CASCADE",
          "on_clone": "IGNORE"
      }
  },
  {
      "op": "replace",
      "path": "/end1/option_overrides/1/on_delete",
      "value": "CASCADE"
  },
  {
      "op": "add",
      "path": "/end1/option_overrides/1/on_promote",
      "value": "IGNORE"
  },
  {
      "op": "remove",
      "path": "/end1/option_overrides/1/on_promote"
  }
[
PATCH /v2/asset_relationship_types/{relationship_type_id}

Request

Path Parameters

  • relationship_type_id

 JSON array of patch operations as defined in RFC 6902.
 Note: Any ‘~’ characters need to be escaped as ~0 in the path field.
 Any ‘/’ characters need to be escaped as ~1 in the path field.
 For example, in `{"foo/" : {"~bar" : "value"}}`, the path for `"~bar"` is `"/foo~1/~0bar"`.
Examples:
View

Response

Status Code

  • Relationship type was successfully patched

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Too Many Requests

No Sample Response

This method does not specify any sample responses.

List all asset types defined for an account, catalog, project or space.

Get all asset types in an account, catalog, project or space

GET /v2/asset_types

Request

Query Parameters

  • This parameter allows retrieving catalog-scoped asset types. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • This parameter allows retrieving project-scoped asset types. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • This parameter allows retrieving space-scoped asset types. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • This parameter allows retrieving account-scoped asset types. May be different than account of user specified in Bearer token. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • This parameter allows to retrieve asset types which can be decorated. You can provide either a true or a false.

    Default: FALSE

  • This parameter allows to retrieve asset types which can be used only as attributes and are user defined. You can provide either a true or a false. At a time, either permits_decorators or custom_attributes can be true.

    Default: FALSE

  • Language code, such as default, en, etc.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieves an asset type of a given name.

Retrieves an asset type of a given name.

GET /v2/asset_types/{type_name}

Request

Path Parameters

  • Asset Type name (eg: data_asset)

Query Parameters

  • This parameter allows retrieving a catalog-scoped asset type. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • This parameter allows retrieving a project-scoped asset type. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • This parameter allows retrieving a space-scoped asset type. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • This parameter allows retrieving an account-scoped asset type. May be different than account of user specified in Bearer token. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • Language code, such as default, en, etc.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

No Sample Response

This method does not specify any sample responses.

Replace an asset type

Replace asset attributes for the given asset type or create a new asset type if the given asset type does not exist.

PUT /v2/asset_types/{type_name}

Request

Path Parameters

  • Asset Type name (eg: data_asset)

Query Parameters

  • This parameter allows creating or updating a catalog-scoped asset type. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • This parameter allows creating or updating a project-scoped asset type. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • This parameter allows creating or updating a space-scoped asset type. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • This parameter allows creating or updating an account-scoped asset type. May be different than account of user specified in Bearer token. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

Asset Type request body

Response

Status Code

  • OK

  • Accepted

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Conflict

  • Too Many Request

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes an asset type

Deletes an asset type in given account or container. Note that, deletion of an account scope asset type or a container scope asset type triggers background clean up of assets:

  • Assets of this type are deleted.
  • And in case of other assets, attributes of this type are removed.

DELETE /v2/asset_types/{type_name}

Request

Path Parameters

  • Asset Type name (eg: data_asset)

Query Parameters

  • This parameter allows creating or updating a catalog-scoped asset type. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • This parameter allows creating or updating a project-scoped asset type. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • This parameter allows creating or updating a space-scoped asset type. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

  • This parameter allows creating or updating an account-scoped asset type. May be different than account of user specified in Bearer token. You must provide either a catalog_id, a project_id, a space_id, OR a bss_account_id but not more than one.

Response

Status Code

  • OK

  • Accepted

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Conflict

  • Too Many Request

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Finds relationship types for an asset type

Finds relationship types that originate from a given asset type. This API supports limiting the results to a specific set of relationship types as well as providing pagination and sorting options. It also supports finding relationship types that use both global and catalog asset types.
This API is deprecated - use POST /v2/asset_relationship_types/search_ends instead

GET /v2/asset_types/{type_name}/relationships

Request

Path Parameters

  • type_name. This specifies the asset type whose relationships should be found.

Query Parameters

  • catalog_id. If set, this restricts catalog asset types in the result to the given catalog. If no container parameters are set, any asset container the user has access to are allowed.

  • catalog_id. If set, this restricts catalog asset types in the result to the given project. If no container parameters are set, any asset containers the user has access to are allowed.

  • catalog_id. If set, this restricts catalog asset types in the result to the given space. If no container parameters are set, any asset containers the user has access to are allowed.

  • Optional limit to use when finding relationship types

    Default: 25

  • Optional bookmark to use when finding relationship types.

  • orderby. This parameter can be repeated to add additional sort fields.

    Default: relationship_display_name_asc

    Supported sort fields (these are case insensitive):

    • relationship_name_asc
    • relationship_name_desc
    • relationship_display_name_asc
    • relationship_display_name_desc
    • create_time_asc
    • create_time_desc

    Default: relationship_display_name_asc

  • Limits results to only include the specified relationships. By default, all relationship types for the asset type are included. Repeat the query parameter to specify multiple relationship names.

Response

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Too Many Requests

No Sample Response

This method does not specify any sample responses.

Search for asset metadata within assets of the specified type

Use this API to search for assets of the generic asset type (asset) or any specific asset type in a Catalog, Space, or Project.

The request body must contain a query field, which specifies a Lucene query to search for assets on indexed fields.
See Searchable Asset and Attachment Fields below for the list of fields that can be searched in the query.

If query contains no selection criteria ("*:*"), then the result includes all assets that are instances of the type specified in the type_name path parameter, including assets whose primary asset type (i.e. its metadata.asset_type value) is that type, and assets that have an attribute of that type.
To filter out assets whose primary type does not match the type_name parameter, the query must include an asset.asset_type:{type_name} predicate.

The query results can be sorted by specifying a sort field in the request with format field<sort_type>. The sort_type can be either number or string (e.g. "sort" : "asset.name<string>").

Search With Pagination

The limit request body field can be specified to limit the number of assets in the search results.
The default limit is 200. The maximum limit value is 200, and any greater value is ignored.

Sample Request Body:

{
    "query" : "asset.name:Asset*",
    "limit" : 2,
    "sort" : "asset.name<string>"
}

Response:

{
    "next": {
        "bookmark": "g1AAAXXXXXXXX",
        "query" : "asset.name:Asset*",
        "limit" : 2,
        "sort" : "asset.name<string>"
     },
    "results": [
        {
            ..asset 1...
        },
        {
            ..asset 2...
        }
    ],
    "total_rows": 3
}

When more search results are available, then the response will contain a next JSON object - next contains bookmark along with original query which needs to be returned to retrieve the next page of results. To paginate through the entire result set, the request should be re-executed with the bookmark from the next.bookmark value of the previous response until there is no next object in the response (note that this response may contain an empty results array).

Sample request body to get the next page of results:

{
    "bookmark": "g1AAAXXXXXXXX",
    "query" : "asset.name:Asset*",
    "limit" : 2,
    "sort" : "asset.name<string>"
}

Searchable Asset and Attachment Fields

The following asset and attachment fields can be searched in the query - note that type <string> or <number> only needs to be added for use in the sort request field:
asset.asset_attributes<string>
asset.asset_category<string>
asset.asset_state<string>
asset.asset_type<string>
asset.catalog_id<string>
asset.created_at<string>
asset.delete_timestamp<string>
asset.description<string>
asset.memberIds<string>
asset.editor_id<string>
asset.viewer_id<string>
asset.member_or_owner_id<string>
asset.memberGroupIds<string>
asset.editor_group_id<string>
asset.viewer_group_id<string>
asset.member_or_owner_group_id<string>
asset.mode<number>
asset.name<string>
asset.owner_id<string>
asset.owner_group_id<string>
asset.project_id<string>
asset.rating<number>
asset.resource_key<string>
asset.identity_key<string>
asset.source_asset_id<string>
asset.source_catalog_id<string>
asset.source_project_id<string>
asset.source_space_id<string>
asset.source_system<string>
asset.source_system_asset_id<string>
asset.source_system_created_at<string>
asset.source_system_id<string>
asset.source_history_asset_id<string>
asset.source_history_system_id<string>
asset.space_id<string>
asset.tags<string>
attachment.connection_id<string>
attachment.connection_path<string>
attachment.name<string>
attachment.object_key<string>

POST /v2/asset_types/{type_name}/search

Request

Path Parameters

  • Asset Type name (eg: data_asset)

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

  • The parameter include is deprecated, please use exclude instead

  • Exclude columns from the asset result. Available value: columns. Default value is empty, which will return the complete asset, including the columns.

Search Criteria. The "include" field in the request body is a list of asset sections to include in the search results, values are comma-separated and the supported values are "entity" or "entity,attachments".

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

No Sample Response

This method does not specify any sample responses.

Get the status of an account scope or global scope asset type.

Retrieves an account scope or global scope status, If bss_account_id is not provided, api will try to retreive status of an asset type at global level if present.

GET /v2/asset_types/{type_name}/status

Request

Path Parameters

  • Asset Type name (eg: account_type)

Query Parameters

  • This parameter allows retrieving status of an account-scoped asset type. May be different than account of user specified in Bearer token.

Response

Asset Type StatusResponse Model

Status Code

  • OK

  • See Other

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

No Sample Response

This method does not specify any sample responses.

Create an asset

Use this API to create an asset in catalog or project. Assets contain information about the contents of your data and how to access the data. You store asset metadata in a catalog and add collaborators from your organization to analyze data. Your data can reside in a variety of sources. For example, you can keep your data in your existing on-premises data sources, cloud data services, or streaming data feeds. By adding connection information to these remote sources in the catalog, you can allow other catalog users to access the data with the stored credentials. Alternatively, you can copy a snapshot of the remote data into the catalog's encrypted cloud storage.
All asset types have a common set of properties. Some asset types have additional properties.
When you add an asset to a catalog, you specify these common properties:

  • The asset name and an optional description. The name can only contain letters, numbers, underscore, dash, space, and period. The name can't be only blank spaces.
  • Privacy. You can choose to restrict access to the asset with the privacy level and asset membership.
    • Public = Default. No restrictions on finding or using the asset.
    • Private = Only asset members can find or use the asset.
  • Members. The catalog collaborators can be added as members of the asset. Members are important if you restrict access to the asset. When you create an asset, you are the owner (and implicitly a member) of it. Members can be set in metadata/rov/collaborator_ids or metadata/rov/member_roles, but not both. Members set in metadata/rov/member_roles are given an explicit set of roles. Members can have up to two roles: OWNER and either EDITOR or VIEWER. Only service ids can assign the OWNER role. The request to add the OWNER role is ignored for other callers. Asset members with the EDITOR or VIEWER role must also be members of the catalog. Members set in metadata/rov/collaborator_ids are automatically assigned a role based on their role in the catalog.
  • Tags. Metadata that makes searching for the asset easier. Tags can contain only letters, numbers, underscores, dashes, and the symbols # and @.
POST /v2/assets

Request

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Action to take if the call would result in a duplicate asset. IGNORE means the call will ignore the duplicate and create a new asset. REJECT means the call will fail and no asset will be created. UPDATE means the best matched duplicate will be updated with the incoming changes according to the predefined rules. REPLACE means the best matched duplicate will be overwritten with the input values according to the predefined rules. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT,UPDATE,REPLACE]

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Asset metadata

Response

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get one or more assets.

Use this API to retrieve one or more assets located in catalog or project or space. Access to an asset is controlled by a combination of the privacy level and the members of the asset. For a governed catalog, data assets are protected from unauthorized access by the governance policies that are defined in Data Governance. Data assets in ungoverned catalogs are not subject to governance policies.

Response includes, for each asset, asset ID, status, HTTP status and, if no errors, asset details & relationship count or list of errors. For example:

{
  "resources":[
    {
      "asset_id":"cf38d92c-eb55-462e-89bf-cdb9fe67f0b7",
      "status":"success",
      "http_status":200,
      "asset":{...},
      "relationship_count":2
    },
    {
      "asset_id":"c6650020-3176-4d67-8fbe-5a19ba1c2c7e",
      "status":"failed",
      "http_status":404,
      "errors":[
         ...
      ]
    },
    ...
  ]
}
GET /v2/assets/bulk

Request

Query Parameters

  • Comma separated list of asset IDs; maximum of 20. For assets with revisions, an optional revision number can be specified using colon character in the form of '<asset id>:<revision>,<asset id>,...'. Revision numbers are non-zero positive numbers likes 1, 2, 3 etc.

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Whether to allow access to metadata when the evaluation outcome of data protection rules is Deny.

  • The parameter include is deprecated, please use exclude instead

  • Exclude columns from the asset result. Available value: columns. Default value is empty, which will return the complete asset, including the columns.

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

  • Whether to include relationships where source end is a column of the source asset in the asset's relationship counter.

    Default: false

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Marks existing assets for delete

Use this API to delete assets. You can delete an asset if you are the owner of the asset or a member of the asset with Admin or Editor permissions on the catalog or project or space.

DELETE /v2/assets/bulk

Request

Query Parameters

  • Comma separated list of asset IDs; maximum of 20.

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • If true, asset is also deleted from the trash.

    Default: false

Response

Status Code

  • Check response body for status of each asset being deleted

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Copies one or more assets and, if deep copy option is on, their related assets from a source container to a target container.

Use this API to publish one or more assets from a project to a catalog or promote from a project to a space. This API can also be used to clone one or more assets from a catalog to a project. The default maximum number of assets in a request is 50.

Copy sends the same Rabbit MQ messages as publish, promote or clone. Messages are sent for all assets that are copied.

This API supports using a refresh token in place of an access token. This can be helpful if the copy is expected to be a long running operation. The copy operation uses the access token to authenticate with other services, so it is important that it not expire while the operation is in progress. When a refresh token is specified, it is used to generate an initial access token as well as additional access tokens if the initial access token expires

POST /v2/assets/bulk_copy

Request

Query Parameters

  • Source catalog ID. Only one of either catalog ID or project ID must be provided.

  • Source project ID. Only one of either catalog ID or project ID must be provided.

  • deepcopy

    Default: false

  • Whether to automatically copy connections in remote attachments

    Default: true

  • Action to take if the call would result in a duplicate asset. IGNORE means the call will ignore the duplicate and create a new asset. REJECT means the call will fail and no asset will be created. UPDATE means the best matched duplicate will be updated with the incoming changes according to the predefined rules. REPLACE means the best matched duplicate will be overwritten with the input values according to the predefined rules. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT,UPDATE,REPLACE]

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Request body should include target container ID and list of assets with metadata overrides, and may include asset permissions override. Target container ID should be either that of a catalog (publish) or of a space (promote) if source conatiner is a project, or that of a project (clone) if source is a catalog. Example:

{
  "catalog_id": "string",
  "rov_mode": "integer",
  "member_roles": {
    "Member's IAM ID": {
       "user_iam_id": "Member's IAM ID",
       "roles": ["EDITOR"]
    },
    "Access Group ID": {
       "access_group_id": "Access Group ID",
       "roles": ["VIEWER"]
    },
    "Another IAM ID": {
      ...
    }
  },
  "copy_configurations":[
    {
      "asset_id": "string",
      "revision_id": "string",
      "metadata_overrides": {
        "name":"string", "description":"string", "tags":["string","string"]
      }
    },
    ...
  ]
}

Fields 'rov_mode' and 'member_roles' are optional.

  • If specified, they apply to all newly copied (target) assets.
  • If not supplied, newly copied asset gets mode and 'member_roles' from its corresponding source asset.
  • Valid values for 'rov_mode' are 0 (public), 8 (private) and 16 (hidden).
  • If caller doesn't have permissions to set any of the roles then 'member_roles' is completely ignored.
  • If supplied, 'member_roles' should include at least one OWNER role.

The 'metadata_overrides' field is optional and may contain attributes to overwrite the values in original asset. Currently only name, description and tags can be overriden. If specified 'metadata_overrides' cannot be empty and only applies to respective root asset.

Any cross-referenced asset is copied only once.

Response

Status Code

  • OK - indicates the copy operation has completed - assets and its related assets (if applicable) have been fully copied to the target catalog.

  • Accepted - indicates that the copy request is being completed in the background.

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create one or more assets.

Use this API to create one or more assets in a catalog or a project or a space. The default maximum number of assets in a request is 20. Example of request (POST) data:

{
  "assets":[
    {
      "name":"<Name of the first asset>",
      "description":"<Description of the first asset>",
      "tags":["<Tag 1>", "<Tag 2>", ...],
      "asset_type":"<Asset type such as "connection", "data_asset", etc.>",
      "entity":{
          ...
      }
      "attachments":{
          ...
      }
    },
    {
      "name":"<Name of the second asset>",
      ...
    },
    ...
  ]
}

Response includes, for each asset in the request and in the same order, details of newly created asset or details of updated asset if a duplicate/match is found or errors if any:

{
  "trace":"<Trace ID, if failed to create or update one or more assets>", 
  "responses":[
    {
      "http_status":201,
      "asset":{...}
    },
    {
      "http_status":400,
      "errors":[
         ...
      ]
    },
    ...
  ]
}
POST /v2/assets/bulk_create

Request

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Action to take if the call would result in a duplicate asset. IGNORE means the call will ignore the duplicate and create a new asset. REJECT means the call will fail and no asset will be created. UPDATE means the best matched duplicate will be updated with the incoming changes according to the predefined rules. REPLACE means the best matched duplicate will be overwritten with the input values according to the predefined rules. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT,UPDATE,REPLACE]

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

JSON containing list of assets to be created.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Patch one or more assets.

Use this API to patch one or more assets in catalog or project or space. The default maximum number of assets in a request is 20. The API supports the following operations:

  • Patching of allowed metadata properties. See PATCH /v2/assets/{asset_id} API for list of allowed metadata properties that can be patched."
  • Add, update and delete of attributes such as asset_terms, data_profile, etc."
  • Create, update and delete of attachments:
    • The (asset) attachments field is an array and the index of the first attachment is 0, the index of the second one is 1 and so on. Adding or deleting an attachment shifts indexes of any attachments that follow it.
    • A newly created attachment is added at the specified location. If the path is /attachments/- then it will be added at the end.
    • Newly added attachment cannot be updated or deleted (in the same API call). And, newly updated attachment cannot be deleted.
    • Some of the new attachment fields like attachment_id, url1, url2, etc. are only included in the response the first time when the attachments are created.
    • Only the following attachment fields can be updated: name, description, mime, size, partitions and transfer_complete. Access to an asset is controlled by a combination of the privacy level and the members of the asset. For a governed catalog, data assets are protected from unauthorized access by the governance policies that are defined in Data Governance. Data assets in ungoverned catalogs are not subject to governance policies.

Note: Patch 'operations' should conform to RFC 6902 specification.

Example of request (POST) data:

{
    "resources": [
        {
            "asset_id": "cf38d92c-eb55-462e-89bf-cdb9fe67f0b7",
            "operations": [
                {
                    "op": "add",
                    "path": "/metadata/description",
                    "value": "Four score and seven years ago..."
                },
                {
                    "op": "add",
                    "path": "/entity/data_asset/mime_type",
                    "value": "text/csv"
                },
                {
                    "op": "replace",
                    "path": "/attachments/1/name",
                    "value": "New name for the 2nd attachment."
                },
                {
                    "op": "remove",
                    "path": "/attachments/0"
                }
                {
                    "op":"add",
                    "path":"/attachments/-",
                    "value":{...}
                },
                {
                    "op":"replace",
                    "path":"/attachments/1/name",
                    "value":"New name for the 2nd attachment."
                },
                {
                    "op":"add",
                    "path":"/attachments/2",
                    "value":{...}
                },
            ]
        },
        {
            "asset_id":"c6650020-3176-4d67-8fbe-5a19ba1c2c7e",
            "operations": [
            ...
            ]
        },
        ...
    ]
}

Response includes, for each asset, asset ID, status and updated version or errors, if any:

{
    "resources": [
        {
            "asset_id": "cf38d92c-eb55-462e-89bf-cdb9fe67f0b7",
            "status": 200,
            "http_status": 200,
            "asset": {
                ...
            }
        },
        {
            "asset_id": "c6650020-3176-4d67-8fbe-5a19ba1c2c7e",
            "status": 404,
            "http_status": 404,
            "errors": [
                ...
            ]
        },
        ...
    ]
}

Currently the API allows to patch up to twenty (20) assets. There is no limit on number of patch instructions. Any number of (allowed) metadata properties and/or attributes can be:

  • modified,
  • new ones added,
  • existing ones be replaced or
  • deleted

JSON array of patch operations as defined in RFC 6902. See http://jsonpatch.com/ for more info.

Note: Any ~ characters need to be escaped as ~0 in the path field

Any / characters need to be escaped as ~1 in the path field

For example, in {"foo/: {"~bar: "value"}}, the path for ~bar is /foo~1/~0bar

POST /v2/assets/bulk_patch

Request

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Action to take if the changes to an asset would make it a duplicate to other assets. IGNORE means the call will continue and update the asset anyway; as a result, the asset will become a duplicate to other assets. REJECT means the call will fail and the asset will not be changed. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT]

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

JSON containing per-asset updates/patches.

Response

Status Code

  • OK - indicates successful completion of overall request. The 'http_status' of sub-response provides status of corresponding sub-request i.e. asset.

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Gets the status of asset copy operation

For large deep copies, portions of the copy operation are performed in the background. This API provides a way to get the status of the background processing. It also provides additional details about deep copy operations that have already been completed.

Similar to /v2/assets/deepcopy/{deep_copy_task_id} API but response can support completion details of multiple source assets.

Note: The status of completed copy operations is only available for 24 hours.

GET /v2/assets/copy_status/{copy_task_id}

Request

Path Parameters

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create a PUT signed url for an object or a file

Use this API to create a PUT signed url to an object or a file in the catalog/project/space bucket/storage.
You must specify both name and asset_type (to create a new object or a file) OR the asset_id (to overwrite an existing object or a file) in the request.
You must specify one of these -- catalog_id, project_id or the space_id as a query parameter.
Details:

  • No new meta-data (asset_id) is created or updated for this request.
  • Only the PUT signed url is returned for the object or the file.
  • If the asset_id is given in the request, a PUT signed url is returned for that asset's attachment's object/file, if the object/file is stored in the catalog/project/space bucket/storage. If the asset_type is given, the object/file from the first attachment with that asset_type is the one for which the PUT signed url will be returned. If the asset_type is not given, then, the asset's asset_type, then the "data_asset", will be used to find the attachment with the object/file.
  • If the asset_id is not given in the request, and asset_type and name are specified, a PUT signed url is returned for an object_key where the object_key value is created using the combination of asset_type, sanitized name, and a random string.
  • The name in the request can only contain letters, numbers, underscore, dash, space, and period -- same requirements as the attachment name.
  • The value of expires_in is in seconds. The default value of expires_in is 604800 (7 days). Given a value of 0, the default value will be applied. The max value is the same as the default value; if a value larger than the max value is input, the max value will be used.
POST /v2/assets/create_object_url

Request

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

object_url request

Response

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Gets the status of a deep copy operation

For large deep copies, portions of the copy operation are performed in the background. This API provides a way to get the status of the background processing. It also provides additional details about deep copy operations that have already been completed.

Note: The status of completed deep copy operations is only available for 24 hours.

GET /v2/assets/deepcopy/{deep_copy_task_id}

Request

Path Parameters

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Bulk search duplicate assets

Use this API to search for duplicate assets of an array of assets in the target catalog, project, or space. The maximum number of assets in a request is 20.

Each asset in the request can either be an existing asset, or an asset object that is the same as the user would provide for creating a new asset. E.g.,

{
  "resources":[
    {
      "asset": {
        "metadata": {},
        "entity": {}
      }
    },
    {
      "project_id": "6f79ff7d-9227-4cba-81e7-726db8984d16",
      "asset_id": "faad7530-4a30-41da-ac27-d3a0f07b2070"
    },
    {
      "asset": {
        "metadata": {},
        "entity": {}
      }
    }
  ]
}

The response contains an array of duplicate search results. The index of the results in the array is the same as the index of the corresponding asset in the request array. Each result can be a success or failure depending on the corresponding request asset. E.g.,

{
  "trace":"32s0wywr3wdqpsn86b4cfzb4i",
  "resources":[
    {
      "http_status": 200,
      "total_count": 1,
      "best_updatable_duplicate_asset_id": "b81c84f5-a551-43bb-9a6e-c8e7820995f9",
      "results": [
        {
          "asset_id": "b81c84f5-a551-43bb-9a6e-c8e7820995f9",
          "highest_match_score": {},
          "asset": {
            "metadata": {},
            "entity": {}
          }
        }
      ]
    },
    {
      "http_status": 404,
      "errors": [
        {
          "code": "does_not_exist",
          "message": "ATTSV3024E: There is no asset with an ID of 'faad7530-4a30-41da-ac27-d3a0f07b2070' in a project with an ID of '6f79ff7d-9227-4cba-81e7-726db8984d16' ."
        }
      ]
    },
    {
      "http_status": 200,
      "total_count": 0,
      "results": [
      ]
    }
  ]
}

The response of each requested item contains a http_status field that can be used to determine if the specific request was successful or not. If a request failed, the corresponding response will contain a field errors indicating the cause of the failure. For detail explaination of other fields in the request and response of each item, please refer to the POST /v2/assets/duplicates/search endpoint.

POST /v2/assets/duplicates/bulk_search

Request

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Whether to allow access to metadata when the evaluation outcome of data protection rules is Deny.

  • The parameter include is deprecated, please use exclude instead

  • Exclude columns from the asset result. Available value: columns. Default value is empty, which will return the complete asset, including the columns.

  • The maximum number of items to return for each requested asset

    Default: 100

The assets to search for duplicate assets.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Search duplicate assets

Use this API to search for duplicate assets of an asset in the target catalog, project, or space.

Users can provide an existing asset like below to search for duplicate assets of the given asset in the target asset container. The authenticated user needs to have the read access to the specified asset.

{
  "project_id": "6f79ff7d-9227-4cba-81e7-726db8984d16",
  "asset_id": "faad7530-4a30-41da-ac27-d3a0f07b2070"
}

Or provide an asset object to search for duplicate assets of the given asset payload in the target asset container. The asset payload is the same as the user would provide for creating a new asset.

{
  "asset": {
    "metadata": {},
    "entity": {}
  }
}

The query parameter limit can be used to limit the number of duplicates in the response. If not supplied, the maximum allowed value 100 is used. Note that the API does not support paignation as users usually only care about top x number of duplicates instead of all duplicates. If they do, they can always use a large limit to retrieve all duplicates. There number of the duplicates of any given asset should be far less than the maximum allowed value of the parameter limit. The system would become unusable long before the number of duplicates reaches that value.

The duplicate assets in the response are ordered by the matching score from high to low. The higher the matching score, the more certain that the asset is a duplicate of the incoming asset.

The total_count indicates the total number of duplicates of the given asset. This is useful in case the total number of duplicates is greater than the specified limit.

The best_updatable_duplicate_asset_id indicates the highest ranking duplicate asset that can be updated by the authenticated user. This duplicate asset would be updated/replaced if the incoming asset were to be added in the target asset container and the effective duplicate_action were UPDATE/REPLACE. If duplicates are found but this field doesn't have a value, it indicates that the authenticated user doesn't have permission to update any of the duplicates. In such a case, if the incoming asset were to be added in the target asset container and the effective duplicate_action were UPDATE/REPLACE, the transaction would fail.

POST /v2/assets/duplicates/search

Request

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Whether to allow access to metadata when the evaluation outcome of data protection rules is Deny.

  • The parameter include is deprecated, please use exclude instead

  • Exclude columns from the asset result. Available value: columns. Default value is empty, which will return the complete asset, including the columns.

  • The maximum number of items to return

    Default: 100

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Supply either an existing asset or an asset payload to search for duplicate assets.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get an ibm_data_source asset

Use this API to get an ibm_data_source asset with provided endpoint or physical_collection. There is only one ibm_data_source asset that meets the specified parameters. Currently we only support the following three query methods:

  1. host + port, the host is either ipV4 or ipV6 or a DNS name
  2. host + port + physical_collection
  3. datasource_type + physical_collection
GET /v2/assets/ibm_data_source

Request

Query Parameters

  • Catalog GUID or UID

  • the bss_account_id

  • It can be database, project_id or bucket

  • There are some special connectors that do not have traditional host + port. If you want to query the data source asset containing these connectors, please use datasource_type + physical_collection to query.

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Publish an asset from a project which is only referenced in that project

Use this API to publish an asset whose only metadata are only in project as reference to a target catalog. Assets contain information about the contents of your data and how to access the data. You store asset metadata in a catalog and add collaborators from your organization to analyze data. Your data can reside in a variety of sources. For example, you can keep your data in your existing on-premises data sources, cloud data services, or streaming data feeds. By adding connection information to these remote sources in the catalog, you can allow other catalog users to access the data with the stored credentials. Alternatively, you can copy a snapshot of the remote data into the catalog's encrypted cloud storage.
All asset types have a common set of properties. Some asset types have additional properties.
When you add an asset to a catalog, you specify these common properties:

  • The asset name and an optional description. The name can only contain letters, numbers, underscore, dash, space, and period. The name can't be only blank spaces.
  • Privacy. You can choose to restrict access to the asset with the privacy level and asset membership.
    • Public = Default. No restrictions on finding or using the asset.
    • Private = Only asset members can find or use the asset.
  • Members. The catalog collaborators can be added as members of the asset. Members are important if you restrict access to the asset. When you create an asset, you are the owner (and a member) of it.
  • Tags. Metadata that makes searching for the asset easier. Tags can contain only letters, numbers, underscores, dashes, and the symbols # and @.
POST /v2/assets/publish

Request

Query Parameters

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Asset metadata

Response

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

send messages for the provided list of assets

Overview

Use this API to send messages through existing pipeline with the latest state of the assets provided in the list.
Example of request (POST) data:
" +

{
  "asset_ids":[
     "40ca7daf-c4a7-40cf-a17e-440d858ad62b",     "2b26ef2a-4fc2-4180-b28b-8561630be5ba",     "ad96e8a0-bc9c-415b-8f05-7a150fefa928"  ]
}
POST /v2/assets/send_messages

Request

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

A json object containing a list of asset IDs; maximum of 20.

Response

Status Code

  • OK

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get an asset

Use this API to retrieve an asset located in catalog or project. Access to an asset is controlled by a combination of the privacy level and the members of the asset. For a governed catalog, data assets are protected from unauthorized access by the governance policies that are defined in Data Catalog. Data assets in ungoverned catalogs are not subject to governance policies.

GET /v2/assets/{asset_id}

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

  • Whether to allow access to metadata when the evaluation outcome of data protection rules is Deny.

  • The parameter include is deprecated, please use exclude instead

  • Exclude columns from the asset result. Available value: columns. Default value is empty, which will return the complete asset, including the columns.

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Marks an existing asset for delete

Use this API to delete an existing asset.

Permissions Required to Delete an Asset

To delete an asset in a project or space, all of the following must hold:

  • Caller must have the EDITOR or ADMIN role in the project/space

To delete a public asset in a catalog, any of the following must hold:

  • Caller must have the ADMIN role in the catalog
  • Caller must have the EDITOR role in the catalog and caller must have either the OWNER or EDITOR role on the asset

To delete a private asset in a catalog, all of the following must hold:

  • Caller must have either the ADMIN or EDITOR role in the CATALOG
  • Caller must have either the OWNER, EDITOR, or VIEWER role in the asset
DELETE /v2/assets/{asset_id}

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • If true, asset is also deleted from the trash.

    Default: false

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update an asset

Overview

Use this API to update certain metadata fields in assets.

Fields that can be patched:

  • /metadata/name
  • /metadata/description
  • /metadata/tags
  • /metadata/origin_country
  • /metadata/resource_key
  • /metadata/identity_key
  • /metadata/source_system/last_modification_timestamp, Expected Format: yyyy-MM-ddTHH:mm:ssX
  • /metadata/child_source_systems/{idx}/last_modification_timestamp, Expected Format: yyyy-MM-ddTHH:mm:ssX
  • /metadata/source_system_history - array, use add operation with path /metadata/source_system_history/- to append a new element
  • /metadata/rov/collaborator_ids
  • /metadata/rov/member_roles
  • /metadata/rov/member_roles/{iam id}/roles - array, allowed values are OWNER/EDITOR/VIEWER, see below for details

Updating Asset Collaborators and Owners

Either the metadata/rov/collaborator_ids field or the metadata/rov/member_roles field can be updated, but not both.

The collaborator_ids field shown in the asset is derived from the information in member_roles, so updating one of these fields will automatically update the other. The collaborator_ids field shows the members in the member_roles field that have either the asset editor role or the asset viewer role. This field is present for backward compatibility with earlier versions of the catalog service.

Collaborators added to the metadata/rov/collaborator_ids field will be assigned a default asset role based on their role in the catalog. Catalog editors will be assigned the asset editor role, and Catalog viewers will be assigned the asset viewer role.

Users added to the metadata/rov/member_roles present must have either the OWNER role, the OWNER role and EDITOR role, or the OWNER role and VIEWER role. Other combinations of roles are not allowed. Asset users with the VIEWER or EDITOR role must be members of the catalog. In addition, asset users with the OWNER role must also be members if the catalog with either the EDITOR or ADMIN role unless certain service ids are used. For projects and spaces, new owners must have a role in the project/space.

Permissions Required to Modify Asset

To update non-governed fields an asset in a project or space, all of the following must hold:

  • Caller must have the EDITOR or ADMIN role in the project/space

To update non-governed fields in a private asset in a catalog, all of the following must hold:

  • Caller must have either the ADMIN or EDITOR role in the CATALOG
  • Caller must have either the OWNER, EDITOR, or VIEWER role in the asset

To update non-governed fields in a public asset in a catalog, any of the following must hold:

  • Caller must have the ADMIN role in the CATALOG
  • Caller must have the EDITOR role in the CATALOG and caller must have either the OWNER or EDITOR role in the asset

Permissions required to modify governed metadata fields

The "tags" field is the only governed field. For governed catalogs a policy check is made to determine whether updates to it are allowed and if an asset transformation is needed. The outcome of the policy check can either be "ALLOW", "DENY", or "TRANSFORM"

  • If the outcome is "ALLOW", the operation is allowed if the caller has either the "ADMIN" or "EDITOR" catalog role
  • If the outcome is "TRANSFORM", the permission checks described above for non-governed fields are applied
  • If the outcome is "DENY", permission is not granted to update the asset

Allowed Operations

The combination of asset roles and catalog roles determines what asset operations are allowed by users.

These abilities apply to public assets:

  • All members of the catalog can find the asset and see its properties.
  • All members of the catalog who have the Editor, Auditor, or Admin roles can use the asset.

These abilities apply to private assets:

  • All asset collaborators can find the asset and see its properties. Asset collaborators with the Editor, Auditor, or Admin role can use the asset.
PATCH /v2/assets/{asset_id}

Request

Custom Headers

  • Allowable values: [application/json,application/json-patch+json]

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Action to take if the changes to an asset would make it a duplicate to other assets. IGNORE means the call will continue and update the asset anyway; as a result, the asset will become a duplicate to other assets. REJECT means the call will fail and the asset will not be changed. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT]

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

  • Exclude columns from the asset result. Available value: columns. Default value is empty, which will return the complete asset, including the columns.

JSON array of patch operations as defined in RFC 6902. See http://jsonpatch.com/ for more info.
Note:
Any ‘~’ characters need to be escaped as ~0 in the path field.
Any ‘/’ characters need to be escaped as ~1 in the path field.
For example, in {"foo/" : {"~bar" : "value"}}, the path for "~bar" is "/foo~1/~0bar".

Response

Status Code

  • OK

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Clone an asset

Use this API to clone catalog asset to project. This will create new copy of asset metadata, including asset attachments.

POST /v2/assets/{asset_id}/clone

Request

Path Parameters

  • asset_id

Query Parameters

  • catalog_id must be provided

  • Action to take if the call would result in a duplicate asset. IGNORE means the call will ignore the duplicate and create a new asset. REJECT means the call will fail and no asset will be created. UPDATE means the best matched duplicate will be updated with the incoming changes according to the predefined rules. REPLACE means the best matched duplicate will be overwritten with the input values according to the predefined rules. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT,UPDATE,REPLACE]

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Request body should include project ID, and may include asset permissions override.

{
  "project_id": "string",
  "member_roles": {
    "Member's IAM ID": {
       "user_iam_id": "Member's IAM ID",
       "roles": ["EDITOR"]
    },
    "Access Group ID": {
       "access_group_id": "Access Group ID",
       "roles": ["VIEWER"]
    },
    "Another IAM ID": {
      ...
    }
  }
}

Field 'member_roles' is optional.

  • If specified, 'member_roles' apply to newly cloned asset.
  • If not supplied, newly cloned asset gets 'member_roles' from its source asset.
  • If caller doesn't have permissions to set any of the roles then 'member_roles' is completely ignored.
  • If supplied, 'member_roles' should include at least one OWNER role.
  • If caller has only EDITOR role on the source asset and if 'member_roles' does not include all the owners of the source asset then it will be ignored.

'project_id' is the target project id.

Response

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Add/Update asset collaborators

Overview

This API adds and removes users as collaborators and owners on an asset. A collaborator or owner is identified by user ID. Note that access groups are not supported as asset collaborators or owners. Access groups can be configured as catalog members.

Either the metadata/rov/collaborator_ids field or the metadata/rov/member_roles field can be updated, but not both. The collaborator_ids field shown in the asset is derived from the information in member_roles, so updating one of these fields will automatically update the other. The collaborator_ids field shows the members in the member_roles field that have either the asset editor role or the asset viewer role. This field is present for backward compatibility with earlier versions of the catalog service.

Collaborators added to the metadata/rov/collaborator_ids field will be assigned a default asset role based on their role in the catalog. Catalog editors will be assigned the asset editor role, and Catalog viewers will be assigned the asset viewer role.

Users added to the metadata/rov/member_roles present must have either the OWNER role, the OWNER role and EDITOR role, or the OWNER role and VIEWER role. Other combinations of roles are not allowed. Asset users with the VIEWER or EDITOR role must be members of the catalog. In addition, asset users with the OWNER role must also be members of the catalog with either the EDITOR or ADMIN role unless certain service ids are used. For projects and spaces, new owners must have a role in the project/space.

Permissions Required to Modify Asset Members

To add or remove asset owners for a private asset in a catalog, any of the following must hold:

  • Caller must have OWNER role on the asset
  • Caller must have the ADMIN role on catalog and caller must have either the OWNER, EDITOR, or VIEWER role in the asset

To add or remove asset owners for a public asset in a catalog, any of the following must hold:

  • Caller must have OWNER role on the asset
  • Caller must have the ADMIN role in the catalog

To add or remove asset collaborators, other than asset owner, for a private asset in a catalog, any of the following must hold:

  • Caller must have OWNER role on the asset
  • Caller must have EDITOR role on the asset
  • Caller must have the ADMIN role on catalog and caller must have either the OWNER, EDITOR, or VIEWER role in the asset

To add or remove asset collaborators, other than asset owner, for a public asset in a catalog, any of the following must hold:

  • Caller must have OWNER role on the asset
  • Caller must have EDITOR role on the asset
  • Caller must have the ADMIN role on catalog

Allowed Operations

The combination of asset roles and catalog roles determines what asset operations are allowed by users.

These abilities apply to public assets:

  • All members of the catalog can find the asset and see its properties.
  • All members of the catalog who have the Editor, Auditor, or Admin catalog roles can use the asset.

These abilities apply to private assets:

  • All asset collaborators can find the asset and see its properties. Asset collaborators with the Editor, Auditor, or Admin catalog role can use the asset.
PATCH /v2/assets/{asset_id}/collaborators

Request

Custom Headers

  • Allowable values: [application/json,application/json-patch+json,application/merge-patch+json]

Path Parameters

  • Asset GUID

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

  • Exclude columns from the asset result. Available value: columns. Default value is empty, which will return the complete asset, including the columns.

JSON array of patch operations as defined in RFC 6902. See http://jsonpatch.com/ for more info.

[{
         "op": "add",
         "path": "/metadata/rov/collaborator_ids/test-iam-id",
         "value": {
             "user_id": "test@us.ibm.com",
             "user_iam_id": "test-iam-id"
         }
     },
     {
         "op": "replace",
         "path": "/metadata/rov/collaborator_ids/test-iam-id",
         "value": {
             "user_id": "test2-iam-id",
             "user_iam_id": "test-iam-id"
         }
     },
     {
         "op": "remove",
         "path": "/metadata/rov/collaborator_ids/test2-iam-id"
     }
 ]

(DEPRECATED)

[{
        "op": "add",
        "path": "/metadata/rov/collaborators/test@us.ibm.com",
        "value": {
            "user_id": "test@us.ibm.com"
        }
    },
    {
        "op": "replace",
        "path": "/metadata/rov/collaborators/test@us.ibm.com",
        "value": {
            "user_id": "test2@us.ibm.com"
        }
    },
    {
        "op": "remove",
        "path": "/metadata/rov/collaborators/test2@us.ibm.com"
    }
]

Note: Any ‘~’ characters need to be escaped as ~0 in the path field. Any ‘/’ characters need to be escaped as ~1 in the path field. For example, in {"foo/" : {"~bar" : "value"}}, the path for "~bar" is /foo~1/~0bar.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Conflict

  • Unprocessable Entity

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deep copies an asset and its related assets to a catalog, project, or space

Use this API to deep copy an asset to a project, catalog, or space. Unlike clone, publish, and promote, this API enables cascading the copy operation to referenced assets.

When copying from a project to a space, the on_promote relationship option is used to determine whether the related assets for a given relationship type should be copied. In addition, you must have Admin or Editor permissions on both the project and the space.

Deep copy sends the same Rabbit MQ messages as clone, publish, and promote. Messages are sent for all assets that are copied.

This API supports copying from a project to a catalog (publish), from a project to a space (promote), and from a catalog to a project (clone).

This API supports using a refresh token in place of an access token. This can be helpful if the deep copy is expected to be a long running operation. The deep copy uses the access token to authenticate with other services, so it is important that it not expire while the operation is in progress.When a refresh token is specified, it is used to generate an initial access token as well as additional access tokens if the initial access token expires

POST /v2/assets/{asset_id}/deepcopy

Request

Path Parameters

  • asset_id

Query Parameters

  • project_id

  • catalog_id

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

  • Action to take if the call would result in a duplicate asset. IGNORE means the call will ignore the duplicate and create a new asset. REJECT means the call will fail and no asset will be created. UPDATE means the best matched duplicate will be updated with the incoming changes according to the predefined rules. REPLACE means the best matched duplicate will be overwritten with the input values according to the predefined rules. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT,UPDATE,REPLACE]

Request body should include target (container) ID, and may include asset permissions and metadata overrides. Fields 'mode' and 'member_roles' are optional.

  • If specified, they apply to newly copied (target) assets.
  • If not supplied, newly copied asset gets mode and 'member_roles' from its corresponding source asset.
  • Valid values for 'mode' are 0 (public), 8 (private) and 16 (hidden).
  • If caller doesn't have permissions to set any of the roles then 'member_roles' is completely ignored.
  • If supplied, 'member_roles' should include at least one OWNER role.

'space_id' is the target space ID i.e. target container ID.

'metadata' is optional and may contain attributes to overwrite the values in original asset;currently only name, description and tags may be overwritten.

Examples:
example request

Response

Status Code

  • OK - indicates the deep copy operation has completed - the asset and its related assets (if applicable) have been fully copied to the target container

  • Accepted - indicates that the copy request is being completed in the background.

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update the owner of an asset

Use this API to assign new owner of an asset. You must be the current owner of the asset or a collaborator of the asset with Admin permissions to change the owner. If the asset has multiple owners and the specified user is not currently an owner, the last owner in the owner list (which is the one shown in the owner_id field) is replaced with the specified owner. If the specified user is already an owner of the asset, the user is moved to the end of the owner list so that it is reported in the owner_id field.

PUT /v2/assets/{asset_id}/owner

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

  • Exclude columns from the asset result. Available value: columns. Default value is empty, which will return the complete asset, including the columns.

Asset Owner

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update privacy settings of an asset

Use this API to change privacy settings on an asset.

  • The owner of the asset or asset collaborators with the Admin role can change the owner of the asset or delete the asset.
  • Asset collaborators with the Editor, Auditor, or Admin role can change the asset members or the privacy setting.
PUT /v2/assets/{asset_id}/perms

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

  • Exclude columns from the asset result. Available value: columns. Default value is empty, which will return the complete asset, including the columns.

Asset ROV

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Promote an asset

Use this API to promote project assets to space. You must have Admin or Editor permissions on both the project and the space.

POST /v2/assets/{asset_id}/promote

Request

Path Parameters

  • asset_id

Query Parameters

  • project_id must be provided

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

  • Action to take if the call would result in a duplicate asset. IGNORE means the call will ignore the duplicate and create a new asset. REJECT means the call will fail and no asset will be created. UPDATE means the best matched duplicate will be updated with the incoming changes according to the predefined rules. REPLACE means the best matched duplicate will be overwritten with the input values according to the predefined rules. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT,UPDATE,REPLACE]

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Request body should include space ID, and may include asset permissions and metadata overrides. Fields 'mode' and 'member_roles' are optional.

  • If specified, they apply to newly promoted asset.
  • If not supplied, newly promoted asset gets mode and 'member_roles' from source asset.
  • Valid values for 'mode' are 0 (public), 8 (private) and 16 (hidden).
  • If caller doesn't have permissions to set any of the roles then 'member_roles' is completely ignored.
  • If supplied, 'member_roles' should include at least one OWNER role.
  • If caller has only EDITOR role on the source asset and if 'member_roles' does not include all the owners of the source asset then it will be ignored.

'space_id' is the target space id.'

metadata' is optional and may contain attributes to overwrite the values in original asset; currently only name, description and tags may be overwritten.

Examples:
example request

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Publish an asset

Use this API to publish project assets to catalog. You can publish data assets from a project into a catalog. You must have Admin or Editor permissions on both the project and the catalog.

POST /v2/assets/{asset_id}/publish

Request

Path Parameters

  • asset_id

Query Parameters

  • project_id must be provided

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

  • Action to take if the call would result in a duplicate asset. IGNORE means the call will ignore the duplicate and create a new asset. REJECT means the call will fail and no asset will be created. UPDATE means the best matched duplicate will be updated with the incoming changes according to the predefined rules. REPLACE means the best matched duplicate will be overwritten with the input values according to the predefined rules. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT,UPDATE,REPLACE]

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Request body should include catalog ID, and may include asset permissions and metadata overrides. Fields 'mode' and 'member_roles' are optional.

  • If specified, they apply to newly published asset.
  • If not supplied, newly published asset gets mode and 'member_roles' from source asset.
  • Valid values for 'mode' are 0 (public), 8 (private) and 16 (hidden).
  • If caller doesn't have permissions to set any of the roles then 'member_roles' is completely ignored.
  • If supplied, 'member_roles' should include at least one OWNER role.
  • If caller has only EDITOR role on the source asset and if 'member_roles' does not include all the owners of the source asset then it will be ignored.

'catalog_id' is the target catalog id. To support backwards compatibility when it is not supplied, the asset is published to the catalog associated with the project.

'metadata' is optional and may contain attributes to overwrite the values in original asset; currently only name, description and tags may be overwritten.

Examples:
request

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Finds related assets

Finds assets related to a given asset or a given governance artifact. This API supports limiting the results to a specific set of relationships as well as providing pagination and sorting options.

Finds assets and artifacts related to an asset:

  • One of the {catalog_id, project_id, space_id} must be specified.
  • asset_id must be specified.
  • artifact_id and artifact_type cannot be specified.

Finds assets related to an artifact:

  • artifact_id and artifact_type must be specified.
  • asset_id and container id cannot be specified.

Finds assets and artifacts related to a column:

  • One of the {catalog_id, project_id, space_id} must be specified.
  • asset_id must be specified. asset_id should be in the format of <asset_id>#COLUMN#<column_identifier>
  • artifact_id and artifact_type cannot be specified.



Note:When self references are present (i.e. when the source and target asset in the relationship are the same), more rows than specified by the limit may be returned. When this happens, the total rows reported is accurate and the bookmark points to next page of results.

POST /v2/assets/get_relationships

Request

Query Parameters

  • Catalog ID

  • Project ID

  • Space ID

  • Asset ID

  • Artifact ID

  • Artifact Type

  • Related Asset Types

  • Related Artifact Types

  • bookmark

  • limit. Defaults to 25

    Default: 25

  • orderby. This parameter can be repeated to add additional sort fields.

    Default: update_time_asc

    Supported sort fields (these are case insensitive):

    • create_time_asc
    • create_time_desc
    • update_time_asc
    • update_time_desc
    • creator_id_asc
    • creator_id_desc
    • updater_id_asc
    • updater_id_desc

    Default: update_time_asc

  • Limits results to only include the specified relationships. By default, all relationships are included. Repeat the query parameter to specify multiple relationship names.

  • Whether to lookup the asset names. This adds overhead, so only set this to true if the asset names are required. Defaults to false.

    Default: false

  • Whether to lookup the artifact names. This adds overhead, so only set this to true if the artifact names are required. Defaults to false.

    Default: false

  • Whether to lookup the container names. This adds overhead, so only set this to true if the asset names are required. Defaults to false.

    Default: false

  • (DEPRECATED) Whether to return relationships where target end is a column for the given source asset, artifact, or column. This parameter is deprecated. Use 'include_target_columns' instead.

    Default: false

  • Whether to return relationships where target end is a column for the given source asset, artifact, or column.

    Default: false

  • Whether to return relationships where source end is either the given asset or a column of the given asset. When this parameter set to 'true', 'include_target_columns' must also be set to 'true'. By this, all relationships of asset-asset, asset-column, asset-artifact, column-asset, column-column, column-artifact will be returned.Use this parameter when 'asset_id' refers to an asset which has columns.

    Default: false

Response

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Searches for relationships

Finds relationships that match the specified criteria. There are two general kinds of criteria that can be used: criteria that at least one relationship end must match and criteria that the overall relationship must match.

Specifying conditions that at least one end of the relationship must match

There are three different conditions of this type that can be specified:

  • relationship name - limits results to relationships with the specified name(s)

  • Required object criteria:

    • required artifact — must specify artifact_type and artifact_id
    • required asset - must specify asset_id and one of: catalog_id, project_id, space_id
    • required asset container - must specify one of: catalog_id, project_id, space_id
    • Only one type of required object criteria can be used
  • Opposite end criteria:

    • related_asset_types - specifies that opposite end must have one of the specified asset types
    • related_artifact_types - specifies that opposite end must have one of the specified artifact types
    • related_asset_types and related_artifact_types can be used together to specify that the opposite end must have either the specified asset or artifact types

Specifying global conditions that the overall relationship much match:

There are 2 global conditions that can be specified:

  • modified_after - Restricts results to relationships created/updated after a specific date and time
  • modified_before - Restricts results to relationships created/updated before a specific date and time
  • modified_after and modified_before can be used together to filter for relationships created/updated within a specific time window.
POST /v2/assets/search_relationships

Request

Query Parameters

  • Catalog ID. Specifies that a specific catalog_id must be in the returned relationships. If filtering by asset container, either catalog_id, project_id, or space_id must be specified.

  • Project ID. Specifies that a specific project_id must be in the returned relationships. If filtering by asset container, either catalog_id, project_id, or space_id must be specified.

  • Space ID. Specifies that a specific space_id must be in the returned relationships. If filtering by asset container, either catalog_id, project_id, or space_id must be specified.

  • Asset ID. Specifies that a specific asset must be in the returned relationships If specified, either catalog_id, project_id, or space_id must also be specified.

  • Artifact ID. Specifies that a specific artifact must be in the returned relationships. If specified, artifact_type must also be specified

  • Artifact Type. Required if artifact_id is specified

  • Related Asset Types. Filters the result to include relationships based on their target asset type. The parameter can be repeated to specify multiple asset types. If both related_artifact_types and related_asset types are omitted, all target types are included in the result.

  • Related Artifact Types. Filters the result to include relationships based on their target artifact type. The parameter can be repeated to specify multiple artifact types. If both related_artifact_types and related_asset types are omitted, all target types are included in the result.

  • bookmark

  • limit. Defaults to 25

    Default: 25

  • orderby. This parameter can be repeated to add additional sort fields.

    Default: update_time_asc

    Supported sort fields (these are case insensitive):

    • create_time_asc
    • create_time_desc
    • update_time_asc
    • update_time_desc
    • creator_id_asc
    • creator_id_desc
    • updater_id_asc
    • updater_id_desc

    Default: update_time_asc

  • Limits results to only include the specified relationships. By default, all relationships are included. Repeat the query parameter to specify multiple relationship names.

  • Whether to lookup the asset names. This adds overhead, so only set this to true if the asset names are required. Defaults to false.

    Default: false

  • Whether to lookup the artifact names. This adds overhead, so only set this to true if the artifact names are required. Defaults to false.

    Default: false

  • Whether to lookup the container names. This adds overhead, so only set this to true if the asset names are required. Defaults to false.

    Default: false

  • Includes relationships modified after this date/time - specified in ISO-8601 format (examples: 2022-09-01T14:32:17Z, 2022-09-01T14:32:17.802Z). This can be used in conjunction with modified_before to specify a required modification time window.

  • Includes relationships modified before this date/time - specified in ISO-8601 format (examples: 2022-09-01T14:32:17Z, 2022-09-01T14:32:17.802Z). This can be used in conjunction with modified_after to specify a required modification time window.

  • (DEPRECATED) Whether to return relationships where target end is a column for the given source asset, artifact, or column. This parameter is deprecated. Use 'include_target_columns' instead.

    Default: false

  • Whether to return relationships where target end is a column for the given source asset, artifact, or column.

    Default: false

  • Whether to return relationships where source end is either the given asset or a column of the given asset. When this parameter set to 'true', 'include_target_columns' must also be set to 'true'. By this, all relationships of asset-asset, asset-column, asset-artifact, column-asset, column-column, column-artifact will be returned.Use this parameter when 'asset_id' refers to an asset which has columns.

    Default: false

Response

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create asset relationships

Use this API to create up to 20 asset relationships.

  • The relationship name must correspond to a relationship type defined on the source type.
  • The source must be an asset, column or governance artifact of the type specified in the relationship type definition.
    Relationships created with a governance artifact as the source cannot be retrieved, modified, or deleted in the IKC UI.
    These relationships can only be accessed through API calls such as POST /v2/assets/search_relationships, POST /v2/assets/get_relationships, and POST /v2/assets/unset_relationships.
  • The target must be an asset, column or governance artifact of the type specified in the relationship type definition.
  • If the specified relationship does not exist between a source and target, a new relationship is created.
  • If either end of the relationship is defined as multiplicity-one, any existing value of a multiplicity-one end is replaced.

For Asset

  • The asset_id and one of the {catalog_id, project_id, space_id} must be set

For Column

  • The asset_id and one of the {catalog_id, project_id, space_id} must be set
  • The asset_id of a column must be in the format of <asset_id>#COLUMN#<column_identifier>

For Artifact

  • The artifact_id and artifact_type must be set. Use the global id of the artifact for artifact_id
POST /v2/assets/set_relationships

Request

relationships

Response

Status Code

  • Check response body for results of processing each target artifact

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes asset relationships

Use this API to delete up to 20 asset relationships.

  • The relationship name must correspond to a relationship type defined on the source type.
  • The source must be an asset or governance artifact of the type specified in the relationship type definition.
  • The target must be an asset or governance artifact of the type specified in the relationship type definition.
  • If the specified relationship does not exist between the source and the target, it will be ignored.

For Asset

  • The asset_id and one of the {catalog_id, project_id, space_id} must be set

For Column

  • The asset_id and one of the {catalog_id, project_id, space_id} must be set
  • The asset_id of a column must be in the format of <asset_id>#COLUMN#<column_identifier>

For Artifact

  • The artifact_id and artifact_type must be set
POST /v2/assets/unset_relationships

Request

relationships

Response

Status Code

  • Check response body for status of each asset relationships being deleted.

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Finds relationship types used by an asset

Finds relationship types that are used by a given asset. This API only returns the first page of results. It does not accept a bookmark. Any additional pages of results must be be fetched using the next page url included in the response.

You can refer to the options in the response to get the full list of relationship names.

This API is deprecated - use POST /v2/assets/search_relationships instead.

GET /v2/assets/{asset_id}/relationship_types

Request

Path Parameters

  • Asset ID

Query Parameters

  • Catalog ID

  • Project ID

  • Space ID

  • Optional limit to use when finding relationship types

    Default: 25

  • orderby. This parameter can be repeated to add additional sort fields.

    Default: relationship_display_name_asc

    Supported sort fields (these are case insensitive):

    • relationship_name_asc
    • relationship_name_desc
    • relationship_display_name_asc
    • relationship_display_name_desc
    • create_time_asc
    • create_time_desc

    Default: relationship_display_name_asc

Response

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Too Many Requests

No Sample Response

This method does not specify any sample responses.

Finds related assets

Finds assets related to a given asset. This API supports limiting the results to a specific set of relationships as well as providing pagination and sorting options.

Note:When self references are present (i.e. when the source and target asset in the relationship are the same), more rows than specified by the limit may be returned. When this happens, the total rows reported is accurate and the bookmark points to next page of results.

This API is deprecated - use POST /v2/assets/get_relationships instead.

GET /v2/assets/{asset_id}/relationships

Request

Path Parameters

  • Asset ID

Query Parameters

  • Catalog ID

  • Project ID

  • Space ID

  • bookmark

  • limit. Defaults to 25

    Default: 25

  • orderby. This parameter can be repeated to add additional sort fields.

    Default: update_time_asc

    Supported sort fields (these are case insensitive):

    • create_time_asc
    • create_time_desc
    • update_time_asc
    • update_time_desc
    • creator_id_asc
    • creator_id_desc
    • updater_id_asc
    • updater_id_desc

    Default: update_time_asc

  • Limits results to only include the specified relationships. By default, all relationships are included. Repeat the query parameter to specify multiple relationship names.

  • Whether to lookup the asset names. This adds overhead, so only set this to true if the asset names are required. Defaults to false.

    Default: false

  • Whether to lookup the container names. This adds overhead, so only set this to true if the asset names are required. Defaults to false.

    Default: false

Response

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create asset relationships

Use this API to create relationships between a source asset and up to 20 target artifacts.

  • The relationship name must correspond to a relationship type defined on the source asset's type.
  • The target artifacts must be assets of the type specified in the relationship type definition.
  • If the specified relationship does not exist between a source and target asset, a new relationship is created.
  • If either end of the relationship is defined as multiplicity-one, any existing value of a multiplicity-one end is replaced.

This API is deprecated - use POST /v2/assets/set_relationships instead.

PUT /v2/assets/{asset_id}/relationships/{relationship_name}

Request

Path Parameters

  • Asset ID

  • Name of relationship defined on the source asset type

Query Parameters

  • Catalog ID

  • Project ID

  • Space ID

Target artifacts

Response

Status Code

  • Check response body for results of processing each target artifact

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes asset relationships

Use this API to remove a relationship between an asset and one or more target artifacts. The relationship name must correspond to a relationship type defined on the source asset's type. If the specified relationship does not exist between the source and one or more target assets, it will be ignored. For this api, all of the relationship targets need to be in the same catalog, project, or space. If the target space/catalog/project is omitted, it is assumed to be the same as the source.

This API is deprecated - use POST /v2/assets/unset_relationships instead.

DELETE /v2/assets/{asset_id}/relationships/{relationship_name}

Request

Path Parameters

  • Source Asset Id

  • Name of relationship defined on the source asset type

Query Parameters

  • target asset id. To delete multiple relationships, this parameter can be repeated.

  • Source Asset Catalog

  • Source Asset Project

  • Source Asset Space

  • Target Asset Catalog

  • Target Asset Project

  • Target Asset Space

Response

Status Code

  • OK. Check response body for results of processing each target artifact

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Determine if a relationship exists between an asset and a target artifact

Use this API to determine if a relationship exists between an asset and a target artifact. The relationship name must correspond to a relationship type defined on the source asset's type. The target artifact must be an asset of the type specified in the relationship type definition. The source and target assets must reside in the same catalog.

HEAD /v2/assets/{asset_id}/relationships/{relationship_name}

Request

Path Parameters

  • Asset ID

  • Name of relationship defined on the source asset type

Query Parameters

  • Catalog ID

  • Project ID

  • Space ID

Target artifact

Response

Status Code

  • The relationship exists

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Gone - If either asset in the relationship is in the deleted state

  • Internal Server Error

Create an attachment

Creates an attachment.

POST /v2/assets/{asset_id}/attachments

Request

Path Parameters

  • Asset GUID

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Action to take if the changes to an asset would make it a duplicate to other assets. IGNORE means the call will continue and update the asset anyway; as a result, the asset will become a duplicate to other assets. REJECT means the call will fail and the asset will not be changed. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT]

Attachment meta-data.
The "asset_type" is required.
The "mime" is a reliable way to indicate the nature and format of the attachment. It should be used instead of other implementation-specific means, e.g., file extension.
If not supplied, or if the value given is less than 1, data_partitions defaults to 1 (for non-remote and non-referenced attachments).
For remote attachments, both connection_id and connection_path are required.
For referenced attachments, both object_key and object_key_is_read_only are required.

Response

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get an attachment

Retrieve an attachment.

GET /v2/assets/{asset_id}/attachments/{attachment_id}

Request

Path Parameters

  • Asset GUID

  • Attachment GUID

Query Parameters

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • private_url

    Default: false

  • response-content-disposition

  • response-content-type

  • Whether to allow access to metadata when the evaluation outcome of data protection rules is Deny.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete an attachment

Delete an attachment.

DELETE /v2/assets/{asset_id}/attachments/{attachment_id}

Request

Path Parameters

  • Asset GUID

  • Attachment GUID

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Action to take if the changes to an asset would make it a duplicate to other assets. IGNORE means the call will continue and update the asset anyway; as a result, the asset will become a duplicate to other assets. REJECT means the call will fail and the asset will not be changed. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT]

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update attachment metadata

Update attachment metadata. Only the following fields are allowed to update:

  • name
  • description
  • mime
  • size
  • partitions
  • transfer_complete
PATCH /v2/assets/{asset_id}/attachments/{attachment_id}

Request

Custom Headers

  • Allowable values: [application/json,application/json-patch+json,application/merge-patch+json]

Path Parameters

  • Asset GUID

  • Attachment GUID

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

JSON array of patch operations as defined in RFC 6902. See http://jsonpatch.com/ for more info.
[ { "op": "add", "path": "/name", "value": "my_attachment"},
{ "op": "replace", "path": "/mime", "value": "text/csv" },
{ "op": "remove", "path":"/description"} ]
Note:

  1. Any ‘~’ characters need to be escaped as ~0 in the path field.
    Any ‘/’ characters need to be escaped as ~1 in the path field.
    For example, in {"foo/" : {"~bar" : "value"}}, the path for "~bar" is "/foo~1/~0bar".
  2. The transfer_complete field can only be set to true if its current value is false and the type of attachment is managed.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Conflict

  • Unprocessable Entity

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Mark an attachment as transfer complete

Marks an attachment as transfer complete.

POST /v2/assets/{asset_id}/attachments/{attachment_id}/complete

Request

Path Parameters

  • Asset GUID

  • Attachment GUID

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Auto update attachment's datasource_type from connection asset

Auto update attachment's datasource_type from connection asset

PATCH /v2/assets/{asset_id}/attachments/{attachment_id}/datasource_type

Request

Path Parameters

  • Asset GUID

  • Attachment GUID

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Conflict

  • Unprocessable Entity

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get resources info for an attachment

Get resources info for an attachment.

GET /v2/assets/{asset_id}/attachments/{attachment_id}/resources

Request

Path Parameters

  • Asset GUID

  • Attachment GUID

Query Parameters

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Whether to allow access to metadata when the evaluation outcome of data protection rules is Deny.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Increase resources for an attachment

Increase resources for an attachment.

PUT /v2/assets/{asset_id}/attachments/{attachment_id}/resources

Request

Path Parameters

  • Asset GUID

  • Attachment GUID

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

attachment resource to increase, e.g. {"data_partitions":5, "private_url":false}

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

List all attributes

Use this API to retrieve all attributes of an asset.

GET /v2/assets/{asset_id}/attributes

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

  • Whether to allow access to metadata when the evaluation outcome of data protection rules is Deny.

  • The parameter include is deprecated, please use exclude instead

  • Exclude columns from the asset result. Available value: columns. Default value is empty, which will return the complete asset, including the columns.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create an attribute

Use this API to create an asset attribute. An attribute is identically named with, and has fields that are partially defined by, an asset type. The name specified in the request payload must match an existing built-in or user-defined asset type.

column_info attribute

The built-in column_info type defines metadata (e.g. description, tags) for columns contained in a data asset which represents a relational database table or columnar data file (e.g. csv file).

Create a column_info asset attribute to add column descriptions and/or tags if that attribute does not already exist on the asset.
Once the column_info attribute has been created, entries can be added, updated, or removed using the PATCH /v2/assets/{asset_id}/attributes/column_info endpoint.

The column_info attribute is a map structure where the key is a column name corresponding to an existing entry in the asset's entity.data_asset.columns array.
For example, here is the request payload to create a column_info attribute that assigns a description and tags to ACCOUNT_HOLDER_ID and NAME columns:

{
  "name": "column_info",
  "entity": {
      "ACCOUNT_HOLDER_ID": {
          "column_description": "Globally unique identifier of the account holder.",
          "column_tags": [
               "identifier",
               "unique_key"
            ]
       },
      "NAME": {
          "column_description": "Full legal name of the account holder.",
          "column_tags": [
              "legal_name"
           ]
      }
    }
}
POST /v2/assets/{asset_id}/attributes

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Action to take if the changes to an asset would make it a duplicate to other assets. IGNORE means the call will continue and update the asset anyway; as a result, the asset will become a duplicate to other assets. REJECT means the call will fail and the asset will not be changed. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT]

Attribute metadata. The "entity" is required.

Response

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get an attribute

Use this API to retrieve an attribute of an asset.

GET /v2/assets/{asset_id}/attributes/{attribute_key}

Request

Path Parameters

  • asset_id

  • attribute_key

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

  • Whether to allow access to metadata when the evaluation outcome of data protection rules is Deny.

  • The parameter include is deprecated, please use exclude instead

  • Exclude columns from the asset result. Available value: columns. Default value is empty, which will return the complete asset, including the columns.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete an attribute

Use this API to delete an attribute of an asset.

DELETE /v2/assets/{asset_id}/attributes/{attribute_key}

Request

Path Parameters

  • asset_id

  • attribute_key

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Action to take if the changes to an asset would make it a duplicate to other assets. IGNORE means the call will continue and update the asset anyway; as a result, the asset will become a duplicate to other assets. REJECT means the call will fail and the asset will not be changed. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT]

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update attributes

Use this API to update/modify an asset attribute.

Updating the column_info attribute

Use this API for updating an existing column_info attribute to set or replace the column_description or column_tags for any column.
Note: Use POST /v2/assets/{asset_id}/attributes to create the column_info attribute if it does not exist on the asset.
Use GET /v2/assets/{asset_id}/attributes/column_info to check the existence of the attribute.

Payload Examples

To add a column_info entry that specifies a description and tags for the INVOICE_ID column:
[{"op":"add","path":"/INVOICE_ID","value":{"column_description":"Unique identifier of the invoice", "column_tags":["tag1", "tag2"]}}]
To add or update a description on the existing column_info entry for the ADDRESS column:
[{"op":"add","path":"/ADDRESS/column_description","value":"customer street address"}]
To unset/remove the ADDRESS column's description:
[{"op": "remove", "path":"/ADDRESS/column_description"}]
To remove the entire column_info entry for the ADDRESS column:
[{"op": "remove", "path":"/ADDRESS"}]
JSON array of patch operations as defined in RFC 6902. See http://jsonpatch.com/ for more info.
Note:
Any ‘~’ characters need to be escaped as ~0 in the path field.
Any ‘/’ characters need to be escaped as ~1 in the path field.
For example, in {"foo/" : {"~bar" : "value"}}, the path for "~bar" is "/foo~1/~0bar".

PATCH /v2/assets/{asset_id}/attributes/{attribute_key}

Request

Custom Headers

  • Allowable values: [application/json,application/json-patch+json]

Path Parameters

  • asset_id

  • attribute_key

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Action to take if the changes to an asset would make it a duplicate to other assets. IGNORE means the call will continue and update the asset anyway; as a result, the asset will become a duplicate to other assets. REJECT means the call will fail and the asset will not be changed. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT]

JSON array of patch operations as defined in RFC 6902.

Response

Status Code

  • Created

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get asset document conflicts

Use this API to retrieve asset document conflicts in database.

GET /v2/assets/{asset_id}/conflicts

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • The number of items to skip before starting to collect the result set

  • The maximum number of items to return

    Default: 10

  • Whether to retrieve conflict revision document content

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete asset document conflicts

Use this API to delete asset document conflicts in database.

DELETE /v2/assets/{asset_id}/conflicts

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

Document conflicts to delete

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get the image of asset

Get the image of asset.

GET /v2/assets/{asset_id}/images

Request

Path Parameters

  • Asset GUID

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

Response

Asset Image Model

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Upload an image for asset

Upload an image for asset. Use this api, you must put the image's binary data to the HTTP body.
For example:
    curl -X "PUT" "api_url" -H "Authorization: $access token" --data-binary "@/image_dir_path/abc.png"

PUT /v2/assets/{asset_id}/images

Request

Path Parameters

  • Asset GUID

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

Response

Asset Image Model

Status Code

  • Uploaded

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete the image of asset

Delete the image of asset.

DELETE /v2/assets/{asset_id}/images/{image_id}

Request

Path Parameters

  • Asset GUID

  • Image id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get asset or column notes

Use this API to retrieve a paginated list of notes from an asset or a column within an asset. Any user who has viewer permission on an asset can retrieve its notes.

GET /v2/assets/{asset_id}/notes

Request

Path Parameters

  • Asset ID

Query Parameters

  • The maximum number of asset/column notes to return.
    The default value is 25. The limit cannot exceed 200.
    Use the next URL from the response to retrieve the next page of notes.

    Default: 25

  • Sorting order.

    The following fields can be used for sorting. Use hyphen prefix (-) for descending order:
    column_name
    created_at
    updated_at

    Default: -updated_at

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Filters the result to include notes on the specified column(s). The parameter should be repeated for each column name.

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

  • Type of notes to include in the search result:

    Note TypeDescription
    ALLInclude all asset and column notes
    ASSETInclude asset notes only - cannot be used with the column_names parameter
    COLUMNInclude column notes only

    Allowable values: [ALL,ASSET,COLUMN]

    Default: ALL

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create notes on an asset

Use this API to create notes for an asset and for columns within an asset. Accredited Service Editors and Viewers, and any user who has edit permission on an asset can create a note.

POST /v2/assets/{asset_id}/notes

Request

Path Parameters

  • Asset ID

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

Asset notes to be created - limited to 20 notes per request

Response

Status Code

  • Check response body for results of processing each requested note

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get an asset or column note

Use this API to retrieve a note from an asset or a column within an asset. Any user who has viewer permission on an asset can retrieve a note.

GET /v2/assets/{asset_id}/notes/{note_id}

Request

Path Parameters

  • Asset ID

  • Note ID

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete an asset or a column note

Use this API to delete an asset or a column note. Accredited Service Editors and Viewers, and any user who has edit permission on an asset can delete a note.

DELETE /v2/assets/{asset_id}/notes/{note_id}

Request

Path Parameters

  • Asset ID

  • Asset or column note ID

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update an asset or column note

Use this API to update a note on an asset or a column within an asset. Accredited Service Editors and Viewers, and any user who has edit permission on an asset can update a note.

PATCH /v2/assets/{asset_id}/notes/{note_id}

Request

Path Parameters

  • Asset ID

  • Note ID

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

JSON array of patch operations as defined in RFC 6902. See http://jsonpatch.com/ for more info.
Example :
[ {"op": "replace", "path": "/note", "value": "Description of a Note" } ]
Note:
Only supported operation is replace.
Any ‘~’ characters need to be escaped as ~0 in the path field.
Any ‘/’ characters need to be escaped as ~1 in the path field.
For example, in {"foo/" : {"~bar" : "value"}}, the path for ~bar is /foo~1/~0bar.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get ratings of an asset

Get ratings for the specified asset.

GET /v2/assets/{asset_id}/ratings

Request

Path Parameters

  • asset_id

Query Parameters

  • The maximum number of asset ratings to return.
    The default value is 25.

    Default: 25

  • Bookmark that gives the start of the page.

  • Sorting order.
    Valid values: updated_at, rating
    Use hyphen prefix (-) for descending order

    Default: -updated_at

  • Filter results by user.
    Valid values: all, user, other
    The default value is all

    Allowable values: [all,user,other]

    Default: all

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Rate an asset

Use this API to rate an asset.

POST /v2/assets/{asset_id}/ratings

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

Asset rating to be created

Response

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get the count of each rating value for the specified asset

Get the counts of each rating value for the specified asset.

GET /v2/assets/{asset_id}/ratings/stats

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete an asset rating

Use this API to delete an asset rating.

DELETE /v2/assets/{asset_id}/ratings/{asset_rating_id}

Request

Path Parameters

  • asset_id

  • asset_rating_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Use this API to update an asset rating.

Update an asset rating

PATCH /v2/assets/{asset_id}/ratings/{asset_rating_id}

Request

Path Parameters

  • asset_id

  • asset_rating_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

Asset rating to be updated

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get a list of revisions for an asset

Use this API to retrieve an ordered list of revisions for an asset, most to least recent.

GET /v2/assets/{asset_id}/revisions

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • The parameter include is deprecated.

  • The maximum number of revisions to return. The default is 25. Maximum is 200

    Default: 25

  • The revision number to start from, or 'latest'. Latest revision is the default.

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Commit a revision of an asset

Use this API to commit a revision of an asset.

POST /v2/assets/{asset_id}/revisions

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Commit options

Response

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete a revision

Use this API to delete a revision of an asset.

DELETE /v2/assets/{asset_id}/revisions

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide a revision id (1, 2, 3, ...)

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Find and repair stuck temporary design documents by creating cache entries that resume their processing

Use this API to find and repair broken indexes

POST /v2/cams/admin/index_repairs

Request

Query Parameters

  • Optionally limits to checking to certain catalogs. For projects and spaces you must use the id of the private catalog. Repeat this parameter to check multiple catalogs. If this is omitted, all catalogs are checked

  • Allows rate limiting the creation of cache entries. To disable rate limiting, set to -1. If set, the operation pauses every time this number of cache entries have been created.

    Default: 50

  • When using cache entry rate limiting, this controls how long the service pauses between creating groups of cache entries.

    Default: 1

  • Allows restricting total the number of cache entries created.

  • Default: true

Response

Status Code

  • Accept, the processing was successfully started

  • Bad Request

  • Unauthorized

  • Forbidden

No Sample Response

This method does not specify any sample responses.

Gets the status of a temporary design document repair operation

Use this API to get the status of the task to find and repair stuck temporary design documents

GET /v2/cams/admin/index_repairs/{id}

Request

Path Parameters

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

No Sample Response

This method does not specify any sample responses.

Reconfigure the asset container

Use this API to reconfigure the asset container. The supported items are:

  • type_search_indexes - reconfigure type search indexes for all asset types. It requires the user to have permission to register asset types.
POST /v2/cams/admin/reconfigure

Request

Query Parameters

  • The item to reconfigure, e.g. type_search_indexes

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

invalidateRoleCacheEntry

DELETE /v2/cams/admin/roles_cache_entry

Request

Query Parameters

  • The id of the user whose role to remove from the cache

    Example: IBMid-0123456ABC

  • The catalog id

  • The project id

  • The space id

Response

Status Code

  • Cache entry was deleted

  • Bad Request

  • Unauthorized

  • Forbidden

  • Cache entry was not found

No Sample Response

This method does not specify any sample responses.

Get metrics of the users who accessed the catalogs

Get metrics of the users who accessed the catalogs.

The caller should use the href returned by the service to navigate through pages and should not try to manually construct URLs for pagination. The href for the first page is always available, and the href for the next page is only available if there may be a next page.

The total_rows field is only available when summary_level is CATALOG.

The caller must be in at least one of the allow-lists based on the product offering to perform the operation: (Note: the WKC product offering represents IBM Knowledge Catalog):

  • DATA_PRODUCT - data_product_account_viewers, data_product_account_managers
  • WATSONX_GOVERNANCE - watsonx_governance_account_viewers, watsonx_governance_account_managers
  • WKC - wkc_account_viewers, wkc_account_managers
GET /v2/cams/metrics/user_access_count

Request

Query Parameters

  • The month of the metrics to retrieve. The value must be in format 'yyyy-MM'. If not supplied, the metrics of the current month is retrieved.

  • The level for aggregating the user access statistics.

    Allowable values: [ACCOUNT,CATALOG]

    Default: ACCOUNT

  • Product offering. If omitted, it is default to WKC.

    Allowable values: [WKC,DATA_PRODUCT,WATSONX_GOVERNANCE]

    Default: WKC

  • Retrieve metrics only for catalogs belonging to any of the given bss accounts. Specify as a comma-separated list.

  • Retrieve metrics only for catalogs with the given ids. Specify as a comma-separated list.

  • The maximum number of items to return. If not specified, it will be set to 200.

    Default: 200

  • Start token for pagination

Response

The user access metrics response API model.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

List all catalogs for a specific account

Use this API to get a list of catalogs or projects or spaces, or to get the total number of public catalogs, for a given account. You can use 'roles' parameter to filter results by roles for standard callers.

  • Standard Callers: to list all catalogs where caller is collaborator, omit "bss_account_id" field and "include" field.
  • Accredited Services: to list all catalogs or projects or spaces for a specific account, enter bss account value in "bss_account_id" field and one of 'catalogs', 'projects', or 'spaces' in "include" field.
  • Accredited Services: to get the number of public catalogs for a specific account, enter bss account value in "bss_account_id" field and 'total_count' in "include" field.
GET /v2/catalogs

Request

Query Parameters

  • limit

    Default: 25

  • bookmark

  • skip

    Default: 0

  • Limited to use by accredited services (which must also supply 'bss_account_id'). Currently, the only supported values are 'catalogs', 'projects', 'spaces' or 'total_count'. Not supplying any of these values results in public 'catalogs', 'projects', AND 'spaces' being returned for a specific account.

    • Use 'catalogs' for including all public catalogs for a specific bss_account_id.
    • Use 'projects' for including all projects for a specific bss_account_id.
    • Use 'spaces' for including all spaces for a specific bss_account_id.
    • Use 'total_count' for including total number of public catalogs for a specific account.
  • "Used for listing catalogs, projects, or spaces for the account, or for retrieving the number of public catalogs for the account. Must be supplied when caller is an accredited service."

    • "If caller is a non-service id user, then the catalogs from that user's bss account are included in the list.
  • Filter results by user roles. Use comma separated list for multiple roles. Valid role value: admin, editor, viewer. This param is not allowed if caller is from accredited service or ICIP mode is enabled.

  • orderby. This parameter can be repeated to add additional sort fields.

    Default: null

    Supported sort fields (these are case insensitive):

    • catalog_name_asc
    • catalog_name_desc
    • create_time_asc
    • create_time_desc
    • update_time_asc
    • update_time_desc
  • (DEPRECATED) Indicates whether results should include catalogs with a subtype. If not specified, catalogs with a subtype are excluded.This parameter is deprecated. Use 'subtype' instead.

  • Filter results by catalogs with the specified subtypes.

    If nothing is specified, by default catalogs with subtype are not returned.

    • If set to 'NO_SUBTYPES', catalogs with subtype are not returned
    • If set to 'ALL_SUBTYPES', only catalogs with a subtype are returned
    • If set to 'ALL_SUBYTPES, NO_SUBTYPES', both catalogs which have subtypes and not are returned
    • If set to 'subtypeA, subtypeB' , only catalogs with those subtypes are returned.
  • Filter results by catalogs with a case insensitive name. This matches substrings.

  • Filter results by catalogs with the specified governance type. Allowed values: governed, ungoverned, all. Default: all

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

No Sample Response

This method does not specify any sample responses.

Create a catalog

Use this API to create a catalog to organize your assets and collaborators. You can use a catalog to easily find and share data for your organization, regardless of the location or format of the data.

On IBM Cloud, to create a catalog you must have the Manager role in your organization's IBM Knowledge Catalog account.
In CPD, to create a catalog you must have the Administrator role.

The catalog name can be 1 to 256 printable Unicode characters - ISO control characters and Unicode Special characters are not permitted.

On IBM Cloud, IBM Cloud Object Storage (S3 API) credentials are required in the request body's bucket structure. This provides encrypted storage for file assets that are copied to the catalog.

In CPD, file asset storage for a catalog is provisioned after catalog creation, via a separate call to the Asset Files API. Creating a catalog does not automatically provision this storage.
When creating a catalog in CPD, set the check_bucket_existence query parameter to false, and the request body's bucket structure should just have bucket_type set to assetfiles.
After the catalog is created, call the PUT /v2/asset_files API to create a bucket for this catalog.

Sample request body for creating a catalog in CPD:

{
    "name": "catalog1",
    "description": "A catalog in CPD",
    "generator": "catalogadmin@mycompany.com",
    "bucket": {
        "bucket_type": "assetfiles"
    }
}
POST /v2/catalogs

Request

Query Parameters

  • Whether an existence check should be performed on the catalog bucket

    Default: true

  • Whether to check if catalogs with the same name already exist

    Default: false

Note: name, generator, and the bucket structure are required fields in the request body.

Response

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Too Many Request

No Sample Response

This method does not specify any sample responses.

Retrieve the default catalog

Use this API to retrieve the default catalog.

GET /v2/catalogs/default

Request

No Request Parameters

This method does not accept any request parameters.

Response

Status Code

  • OK

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Creating the default catalog

Use this API to create the default catalog, optionally configure and start the OMAG server in one call, or configure and start the OMAG server for existing default catalog that didn't have OMAG server configured. Supported use cases:

  • Use case one - the default catalog doesn't exist, and the catalog and event_bus are supplied in the request payload. Create the default catalog, configure and start the OMAG server.
  • Use case two - the default catalog doesn't exist, and only the catalog is supplied in the request payload. Create the default catalog without configuring and starting OMAG server.
  • Use case three - the default catalog exists however didn't have OMAG server configured, and event_bus is supplied in the request payload. Configure and start the OMAG server for the existing default catalog.

Note that the catalog in the request payload is ignored in this case, and the success status code is 200 instead of 201 that would have recieved in other cases.

POST /v2/catalogs/default

Request

Query Parameters

  • Whether an existence check should be performed on the catalog bucket

    Default: true

  • Whether to check if catalogs with the same name already exist

    Default: false

  • Common root of the topics used by the open metadata server.

Example:

{
    "catalog": {
        "name": "The Default Catalog",
        "generator": "Catalog-OMRS-Synced",
        "description": "The default (aka sync) catalog",
        "bss_account_id": "999",
        "is_governed": true,
        "bucket": {
            "bucket_type": "assetfiles"
        }
    },
    "event_bus": {
        "producer": {
            "bootstrap.servers": "kafka:9093",
            "acks": "all",
            "retries": "1",
            "batch.size": "16384",
            "linger.ms": "1",
            "buffer.memory": "33554432",
            "max.request.size": "10485760",
            "key.serializer": "org.apache.kafka.common.serialization.StringSerializer",
            "value.serializer": "org.apache.kafka.common.serialization.StringSerializer"
        },
        "consumer": {
            "bootstrap.servers": "kafka:9093",
            "zookeeper.session.timeout.ms": "300000",
            "zookeeper.sync.time.ms": "2000",
            "fetch.message.max.bytes": "10485760",
            "max.partition.fetch.bytes": "10485760",
            "max.poll.interval.ms": "2000000000",
            "key.deserializer": "org.apache.kafka.common.serialization.StringDeserializer",
            "value.deserializer": "org.apache.kafka.common.serialization.StringDeserializer"
        }
    }
}

Response

Status Code

  • OK OMAG is configured for existing default catalog

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Activate OMRS services on the default catalog

Use this to activate OMRS services on the default catalog, using the stored configuration information.
Applicable only if the default catalog has OMAG server configured.

POST /v2/catalogs/default/instance

Request

No Request Parameters

This method does not accept any request parameters.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deactivate OMRS services on the default catalog

Use this to temporarily deactivate OMRS services on the default catalog. The services can be reactivated using POST /v2/default/instance.
Applicable only if the default catalog has OMAG server configured.

DELETE /v2/catalogs/default/instance

Request

No Request Parameters

This method does not accept any request parameters.

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Rehome one or more synced assets.

Use this API for rehoming assets in the default catalog that had been synced from an external OMRS repository to be native IKC assets. The API supports rehoming a single asset, or a bulk rehome of all synced data assets of specific external repository.
If the request is accepted, the response header contains the rehome request ID x-future-id which can then be used to monitor the request status via /v2/catalogs/default/rehome/status?request_id=<x-future-id>.
Service ID is required to call this API.

POST /v2/catalogs/default/rehome

Request

Query Parameters

  • Set to true to bulk re-home all synced data assets in the default catalog

  • Synced asset to be rehomed - if omitted, all synced assets of source_metadata_collection_id repository will be rehomed

  • Source metadata collection id required if all assets of single external repository need to be rehomed

Response

Status Code

  • Accepted - indicates request has been accepted

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Monitor status of rehome task

Use this API to check the status of a rehome asset(s) request, using the x-future-id response header value returned by a previous /v2/catalogs/default/rehome request.

GET /v2/catalogs/default/rehome/status

Request

Query Parameters

  • x-future-id response header value returned by a previous rehome request

Response

Status Code

  • OK - indicates successful completion of the rehome request

  • Accepted - indicates the rehome request corresponding to the specified request_id is still processing

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get OMRS sync status for the default catalog

Generates a report showing the current status of OMRS sync processing for the default catalog.
Applicable only if the default catalog has OMAG server configured.

GET /v2/catalogs/default/sync_status

Request

Query Parameters

  • timestamp value to start searching for OMRS activity

    Default: 0

  • Time before current time to set start_timestamp (eg 15m, 1h, 3d); ignored if start_timestamp > 0.

  • toggles verbose output - if true, statistics are reported separately for each CAMS service instance

    Default: false

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get a catalog by catalog ID

Members of the catalog can use this API to retrieve information about a catalog.

GET /v2/catalogs/{catalog_id}

Request

Path Parameters

  • Catalog GUID or UID

Query Parameters

  • You must provide bss_account_id when querying for uid

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

No Sample Response

This method does not specify any sample responses.

Delete a catalog by catalog ID

Use this API to delete a catalog if you have the Admin role.Deleting a catalog removes all items that are associated with the catalog, such as metadata for all assets in the catalog.

DELETE /v2/catalogs/{catalog_id}

Request

Path Parameters

  • Catalog GUID

Query Parameters

  • delete_bucket

    Default: false

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

No Sample Response

This method does not specify any sample responses.

Update catalog

Use this API to update the name or description of the catalog.

PATCH /v2/catalogs/{catalog_id}

Request

Custom Headers

  • Allowable values: [application/json,application/json-patch+json]

Path Parameters

  • catalog GUID

Query Parameters

  • Whether to check if catalogs with the same name already exist. Only applicable if the name is to be updated.

    Default: false

JSON array of patch operations as defined in RFC 6902.
[ { "op": "replace", "path": "/entity/name", "value": "new-name" },
{ "op": "replace", "path": "/entity/description", "value": "new-description" } ]
Note:
Any ‘~’ characters need to be escaped as ~0 in the path field.
Any ‘/’ characters need to be escaped as ~1 in the path field.
For example, in {"foo/" : {"~bar" : "value"}}, the path for "~bar" is "/foo~1/~0bar".

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Permanently deactivate OMRS services and unregister from all cohorts

Use this to permanently deactivate OMRS services for a catalog, and unregister the catalog from all OMRS cohorts. The OMRS config document and corresponding registrystore documents for the catalog are deleted.

DELETE /v2/catalogs/{catalog_id}/open-metadata

Request

Path Parameters

  • catalog GUID of the participating catalog

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieve OMRS audit logs

Use this to retrieve the OMRS audit logs for a catalog.

GET /v2/catalogs/{catalog_id}/open-metadata/audit_logs

Request

Path Parameters

  • catalog GUID of the participating catalog

Query Parameters

  • timestamp value to start searching for new messages

    Default: 0

  • Prefix value to filter message_id -- for example, 'OCF-KAFKA' or 'OMRS-AUDIT'.

    Default:

  • Comma delimited values of severity -- OMRSAuditLogRecordSeverity (Error, Exception, Action, Information, Decision, etc.)

    Default:

  • Number of minutes before current time to set start_timestamp; ignored if start_timestamp > 0.

    Default: 0

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Updates PURGE flag in stored messages from OMRS

Clears or sets the PURGED flag in saved OMRS message assets. The set of messages updated is determined by performing a graph traversal starting at the specified guid.

POST /v2/catalogs/{catalog_id}/open-metadata/change_message_asset_purge_status

Request

Path Parameters

  • catalog GUID of the participating catalog

Query Parameters

  • Message asset update mode. Allowed values: MARK_PURGED, MARK_ACTIVE

    Allowable values: [MARK_PURGED,MARK_ACTIVE]

  • OMRS entity guid for which to update the PURGED flag

  • Lookup options for finding message guids to mark ACTIVE. Not allowed if mode is MARK_PURGED. Allowed values: SELF, SELF_AND_FRIENDS, SELF_AND_CHILDREN. SELF only updates the specified guid, SELF_AND_FRIENDS updates the guids and its closely related entity types (for example RelationalColumn is closely related RelationalColumnType), and SELF_AND CHILDREN updates the guid and all of its children within the same asset type. Defaults to SELF_AND_FRIENDS.

    Allowable values: [SELF,SELF_AND_FRIENDS,SELF_AND_CHILDREN]

    Default: SELF_AND_FRIENDS

  • If mode=MARK_ACTIVE, forces reprocessing of the graph in the case where the entity is already in the active state. This may cause previously deleted term assignments to reappear.

    Default: false

  • Whether to reprocess the affected omrs messages after updating their purge flags. Reprocessing these messages can result in synced assets being created, updated or deleted. If reprocess_updated_messages is false, POST /v2/catalogs/{catalog id}/open-metadata/reprocess_messages must be called to apply the updates to the synced assets.

    Default: true

  • If true, previews the result without making any changes. Defaults to true.

    Default: true

  • If true, request is processed in the background. The final result can be retreived from the catalog-api logs in the instance and transaction id indicated in the result.

    Default: false

Response

Status Code

  • OK, if the processing is being done synchronously and was successful

  • Accepted, if the processing is being done

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Configure catalog to participate in an OMRS cohort

Use this to configure a catalog to participate in an OMRS cohort. An OMRS configuration document is created or updated with the specified cohort information.

POST /v2/catalogs/{catalog_id}/open-metadata/cohorts/{cohort_name}

Request

Path Parameters

  • catalog GUID of the participating catalog

  • name of the cohort

Query Parameters

  • common root of the topics used by the open metadata server

name/value pairs used to configure the connection to the event bus connector

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Unregister from an OMRS cohort

Unregister a catalog from an OMRS cohort. Once unregistered, the catalog can no longer send or receive messages from the cohort.

DELETE /v2/catalogs/{catalog_id}/open-metadata/cohorts/{cohort_name}

Request

Path Parameters

  • catalog GUID of the participating catalog

  • name of the cohort

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieve the OMRS Kafka certificate

Use this to retrieve the OMRS Kafka certificate document for a catalog and cohort.

GET /v2/catalogs/{catalog_id}/open-metadata/cohorts/{cohort_name}/certificate

Request

Path Parameters

  • catalog GUID of the participating catalog

  • name of the cohort

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieve the OMRS registry store

Use this to retrieve the OMRS registry store document for a specified catalog and cohort.

GET /v2/catalogs/{catalog_id}/open-metadata/cohorts/{cohort_name}/registrystore

Request

Path Parameters

  • catalog GUID of the participating catalog

  • name of the cohort

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieve the OMRS configuration document

Use this to retrieve the OMRS configuration document for a catalog. The configuration document will contain details about all OMRS cohorts in which the catalog participates.

GET /v2/catalogs/{catalog_id}/open-metadata/configuration

Request

Path Parameters

  • catalog GUID of the participating catalog

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get OMRS entity info

Generates a report showing the known information about the sync status of an OMRS entity

GET /v2/catalogs/{catalog_id}/open-metadata/entity_info

Request

Path Parameters

  • catalog GUID of the participating catalog

Query Parameters

  • OMRS entity guid to lookup

  • Whether to include the asset list in the output

    Default: true

  • Whether to include deleted assets in the output

    Default: false

  • Whether to include the reachability graph in the output

    Default: true

  • Lookup options for getting the entity info.

    OptionDescription
    SELF_AND_PARENTSIncludes the logical OMRS asset that the guid belongs to and its parents. The graph traversal is restricted to a single IKC asset.
    SELF_PARENTS_AND_CHILDRENIncludes the logical OMRS asset that the guid belongs to along with its parents and children. The graph traversal is restricted to a single IKC asset.
    SELF_PARENTS_AND_ALL_CHILDRENIncludes the logical OMRS asset that the guid belongs to along with its parents and children. The graph traversal is NOT restricted to a single IKC asset.
    ALLIncludes all logical OMRS assets that can be reached from the specified guid.

    Allowable values: [SELF_AND_PARENTS,SELF_PARENTS_AND_CHILDREN,SELF_PARENTS_AND_ALL_CHILDREN,ALL]

    Default: SELF_AND_PARENTS

  • Filter for assets to show. Allowed values: NONE, UNSYNCED_ONLY, FAILED_ONLY

    Allowable values: [NONE,UNSYNCED_ONLY,FAILED_ONLY]

    Default: NONE

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

OMRS instance health check

Use this to perform a health check on the OMRS instance for a catalog.

GET /v2/catalogs/{catalog_id}/open-metadata/healthcheck

Request

Path Parameters

  • catalog GUID of the participating catalog

Query Parameters

  • toggles verbose output - if true, event mapper statistics are reported separately for each CAMS service instance

    Default: false

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Activate OMRS services

Use this to activate the OMRS services for a catalog, using the stored configuration information

POST /v2/catalogs/{catalog_id}/open-metadata/instance

Request

Path Parameters

  • catalog GUID of the participating catalog

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deactivate OMRS services

Use this to temporarily deactivate OMRS services for a catalog. The services can be reactivated using POST /v2/{catalog_id}/open-metadata/instance

DELETE /v2/catalogs/{catalog_id}/open-metadata/instance

Request

Path Parameters

  • catalog GUID of the participating catalog

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get OMRS assets that have not yet been propagated into IKC

Gets a list of OMRS asset that have not yet been propagated into IKC. Either connections or data assets can be found.

GET /v2/catalogs/{catalog_id}/open-metadata/pending_assets

Request

Path Parameters

  • catalog GUID of the participating catalog

Query Parameters

  • The type of the asset to find.

    Allowable values: [DATA_ASSET,CONNECTION]

    Default: DATA_ASSET

  • Limit to use when finding pending assets. Defaults to 25

    Default: 25

  • Optional bookmark to use when finding pending assets.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Reprocesses messages from OMRS

Reprocesses messages from OMRS whose processing failed or is incomplete. The set of messages checked is determined by performing a graph traversal starting at the specified guid.

POST /v2/catalogs/{catalog_id}/open-metadata/reprocess_messages

Request

Path Parameters

  • catalog GUID of the participating catalog

Query Parameters

  • OMRS entity guid to reprocess

  • Forces reprocessing of messages for assets previously processed successfully

    Default: false

  • Lookup options for doing the graph traversal.

    Allowable values: [SELF_ONLY,SELF_AND_PARENTS,SELF_PARENTS_AND_CHILDREN,SELF_PARENTS_AND_ALL_CHILDREN,ALL]

    Default: SELF_ONLY

Response

Status Code

  • Accepted

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get OMRS sync status

Generates a report showing the current status of OMRS sync processing for a catalog

GET /v2/catalogs/{catalog_id}/open-metadata/sync_status

Request

Path Parameters

  • catalog GUID of the participating catalog

Query Parameters

  • timestamp value to start searching for OMRS activity

    Default: 0

  • Time before current time to set start_timestamp (eg 15m, 1h, 3d); ignored if start_timestamp > 0.

  • Whether to include instance-specific processing statistics

    Default: false

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

List all properties of a catalog

Use this API to get all properties of catalog.

GET /v2/catalogs/{catalog_id}/properties

Request

Path Parameters

  • catalog GUID

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update catalog properties

Use this API to patch catalog properties.

PATCH /v2/catalogs/{catalog_id}/properties

Request

Custom Headers

  • Allowable values: [application/json,application/json-patch+json]

Path Parameters

  • catalog GUID

JSON array of patch operations as defined in RFC 6902.
[ { "op": "add", "path": "/properties/new-property", "value": "new-value" } ]
Note:
Any ‘~’ characters need to be escaped as ~0 in the path field.
Any ‘/’ characters need to be escaped as ~1 in the path field.
For example, in {"foo/" : {"~bar" : "value"}}, the path for "~bar" is "/foo~1/~0bar".

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get a single property in a catalog

Use this API to get the property of catalog by given property key.

GET /v2/catalogs/{catalog_id}/properties/{property_key}

Request

Path Parameters

  • catalog GUID

  • catalog property key

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update catalog connections

Use this API to patch catalog properties.

PATCH /v2/catalogs/{catalog_id}/reconfigure

Request

Path Parameters

  • catalog GUID

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Conflict

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get the catalog state

GET /v2/catalogs/{catalog_id}/state

Request

Path Parameters

  • Catalog GUID

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

No Sample Response

This method does not specify any sample responses.

Process an import asset

This API begins processing of import assets. This function is used to import lineage mappings from EMD CSV documents.

POST /v2/catalogs/import_assets

Request

Query Parameters

  • The id of the import_asset

  • The action to perform on this import_asset. "process" (default): Validate and run an import job, "validate": Validate an import only without starting an import job.

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • When performing a processing request, proceed with the import even if validation fails. This option is only used when 'action' = 'process' (which is the default case)

  • Action to take if the call would result in a duplicate asset. IGNORE means the call will ignore the duplicate and create a new asset. REJECT means the call will fail and no asset will be created. UPDATE means the best matched duplicate will be updated with the incoming changes according to the predefined rules. REPLACE means the best matched duplicate will be overwritten with the input values according to the predefined rules. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT,UPDATE,REPLACE]

Response

Status Code

  • Accepted

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Request temporary security credentials

Request temporary security credentails that can be used for storing asset attachment files.

The endpoint is currently only applicable for AWS deployments.

If role_arn and external_id are supplied, the caller must be a sevice id in the allow-list 'aws_s3_administrator'. The requested credentials will have permission for accessing the resources in the bucket of the catalog or the bucket itself depending on the supplied information. The allowed combinations of the fields are:

  • role_arn, external_id: list and create buckets in the account that the role is defined in
  • role_arn, external_id, bucket_name, shared (optional, default to false), catalog_id (must be supplied if shared is true): put/get/list/delete objects in the bucket, and list multipart uploads and delete the bucket if the bucket is not shared.

If catalog_id is supplied, the caller must be a member of the catalog, or a service id that is in the allow-list 'aws_s3_administrator', 'accredited_service_editors', 'accredited_service_viewers', or 'accredited_service_exporters'. The requested credentials will have permission for accessing the resources in the bucket of the catalog or the bucket itself based on the membership.

  • admin or service id in allow-list 'aws_s3_administrator': put/get/list/delete objects in the bucket, and list multipart uploads and delete the bucket if the bucket is not shared.
  • editor or service id in allow-list 'accredited_service_editors': put/get/delete objects in the bucket
  • viewer or service id in allow-list 'accredited_service_viewers' or 'accredited_service_exporters': get objects in the bucket

If none of above is supplied, the caller must have permission to create catalogs in the account that the access token is scoped for. The requested credentials will have permission to list and create buckets in the account.

If min_duration_seconds is supplied, the requested temporary credentials must be valid for at least the specified duration. If it is not supplied or if the cached temporary credentials of the same requirement is valid for at least specified duration, the cached credentials will be returned.

Note: when a bucket is shared, the objects in the shared bucket must have the prefix of '{catalog_id}/', e.g. '553fa5a8-bea5-43fa-9f04-b2f5ed39e6d3/myreport.csv'. All the permissions in shared buckets are granted to only allow accesing resources with the prefix of a specific catalog id.

POST /v2/catalogs/temporary_credentials

Request

Request body

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get a catalog-level collection by collection ID

Use this API to retrieve a catalog-level collection in catalog.

GET /v2/catalogs/{catalog_id}/collections/{collection_id}

Request

Path Parameters

  • catalog GUID

  • Collection GUID

Response

Catalog Collection Response Model

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update a catalog-level collection for a catalog

Update a catalog-level collection for a catalog

PUT /v2/catalogs/{catalog_id}/collections/{collection_id}

Request

Path Parameters

  • catalog GUID

  • Collection GUID

Collection updates

Response

Catalog Collection Response Model

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete a catalog-level collection by collection id

Use this API to retrieve a catalog-level collection in catalog.

DELETE /v2/catalogs/{catalog_id}/collections/{collection_id}

Request

Path Parameters

  • catalog GUID

  • Collection GUID

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

List all members of the catalog

Get members for the catalog.

GET /v2/catalogs/{catalog_id}/members

Request

Path Parameters

  • catalog GUID

Query Parameters

  • limit

    Default: 25

  • bookmark

  • member_type

    Allowable values: [user,group,all]

    Default: user

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Add members to a catalog

Adds members to a catalog. A catalog member can be a user (specified as a user name or user ID), a service ID, or an access group.

POST /v2/catalogs/{catalog_id}/members

Request

Path Parameters

  • catalog GUID

Members with roles

Response

MemberSet with partial success result

Status Code

  • OK

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete members from a catalog

Delete members from a catalog.You can delete a member or more if you are the owner of the catalog or a member of the catalog with Admin or Editor permissions on the catalog.

DELETE /v2/catalogs/{catalog_id}/members/bulk

Request

Path Parameters

  • catalog GUID

Query Parameters

  • Comma-separated list of Member GUIDs, with a maximum of 20.

  • Type of the members specified in the member_ids parameter. Specify user or group if all members are user or access group IDs. If member_ids contains a mixture of user or group IDs, then specify all for member_type or alternatively do not specify any value. If member_type is all or not specified, use member_types to indicate the type of each member in member_ids

    Allowable values: [user,group,all]

  • Comma-separated list of types for each member specified in member_ids. The supported types are user and group. If both member_types and member_type parameters are specified, member_types takes precedence over member_type. If member_types is not specified, and member_type is not specified or is all, the API will attempt to determine the member type based on the member ID. In a CPD environment, user and access group IDs are numeric and have no prefix indicating whether the ID represents a user or group ID, so member_types should be specified if member_ids contains a mixture of user and access group IDs

Response

Status Code

  • Check response body for status of each member being deleted

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get catalog membership for a specific user

Returns any memberships this user has on the catalog, including direct membership and any access group memberships.

GET /v2/catalogs/{catalog_id}/members/{member_id}

Request

Path Parameters

  • catalog GUID

  • member ID

Query Parameters

  • Type of the member specified by the member_id. If not specified, the service will determine if the member is a user or an access group based on the member_id, which is not always possible or accurate. Always supplying the member type is recommended.

    Allowable values: [user,group]

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete a member from a catalog

Delete a member from a catalog.

DELETE /v2/catalogs/{catalog_id}/members/{member_id}

Request

Path Parameters

  • catalog GUID

  • Member GUID

Query Parameters

  • Type of the member specified by the member_id. If not specified, the service will determine if the member is a user or an access group based on the member_id, which is not always possible or accurate. Always supplying the member type is recommended.

    Allowable values: [user,group]

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update members in a catalog

Update a member of a catalog.

PATCH /v2/catalogs/{catalog_id}/members/{member_id}

Request

Path Parameters

  • catalog GUID

  • Member GUID

Query Parameters

  • Type of the member specified by the member_id. If not specified, the service will determine if the member is a user or an access group based on the member_id, which is not always possible or accurate. Always supplying the member type is recommended.

    Allowable values: [user,group]

Member updates

Response

Status Code

  • Updated

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create a data asset

You can use this API to add data assets to a catalog. Data assets could be data from a connection to a data source (ex. tables) or files from your local system uploaded into cloud object storage associated with Projects or Catalog.All asset types have a common set of properties, such as name, description, asset type, visibility, tags, classifications. Data Asset have additional attributes such as mime type, columns with types, and properties. Use v2/attachments API to indicate location of data (ex. table path) from a connection to a data source.

POST /v2/data_assets

Request

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Action to take if the call would result in a duplicate asset. IGNORE means the call will ignore the duplicate and create a new asset. REJECT means the call will fail and no asset will be created. UPDATE means the best matched duplicate will be updated with the incoming changes according to the predefined rules. REPLACE means the best matched duplicate will be overwritten with the input values according to the predefined rules. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT,UPDATE,REPLACE]

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Data Asset Metadata

Response

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get a data asset

Use this API to retrieve metadata about a data asset. The response document will contain three top-level fields:

  • 'metadata': contains metadata common to all types of assets
  • 'entity': contains metadata specific to the asset_type - in this case 'data_asset'
  • 'attachments': an array containing one item of metadata per attached resource

    The data described by the above metadata is stored in attached resources. Examples of attached resources are database tables, csv files, word documents, extended metadata documents, etc. Because an item in the 'attachments' array only contains metadata about an attached resource, accessing the actual attached resource requires additional server calls. Exactly which additional server calls are needed depends on the kind of attached resource. Follow the steps below to access an attached resource.

    Step 1: find the index i of the item in the above 'attachments' array whose 'asset_type' value matches the type of the attached resource you want to access. For a 'data_asset' attached resource look for the item i where 'attachments[i].asset_type' is 'data_asset'.

    There are two important pairs of fields (among many others) which may appear in 'attachments[i]'. Only one of those pairs will actually appear. Which pair appears influences which steps to perform next.
  • Pair 1: 'connection_id' and 'connection_path':
    • The above two fields will appear in 'attachments[i]' if the value of 'attachments[i].is_remote' is true.
    • 'attachments[i].is_remote' WILL be true if the attached resource is a database table. In this case, 'attachments[i].connection_path' will contain a schema name and table name.
    • 'attachments[i].is_remote' MAY be true if the attached resource is, for example, a csv file. In this case, 'attachments[i].connection_path' will contain a folder path and file name.

      If the above pair of fields are present in 'attachments[i]' then:
      Step 2: use the value of the 'attachments[i].connection_id' field to make a call to the GET /v2/connections/{connection_id} API. You'll need appropriate credentials.
      Step 3: use the values in the 'entity.properties' field of the result from Step 2 to either create a connection to the database containing the table or to retrieve the file.

      Note: even if 'attachments[i].is_remote' is true and the above pair of fields are present in 'attachments[i]', if the attached resource is located in the catalog/project bucket then you may optionally perform the two steps discussed for Pair 2 ('object_key' and 'handle') below.
  • Pair 2: 'object_key' and 'handle':
    • The above two fields will appear in 'attachments[i]' if the value of 'attachments[i].is_remote' is false. In this case, 'attachments[i].handle' will contain information about the attached resource.
      Step 2: use the value of the 'attachments[i].id' field as the value for 'attachment_id' in a call to the GET /v2/assets/{asset_id}/attachments/{attachment_id} API. The value to use for 'asset_id' in the call to the attachments API is the same as the value that was used for 'data_asset_id' in the original call to the GET /v2/data_assets/{data_asset_id} API.
      Step 3: use the value in the 'url' field of the result from Step 2 to download (for example, with a browser) a copy of the file.
GET /v2/data_assets/{data_asset_id}

Request

Path Parameters

  • data_asset_id

Query Parameters

  • catalog_id

  • project_id (only catalog_id is supported at this time)

  • space_id (only catalog_id is supported at this time)

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

  • Whether to allow access to metadata when the evaluation outcome of data protection rules is Deny.

  • The parameter include is deprecated, please use exclude instead

  • Exclude columns from the asset result. Available value: columns. Default value is empty, which will return the complete asset, including the columns.

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get columns of a data asset

Use this API to retrieve columns of a data asset located in catalog or project. Access to an asset is controlled by a combination of the privacy level and the members of the asset. For a governed catalog, data assets are protected from unauthorized access by the governance policies that are defined in Data Catalog. Data assets in ungoverned catalogs are not subject to governance policies.

GET /v2/data_assets/{data_asset_id}/columns

Request

Path Parameters

  • data_asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Revision id (1, 2, 3, ...), or leave empty for the current asset version. Use 'latest' for the most recent revision.

  • Whether to allow access to metadata when the evaluation outcome of data protection rules is Deny.

  • The maximum number of items to return

    Default: 100

  • The bookmark for the next page of results, received from a previous call.

    Default: 0

  • Sorting the columns, e.g., 'data_asset.columns', '-column_info.column_info_quality_score', 'data_asset.columns,column_info.column_info_quality_score

  • Filter columns by name, e.g., 'A*'

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create a folder asset

You can use this API to add folder assets to a catalog. Folder assets are similar to folders or directories in a file system. In the same way that a directory in a file system can contain many files, a folder asset can represent groups of files or objects all sharing a common path. An example of a path may be '/sales_data/by_month/february'. There may be many different files with that common path, but we only need to register just the common path when we create a folder asset.

Along with other types of assets, such as data assets, folder assets share a common set of properties such as name, description, asset type, visibility, tags, classifications, etc. In addition to other types of assets, folder assets are denoted by a folder_asset json object within the common entity object. The folder_asset json object contains a connection_id, and a connection_path. E.g.,

{
  "metadata":{...},
  "entity":{
    "folder_asset":{
      "connection_id":"f1fea17c-a7e5-49e4-9f8e-23cef3e11ed5",
      "connection_path":"/bucket1/folder1/folder1.1"
    }
  }
}


A folder asset can be mediated by a connection. In other words, you can access the contents of the folder asset only through a connection in the connection service. The connection can be to any external data store such as DashDB, Salesforce.com,IBM's Cloud Object Storage, etc. You must specify the connection_id and the connection_path within the folder_asset json object.

Folder assets can also be local to the catalog or project, similar to local or referenced data attachments. For such a folder asset you don't need the connection_id in the folder_asset json. You only need to provide the connection_path. The API can use it's internal connection to asset storage associated with the catalog/project/space (Cloud Object Storage in IBM Cloud, or Asset Files storage in CPD) for accessing that folder.

A connection path is like the path of a folder or a directory in a file system. Using IBM Cloud Object Storage as an example, a connection_path for a folder object might be /Bucket1/monthly_data_collection/March. Any objects falling under that path are part of the folder asset. This API cannot show you those files directly. Instead, you can use your IBM Cloud Object Storage connection to traverse to that folder location and retrieve the files.

POST /v2/folder_assets

Request

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Folder Asset Metadata

Response

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get a folder asset

Use this API to retrieve metadata about a folder asset.

GET /v2/folder_assets/{asset_id}

Request

Path Parameters

  • Enter the id of the folder asset whose metadata you want to retrieve.

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Whether to allow access to metadata when the evaluation outcome of data protection rules is Deny.

  • The parameter include is deprecated.

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get a signed URL of an item to be downloaded

If you have created folder assets for things that you store in IBM Cloud Object Storage, you can download individual contents of that folder. Every item within a folder has a path within that folder. For example there may be a folder asset in IBM Cloud Object Storage whose path is /bucket1/retail_sales/cosmetics. Within that folder, there may be several individual files. You can download these files with this API. When you call the API, you will receive a URL that, when you invoke it with a GET HTTP command, you can download a file that is within that folder.

GET /v2/folder_assets/{asset_id}/contents

Request

Path Parameters

  • Enter the id of the folder asset whose content you want to download.

Query Parameters

  • The path to the object from where the folder leaves off. For example if your folder path is /Bucket1/homedecore and your object path is /bathrooms/sinkaccessories/soapdish1000.jpg then the API will return a signed URL that includes the full object key /Bucket1/homedecore/bathrooms/sinkaccessories/soapdish1000.jpg.

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • The type of content you will download. Default is application/octet-stream

    Default: application/octet-stream

  • content_disposition specifies how you want the content downloaded. The default is as an attachment (i.e. a separate file).

    Default: attachment

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

List all assets in the trash (Marked for delete)

Retrieve all assets in the trash (Marked for delete.

GET /v2/trashed_assets

Request

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • older than the given timestamp. Format: "yyyy-MM-dd'T'hh:mm:ss[.sss]X" Example '2017-11-23T00:00:00-12', '2017-11-23T23:59:59.999Z', etc.

  • newer than the given timestamp. Format: "yyyy-MM-dd'T'hh:mm:ss[.sss]X" Example '2017-11-23T00:00:00-12', '2017-11-23T23:59:59.999Z', etc.

  • Whether to allow access to metadata when the evaluation outcome of data protection rules is Deny.

  • The parameter include is deprecated.

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Response

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get a soft-deleted object from trash

Get a soft-deleted object from trash.

GET /v2/trashed_assets/{asset_id}

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Whether to allow access to metadata when the evaluation outcome of data protection rules is Deny.

  • The parameter include is deprecated, please use exclude instead

  • Exclude columns from the asset result. Available value: columns. Default value is empty, which will return the complete asset, including the columns.

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete an asset from the trash

Purge an asset from the trash.

DELETE /v2/trashed_assets/{asset_id}

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Restore an asset from the trash

Restore an asset from the trash.

POST /v2/trashed_assets/{asset_id}/restore

Request

Path Parameters

  • asset_id

Query Parameters

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • You must provide either a catalog id, a project id, or a space id, but not more than one

  • Defaults to false. If true, deprecated fields are not included in the response. This parameter is provided as a way to check compatibility with future releases and remove duplicated information from responses. It has not been implemented for all deprecated fields. The primary fields that are omitted are collaborator_ids in the asset metadata rov and the owner_id field in the asset metadata.

    Default: false

  • Action to take if the changes to an asset would make it a duplicate to other assets. IGNORE means the call will continue and update the asset anyway; as a result, the asset will become a duplicate to other assets. REJECT means the call will fail and the asset will not be changed. No value means the duplicate_action specified in catalogs/projects/spaces will be used.

    Allowable values: [IGNORE,REJECT]

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

List defined connections

Lists defined connections.

Connections created with shared credentials will return secrets such as database passwords and API keys in clear text. Such secrets are stored encrypted but will be decrypted by the API when retrieved by the caller in order to access the data source defined by the connection. Clear text credentials are allowed because it is understood that the caller has already been explicitly added as a collabaorator in the project or catalog in which the connection is stored and is thus implicitly permitted access to the credentials required to connect to a data source.

Connections created with personal credentials will only display clear text credentials to the same user who provided them.

Use the following parameters to sort the results:

| Field | Example | | ------------------------- | ----------------------------------- | | entity.name | ?_sort=+entity.name | | metadata.create_time | ?_sort=-metadata.create_time |

Use the following parameters to filter the results:

| Field | Example | |-------------------------- | ----------------------------------- | | entity.name | ?entity.name=MyConnection | | entity.datasource_type | ?entity.datasource_type=<asset_id> | | entity.context | ?entity.context=source | | entity.properties | ?entity.properties={"name":"value"} | | entity.flags | ?entity.flags=+personal_credentials | | metadata.creator_id | ?metadata.creator_id=userid |

Filtering is done by specifying the fields to filter on.

To filter on the properties of a connection, the exact values to compare must be provided in the entities.properties field and all values supplied must exactly match a property of a connection.

The entity.flags field specifies the flags a connection can have to be included in the list results. By default, all connections with no flags are returned.

Adding the name of a flag to entity.flags will add the connections with that flag to the list results. The name can be optionally prefixed with a plus sign (+) to indicate that it is being added.

Adding the name of a flag to entity.flags with a minus sign (-) prefix will remove those connections with that flag from the list results. All additions are done before the subtractions.

GET /v2/connections

Request

Custom Headers

  • Boolean indicator if cluster username and access token should be injected into connection properties. It has to be ensured that access token is not revealed unintentionally together with connection properties.

    Default: false

Query Parameters

  • The ID of the catalog to use. catalog_id, project_id, or space_id is required.

  • The ID of the project to use. catalog_id, project_id, or space_id is required.

  • The ID of the space to use. catalog_id, project_id, or space_id is required.

  • true for a project needs assets managed by the /userfs API, i.e. if it has git integration

    Default: false

  • The field to sort the results on, including whether to sort ascending (+) or descending (-), for example, sort=-metadata.create_time

  • The page token indicating where to start paging from.

  • The limit of the number of items to return, for example limit=50. If not specified a default of 100 will be used.

    Possible values: value ≥ 1

    Default: 100

  • The creator of the connection.

  • The name of the connection.

  • The data source type of the connection.

  • The context of the connection. Can be one of "source", "target", or "source,target".

  • The properties of the connection that must match for the connection to be included in the list.

  • A comma separated list of flags that must be present for the connection to be included in the list. If not provided, only connections with no flags will be returned.

  • Whether to return information about source and target interaction properties.

  • Whether to return decrypted secrets for unrestricted connections.

    Default: true

  • Whether to return information about connection and interaction properties.

    Default: true

Response

A page from a collection of connections.

Status Code

  • Connections with metadata.

  • You are not authorized to list the defined connections.

  • You are not permitted to perform this action.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. The defined connections cannot be listed.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Define connection

Defines a connection.

By default, a connection is created with shared credentials. Though credentials' secrets are stored encrypted, all credentials including secrets will be visible in clear text to API users who retrieve the connection and who are collaborators of the project or catalog in which a connection with shared credentials has been created.

Alternatively, a connection can be created with personal credentials by using the personal_credentials flag. The credentials' secrets will be visible only to the user who created the connection.

POST /v2/connections

Request

Custom Headers

  • The indicator whether shared credentials disablement and vault credentials enforcement guards should be disabled for creation and updates

    Default: false

Query Parameters

  • The ID of the catalog to use. catalog_id, project_id, or space_id is required.

  • The ID of the project to use. catalog_id, project_id, or space_id is required.

  • The ID of the space to use. catalog_id, project_id, or space_id is required.

  • true for a project needs assets managed by the /userfs API, i.e. if it has git integration

    Default: false

  • Whether to test the connection before saving it. By default an attempt to establish a connection will be made, and the connection will not be saved if the connection cannot be established.

    Default: true

The definition of the connection.

Response

A connection.

Status Code

  • The connection was created.

  • The connection test failed. See the error message for details.

  • You are not authorized to define a connection.

  • You are not permitted to perform this action.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. A connection was not created.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Get connection

Gets details of a specific connection definition.

Connections created with shared credentials will return secrets such as database passwords and API keys in clear text. Such secrets are stored encrypted but will be decrypted by the API when retrieved by the caller in order to access the data source defined by the connection. Clear text credentials are allowed because it is understood that the caller has already been explicitly added as a collabaorator in the project or catalog in which the connection is stored and is thus implicitly permitted access to the credentials required to connect to a data source.

Connections created with personal credentials will only display clear text credentials to the same user who provided them.

GET /v2/connections/{connection_id}

Request

Custom Headers

  • Boolean indicator if cluster username and access token should be injected into connection properties. It has to be ensured that access token is not revealed unintentionally together with connection properties.

    Default: false

Path Parameters

  • The ID of the connection.

Query Parameters

  • The ID of the catalog to use. catalog_id, project_id, or space_id is required.

  • The ID of the project to use. catalog_id, project_id, or space_id is required.

  • The ID of the space to use. catalog_id, project_id, or space_id is required.

  • true for a project needs assets managed by the /userfs API, i.e. if it has git integration

    Default: false

  • Specify the product the data source type must support to be returned. The available products are 'catalog', 'cpd', 'datastage', 'dv', 'igc', 'mdi', 'ml' and 'studio'. If no entity.product is specified, no filtering is applied. To specify multiple products, use a comma-separated string, such as entity.product=catalog,studio.

  • Whether to return information about source and target interaction properties.

  • Whether to return decrypted secrets for unrestricted connections.

    Default: true

Response

A connection.

Status Code

  • The connection object.

  • You are not authorized to get details about the connection.

  • You are not permitted to perform this action.

  • The connection cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. The connection definition details cannot be retrieved.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Delete connection

Deletes a connection definition. This call does not check whether the connection is used by activities, data sets or other assets. The caller must check this before deleting a connection.

DELETE /v2/connections/{connection_id}

Request

Path Parameters

  • The ID of the connection.

Query Parameters

  • The ID of the catalog to use. catalog_id, project_id, or space_id is required.

  • The ID of the project to use. catalog_id, project_id, or space_id is required.

  • The ID of the space to use. catalog_id, project_id, or space_id is required.

  • true for a project needs assets managed by the /userfs API, i.e. if it has git integration

    Default: false

Response

Status Code

  • The connection was deleted.

  • You are not authorized to delete a connection.

  • You are not permitted to perform this action.

  • The connection cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. The connection was not deleted.

No Sample Response

This method does not specify any sample responses.

Update connection

Updates the definition of a connection.

PATCH /v2/connections/{connection_id}

Request

Custom Headers

  • The indicator whether shared credentials disablement and vault credentials enforcement guards should be disabled for creation and updates

    Default: false

Path Parameters

  • The ID of the connection.

Query Parameters

  • The ID of the catalog to use. catalog_id, project_id, or space_id is required.

  • The ID of the project to use. catalog_id, project_id, or space_id is required.

  • The ID of the space to use. catalog_id, project_id, or space_id is required.

  • true for a project needs assets managed by the /userfs API, i.e. if it has git integration

    Default: false

  • Whether to test the connection before saving it. By default an attempt to establish a connection will be made, and the connection will not be saved if the connection cannot be established.

    Default: true

Fields to update within the connection.

Response

The connection definition.

Status Code

  • The updated connection definition object.

  • The connection test failed. See the error message for details.

  • You are not authorized to update the connection definition.

  • You are not permitted to perform this action.

  • The connection cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. The connection definition was not updated.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Upgrade connections

Upgrades connection.

POST /v2/connections/upgrade

Request

Query Parameters

  • The ID of the catalog to use. catalog_id, project_id, or space_id is required.

  • The ID of the project to use. catalog_id, project_id, or space_id is required.

  • The ID of the space to use. catalog_id, project_id, or space_id is required.

  • The page token indicating where to start paging from.

  • The limit of the number of items to return, for example limit=50. If not specified a default of 100 will be used.

    Possible values: value ≥ 1

    Default: 100

Response

Result of connection upgrade request.

Status Code

  • The connections were upgraded.

  • Bad request. See the error message for details.

  • You are not authorized to define a connection.

  • You are not permitted to perform this action.

  • An error occurred. Connections were not updated.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Discover assets

Discovers assets from the data source accessed via a connection description.

POST /v2/connections/assets

Request

Custom Headers

  • Specify whether to return the asset's data in parsed form (application/json) or as raw bytes. This only applies to sources that produce data as a file, document or stream of bytes. To return bytes specify application/octet-stream.

Query Parameters

  • Path of the asset.

  • The limit of the number of items to return, for example limit=50. If not specified a default of 100 will be used.

    Possible values: value ≥ 1

    Default: 100

  • The 0-based index of the first result to return, for example, offset=200. If not specified, the default offset of 0 is used.

    Possible values: value ≥ 0

    Default: 0

  • Specify whether to return the asset's metadata, the asset's data, interaction properties, connection properties, or data source type. If not specified, metadata is used by default. This parameter only applies when requesting details about a data set. To specify multiple fetch values, use a comma-separated string, such as fetch=data,metadata,interaction,connection,datasource_type.

  • Specify whether to return additional asset-specific details. If not specified, these details are not returned.

  • Specify whether assets are discovered for the purpose of reading (source) or writing (target). If not specified, source is used by default.

    Allowable values: [source,target]

  • A JSON object containing a set of properties to configure aspects of the asset browsing.

  • A JSON object containing a set of properties to define filtering of the assets to be returned.

The connection definition.

Response

A page from a collection of discovered assets.

Status Code

  • The discovered assets.

  • You are not authorized to discover assets.

  • You are not permitted to perform this action.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. No assets were found.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Discover assets

Discovers assets from the data source accessed via the connection.

GET /v2/connections/{connection_id}/assets

Request

Custom Headers

  • Specify whether to return the asset's data in parsed form (application/json) or as raw bytes. This only applies to sources that produce data as a file, document or stream of bytes. To return bytes specify application/octet-stream.

Path Parameters

  • The ID of the connection.

Query Parameters

  • Path of the asset.

  • The ID of the catalog to use. catalog_id, project_id, or space_id is required.

  • The ID of the project to use. catalog_id, project_id, or space_id is required.

  • The ID of the space to use. catalog_id, project_id, or space_id is required.

  • true for a project needs assets managed by the /userfs API, i.e. if it has git integration

    Default: false

  • The ID of the data asset.

  • The ID of the catalog that contains the data asset.

  • The ID of the project that contains the data asset.

  • The ID of the space that contains the data asset.

  • The limit of the number of items to return, for example limit=50. If not specified a default of 100 will be used.

    Possible values: value ≥ 1

    Default: 100

  • The 0-based index of the first result to return, for example, offset=200. If not specified, the default offset of 0 is used.

    Possible values: value ≥ 0

    Default: 0

  • Specify whether to return the asset's metadata, the asset's data, interaction properties, connection properties, or data source type. If not specified, metadata is used by default. This parameter only applies when requesting details about a data set. To specify multiple fetch values, use a comma-separated string, such as fetch=data,metadata,interaction,connection,datasource_type.

  • Specify whether to return additional asset-specific details. If not specified, these details are not returned.

  • Specify whether assets are discovered for the purpose of reading (source) or writing (target). If not specified, source is used by default.

    Allowable values: [source,target]

  • A JSON object containing a set of properties to configure aspects of the asset browsing.

  • A JSON object containing a set of properties to define filtering of the assets to be returned.

Response

A page from a collection of discovered assets.

Status Code

  • The discovered assets.

  • You are not authorized to discover assets in the data source accessed through the connection.

  • You are not permitted to perform this action.

  • The connection cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. No assets were discovered in the data source.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Discover data asset

Discover a data asset.

GET /v2/connections/assets/{data_asset_id}

Request

Custom Headers

  • Specify whether to return the asset's data in parsed form (application/json) or as raw bytes. This only applies to sources that produce data as a file, document or stream of bytes. To return bytes specify application/octet-stream.

Path Parameters

  • The ID of the data asset.

Query Parameters

  • The ID of the catalog to use. catalog_id, project_id, or space_id is required.

  • The ID of the project to use. catalog_id, project_id, or space_id is required.

  • The ID of the space to use. catalog_id, project_id, or space_id is required.

  • true for a project needs assets managed by the /userfs API, i.e. if it has git integration

    Default: false

  • The limit of the number of items to return, for example limit=50. If not specified a default of 100 will be used.

    Possible values: value ≥ 1

    Default: 100

  • The 0-based index of the first result to return, for example, offset=200. If not specified, the default offset of 0 is used.

    Possible values: value ≥ 0

    Default: 0

  • Specify whether to return the asset's metadata, the asset's data, interaction properties, connection properties, or data source type. If not specified, metadata is used by default. This parameter only applies when requesting details about a data set. To specify multiple fetch values, use a comma-separated string, such as fetch=data,metadata,interaction,connection,datasource_type.

  • Specify whether to return additional asset-specific details. If not specified, these details are not returned.

  • Specify whether assets are discovered for the purpose of reading (source) or writing (target). If not specified, source is used by default.

    Allowable values: [source,target]

  • A JSON object containing a set of properties to configure aspects of the asset browsing.

  • A JSON object containing a set of properties to define filtering of the assets to be returned.

  • Path of the asset.

Response

A page from a collection of discovered assets.

Status Code

  • The discovered asset.

  • You are not authorized to discover the asset.

  • You are not permitted to perform this action.

  • The asset cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. No assets were discovered in the data source.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

List actions

Lists all supported actions for the connection.

GET /v2/connections/{connection_id}/actions

Request

Custom Headers

  • The user's preferred locale identifier.

    Default: en-US

Path Parameters

  • The ID of the connection.

Query Parameters

  • The ID of the catalog to use. catalog_id, project_id, or space_id is required.

  • The ID of the project to use. catalog_id, project_id, or space_id is required.

  • The ID of the space to use. catalog_id, project_id, or space_id is required.

  • true for a project needs assets managed by the /userfs API, i.e. if it has git integration

    Default: false

Response

Connection actions.

Status Code

  • The actions supported for the connection.

  • You are not authorized to list the actions for the connection.

  • You are not permitted to perform this action.

  • The connection cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. The actions for the connection cannot be listed.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Perform action

Performs an action on the data source accessed using the connection.

PUT /v2/connections/{connection_id}/actions/{action_name}

Request

Path Parameters

  • The ID of the connection.

  • The name of the action to be performed. This list is expanded over time. The current actions are:

    | action | description | | --------------------- | ------------------------------------------------------------------------ | | get_oauth2_tokens | to get refresh and authorization tokens for sources that support OAuth2. | | get_record_count | to get the number of records available for the specified asset. | | get_signed_url | to get a signed URL for accessing a data source. | | test | to check if a connection can be established to the data source. | | validate | to validate the connection properties without establishing a connection. |

    Allowable values: [get_oauth2_tokens,get_record_count,get_signed_url,test,validate]

Query Parameters

  • The ID of the catalog to use. catalog_id, project_id, or space_id is required.

  • The ID of the project to use. catalog_id, project_id, or space_id is required.

  • The ID of the space to use. catalog_id, project_id, or space_id is required.

  • true for a project needs assets managed by the /userfs API, i.e. if it has git integration

    Default: false

The perform action request configuration.

Response

Results of a connection perform action request.

Status Code

  • Any output produced by the action.

  • The perform action request is invalid.

  • You are not authorized to perform an action on a data source accessed through the connection.

  • You are not permitted to perform this action.

  • The connection cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. No action was performed on the data source.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Download a file

Download a file

GET /v2/connections/files/{file_name}

Request

Path Parameters

  • The name of file to download

Query Parameters

  • The hash of file to download

Response

Status Code

  • The file object.

  • You are not authorized to get content of the file.

  • You are not permitted to perform this action.

  • The file cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. The driver jar cannot be retrieved.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Upload a file

Upload a file and get back a signed handle in 'Location' header with a hash

POST /v2/connections/files/{file_name}

Request

Path Parameters

  • The name of file to upload

Response

Status Code

  • The file object.

  • You are not authorized to get content of the file.

  • You are not permitted to perform this action.

  • The file cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. The driver jar cannot be retrieved.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Delete a file

Delete a file

DELETE /v2/connections/files/{file_name}

Request

Path Parameters

  • The name of file to delete

Query Parameters

  • The hash of file to delete

Response

Status Code

  • The file was deleted.

  • You are not authorized to get content of the file.

  • You are not permitted to perform this action.

  • The file cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. The driver jar cannot be retrieved.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

List files

List files available in mounted directory

GET /v2/connections/files

Request

Query Parameters

  • The limit of the number of items to return, for example limit=50. If not specified a default of 100 will be used.

    Possible values: value ≥ 1

    Default: 100

  • The 0-based index of the first result to return, for example, offset=200. If not specified, the default offset of 0 is used.

    Possible values: value ≥ 0

    Default: 0

Response

A page from a collection of uploaded files.

Status Code

  • List of available files

  • You are not authorized to get the list of files.

  • You are not permitted to perform this action.

  • The file cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. The driver jar cannot be retrieved.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Migrate files

Migrates files from old locations to new one

PUT /v2/connections/files

Request

Query Parameters

  • Indicator, if only list files to be migrated.

  • Indicator, if migrate connections from catalogs.

  • Indicator, if migrate connections from projects.

  • Indicator, if migrate connections from spaces.

Response

A page from a collection of migrated connections.

Status Code

  • List of newly uploaded files

  • You are not authorized to migrate files.

  • You are not permitted to perform this action.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. The driver jar cannot be retrieved.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

List defined types of data sources

Gets all defined types of data sources.

The following fields are available for use with the sort parameter:

| field name | description | | ------------ | ---------------------------------------------------- | | entity.label | The name of the data source type in a readable form. | | entity.type | The major type of the data source type. |

GET /v2/datasource_types

Request

Custom Headers

  • The user's preferred locale identifier.

    Default: en-US

Query Parameters

  • The field to sort the results on, including whether to sort ascending (+) or descending (-), for example, sort=-metadata.create_time

  • The 0-based index of the first result to return, for example, offset=200. If not specified, the default offset of 0 is used.

    Possible values: value ≥ 0

    Default: 0

  • The limit of the number of items to return, for example limit=50. If not specified a default of 100 will be used.

    Possible values: value ≥ 1

    Default: 100

  • Whether to return information about connection properties.

  • Whether to return information about source and target interaction properties.

  • Whether to return information about discovery capabilities.

  • Whether to return information about supported actions.

  • Specify the environment the data source types must support to be included in the returned list. The available environments are 'cloud', 'streams' and 'local'. If no entity.environment is specified, the default for service's deploy environment is used. To specify multiple environments, use a comma-separated string, such as entity.environment=cloud,streams.

  • Specify the product the data source type must support to be returned. The available products are 'catalog', 'cpd', 'datastage', 'dv', 'igc', 'mdi', 'ml' and 'studio'. If no entity.product is specified, no filtering is applied. To specify multiple products, use a comma-separated string, such as entity.product=catalog,studio.

  • Scope of ui-only product selector property. Applies to output under common_properties key. Genreated ui contains additional checkbox to switch between first of the requested products and the rest. If only a single one is given it switches between that product and remaining products supported by the data source.

    Allowable values: [global,context]

  • Whether to generate extra conditions in common properties format that will make them behave in a transitive manner under default configuration options of Elyra i.e. when a condition is part of a chain it will enable/disable everything down the chain rather than just hiding the control. Support for this option has been removed. Option itself was not removed to preserve binary compatibility but it no longer has any effect.

    Default: false

  • Whether to filter the list of available datasource types and return only those that have their dataSourceDefinitionId parameter set and its value is the same as the value of the datasource type id. That means that returned are only datasource types which should have proper deep enforcement in Data Privacy Service supported and are the canonical types (not the connectors that use the same engine, but have a different flavor).

    Default: false

Response

A page from a collection of data source types.

Status Code

  • Collection of data source types.

  • You are not authorized to list the defined types of data sources.

  • You are not permitted to perform this action.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. No data source types were retrieved.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Define data source type

Defines a data source type.

POST /v2/datasource_types

Request

The definition of the data source type.

Response

A collection of custom data source types.

Status Code

  • The data source type was created.

  • The data source type definition is not valid. See the error message for details.

  • You are not authorized to define a data source type.

  • You are not permitted to perform this action.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. A data source type was not created.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Get details for type of data source

Get details for type of data source.

GET /v2/datasource_types/{datasource_type}

Request

Custom Headers

  • The user's preferred locale identifier.

    Default: en-US

Path Parameters

  • The data source type.

Query Parameters

  • Whether to return information about connection properties.

  • Whether to return information about source and target interaction properties.

  • Whether to return information about discovery capabilities.

  • Whether to return information about supported actions.

  • Specify the environment the data source types must support to be included in the returned list. The available environments are 'cloud', 'streams' and 'local'. If no entity.environment is specified, the default for service's deploy environment is used. To specify multiple environments, use a comma-separated string, such as entity.environment=cloud,streams.

  • Specify the product the data source type must support to be returned. The available products are 'catalog', 'cpd', 'datastage', 'dv', 'igc', 'mdi', 'ml' and 'studio'. If no entity.product is specified, no filtering is applied. To specify multiple products, use a comma-separated string, such as entity.product=catalog,studio.

  • Scope of ui-only product selector property. Applies to output under common_properties key. Genreated ui contains additional checkbox to switch between first of the requested products and the rest. If only a single one is given it switches between that product and remaining products supported by the data source.

    Allowable values: [global,context]

  • Whether to generate extra conditions in common properties format that will make them behave in a transitive manner under default configuration options of Elyra i.e. when a condition is part of a chain it will enable/disable everything down the chain rather than just hiding the control. Support for this option has been removed. Option itself was not removed to preserve binary compatibility but it no longer has any effect.

    Default: false

Response

The definition of a data source type.

Status Code

  • A data source type definition.

  • You are not authorized to retrieve the type details of the data source.

  • You are not permitted to perform this action.

  • The data source type details cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. No data source type details were retrieved.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Delete data source type

Deletes a data source type definition. This call does not check whether the data source type is used by connections or other assets. The caller must check this before deleting a data source type.

DELETE /v2/datasource_types/{datasource_type}

Request

Path Parameters

  • The data source type.

Response

Status Code

  • The data source type was deleted.

  • You are not authorized to delete a data source type.

  • You are not permitted to perform this action.

  • The data source type cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. The connection was not deleted.

No Sample Response

This method does not specify any sample responses.

Update datasource type

Updates the definition of a datasource type.

PATCH /v2/datasource_types/{datasource_type}

Request

Path Parameters

  • The data source type.

Fields to update within the data source type.

Response

The definition of a custom data source type.

Status Code

  • The updated data source type definition object.

  • The data source type patch request is not valid. See the error message for details.

  • You are not authorized to update the data source type definition.

  • You are not permitted to perform this action.

  • The data source type cannot be found.

  • The service is currently receiving more requests than it can process in a timely fashion. Please retry submitting your request later.

  • An error occurred. The data source type definition was not updated.

  • A timeout occurred when processing your request. Please retry later.

No Sample Response

This method does not specify any sample responses.

Create a metadata enrichment area asset

Creates a new metadata enrichment asset and the corresponding job definition. If a data scope is provided the decoration of data scope assets will be started in background and the response will contain the execution ID of that background process. After background processing has finished a RabbitMQ event is sent to CAMS topic exchange CatalogServiceMessageHub with topic v2.metadata_enrichment.{mdeAreaId}.create_enrichment_area and message body as described in model RabbitMqNotificationMessage. If no data scope is provided an empty enrichment area is created without starting a background decoration task. In that case the field asyncExecutionInfo will be missing in the response. If query paramter enrichImmediate is true, which is the default setting, and the data scope is not empty a new enrichment job run will be triggered automatically.

POST /v2/metadata_enrichment/metadata_enrichment_area

Request

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

  • should enrichment be run immediately after area creation

    Default: true

Object containing information for creating a metadata enrichment area asset

Response

An object containing information about a metadata enrichment area asset

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Retrieve metadata enrichment settings

Retrieve metadata enrichment settings

GET /v2/metadata_enrichment/metadata_enrichment_area/settings

Request

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Response

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Create or update metadata enrichment settings

Create or update metadata enrichment settings

PUT /v2/metadata_enrichment/metadata_enrichment_area/settings

Request

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Metadata enrichment settings

Response

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Retrieve details of a Metadata Enrichment Area asset

Retrieve details of a metadata enrichment area asset

GET /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

  • whether to include data asset count summary in the response

    Default: false

Response

An object containing information about a metadata enrichment area asset

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Not found

  • Gone

  • Error

No Sample Response

This method does not specify any sample responses.

Delete a metadata enrichment asset

Delete a metadata enrichment area asset

DELETE /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Response

Status Code

  • No Content

  • Unauthorized

  • Forbidden

  • Not found

  • Gone

  • Error

No Sample Response

This method does not specify any sample responses.

edit a metadata enrichment area asset

Edit a metadata enrichment area asset

PATCH /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

  • Force the operation even when the metadata enrichment area is being updated.

Object carrying the update request.

Response

An object containing information about a metadata enrichment area asset

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Not found

  • Gone

  • Error

No Sample Response

This method does not specify any sample responses.

Add or remove assets from data scope

Add or remove assets from data scope

PATCH /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}/data_scope

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

  • Force the operation even when the metadata enrichment area is being updated.

Object carrying the update request.

Response

Status Code

  • Accepted

  • Unauthorized

  • Forbidden

  • Not found

  • Gone

  • Error

No Sample Response

This method does not specify any sample responses.

Assign business terms to data assets

Add terms to given data assets. This api is executed synchronously. It verifies that all assets are part of the given MDE area. If validation fails method ends with an error.

POST /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}/data_scope/enrichment_assets/assign_terms

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

  • whether to process the request asynchronously

    Default: false

List of data assets and terms to assign

Response

Status Code

  • Success

  • Accepted

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Assign business terms to columns of data assets

Add terms to given asset columns. This api is executed synchronously. It verifies that all assets are part of the given MDE area. If validation fails method ends with an error.

POST /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}/data_scope/enrichment_assets/columns/assign_terms

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

  • whether to process the request asynchronously

    Default: false

List of columns of data assets and terms to assign

Response

Status Code

  • Success

  • Accepted

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Assign or remove a data class to columns of data assets

Assign or remove data class to columns of data assets

POST /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}/data_scope/enrichment_assets/columns/dataclass

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

  • whether to process the request asynchronously

    Default: false

List of columns of data assets and id of data class and operation to be performed

Response

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Remove business terms from columns of data assets.

Removes either all terms or selected terms from given asset columns. When terms are provided with the payload only the given terms are removed from the given columns. If no terms are provided all terms are removed.

POST /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}/data_scope/enrichment_assets/columns/remove_terms

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

  • whether to process the request asynchronously

    Default: false

List of columns of data assets and terms to assign

Response

Status Code

  • Success

  • Accepted

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Adds or updates the review timestamp for given columns.

Adds/updates the 'reviewed' time stamp to/of the given asset columns.This api is executed synchronously. It fetches the assets that belong to the given columns via CAMS bulk get and verifies that all given assets are part of the given MDE area and are ready for review which means that either profiling or term assignment must be finished. It also validates that the columns exist on the asset. If validation fails the method returns an error. Otherwise for all given columns the review timestamp gets updated via CAMS bulk patch. Returns the new review timestamp.

POST /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}/data_scope/enrichment_assets/columns/review

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Array containing list of asset Ids with columns.

Response

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Removes review timestamp for given columns.

Removes the 'reviewed' time stamp from the given asset columns. This api is executed synchronously. It fetches alle assets that belong to the given columns via CAMS bulk get and verifies that all given assets are part of the given MDE area. Assets that have no review data are skipped. It also validates that the columns exist on the asset. If validation fails the method returns an error. Otherwise for all given columns the review timestamp will be removed via CAMS bulk patch.

POST /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}/data_scope/enrichment_assets/columns/unreview

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Array containing list of asset Ids with columns.

Response

Status Code

  • No content

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Enrich selected data assets

Enrich selected data assets

POST /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}/data_scope/enrichment_assets/enrich

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Array containing list of asset Ids.

Response

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Remove business terms from data assets

Removes either all terms or selected terms from given list of data assets. When terms are provided with the payload only the given terms are removed from the given assets. If no terms are provided all terms are removed.

POST /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}/data_scope/enrichment_assets/remove_terms

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

  • whether to process the request asynchronously

    Default: false

List of data assets and terms to remove

Response

Status Code

  • Success

  • Accepted

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Review a given list of data assets.

Adds/updates the 'reviewed' time stamp to/of given data assets. This api is executed synchronously. It fetches the given assets via CAMS bulk get and verifies that all given assets are part of the given MDE area and are ready for review which means that either profiling or term assignment must be finished. If validation fails the method returns an error. Otherwise the review timestamp of all assets gets updated via CAMS bulk patch. Returns the new review timestamp.

POST /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}/data_scope/enrichment_assets/review

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Array containing list of asset Ids.

Response

Status Code

  • Success

  • Bad Request. If parameters are missing or at least one of the given assets is not ready for review

  • Unauthorized

  • Forbidden

  • Not found. If at least one of the given assets is not member of the given metadata enrichment area.

  • Error

No Sample Response

This method does not specify any sample responses.

Removes review timestamp from the given assets

Removes the 'reviewed' time stamp from the given data assets. This api is executed synchronously. It fetches the given assets via CAMS bulk get and verifies that all given assets are part of the given MDE area. Assets that have no review data are skipped. If validation fails the method returns an error. Otherwise the review timestamp is removed from of all assets via CAMS bulk patch.

POST /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}/data_scope/enrichment_assets/unreview

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Array containing list of asset Ids.

Response

Status Code

  • No content

  • Bad Request. If parameters are missing.

  • Unauthorized

  • Forbidden

  • Not found. If at least one of the given assets is not member of the given metadata. enrichment area.

  • Error

No Sample Response

This method does not specify any sample responses.

Publish all assets or a subset of assets of a Metadata Enrichment Area to a catalog

Publish assets asynchronously. If publishScope is 'selected_assets' either /asset_ids or /filter/search_criteria has to be specified. If publisScope is 'all_assets' none of both must be specified.

POST /v2/metadata_enrichment/metadata_enrichment_area/{metadata_enrichment_area_id}/publish_assets

Request

Path Parameters

  • Id of the metadata enrichment area asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

  • tells if all assets in mde area should be published or only selected assets

    Allowable values: [all_assets,selected_assets]

Publish assets to a catalog

Response

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Create a Metadata Import asset

Create a Metadata Import asset.

POST /v2/metadata_imports

Request

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

  • If this value is set to true, a Job is created together. The relation is also done between mdetadata import asset. The response message includes entity.jobId. The job name is generated from the name of metadata import with a unique suffix.

    Default: false

  • A candidate of Job name. The job is created with a specified name. If the name already exists, an error is returned. The create_job parameter should be set to true.

Object containing information for creating a metadata import asset

Response

An object containing information about a metadata import asset

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Bulk delete data assets in Metadata discovery

Delete assets in bulk

POST /v2/metadata_imports/bulk_delete_assets

Request

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

  • The catalog_id and / or project_id must be provided. If catalog_id is provided, the catalog must exist and the caller must be an admin or editor member of the catalog. Only data discovery runs associated with the catalog will be returned.

Array containing list of data asset Ids.

Response

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Bulk delete metadata import assets in Metadata discovery

Delete metadata import assets in bulk

DELETE /v2/metadata_imports/bulk_delete_metadataImport_assets

Request

Query Parameters

  • Comma separated list of metadata import asset IDs.

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Response

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Bulk publish data assets in Metadata discovery

Publish assets in bulk

POST /v2/metadata_imports/bulk_publish_assets

Request

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

  • The catalog_id and / or project_id must be provided. If catalog_id is provided, the catalog must exist and the caller must be an admin or editor member of the catalog. Only data discovery runs associated with the catalog will be returned.

Array containing list of data asset Ids.

Response

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Get a list of supported datasource types

INTERNAL: Get list of supported connection types.

GET /v2/metadata_imports/connections

Request

No Request Parameters

This method does not accept any request parameters.

Response

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Restart the pending a job run

Restart the pending a job run. It should be called after restore from the backup data. This API is not unavailable on IBM Cloud. The Admin role is necessary to call this API.

POST /v2/metadata_imports/recover_task

Request

Object containing information for recovering import

Response

status message

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Validate the attempt to delete job associated with Metadata import asset

Validate the attempt to delete job associated with Metadata import asset

POST /v2/metadata_imports/validate_metadata_import_job

Request

Query Parameters

  • Id of the metadata import job.

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Response

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

Retrieve details of a Metadata Import

Retrieve details of a metadata import

GET /v2/metadata_imports/{metadata_import_id}

Request

Path Parameters

  • Id of the metadata import asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Response

An object containing information about a metadata import asset

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Not found

  • Gone

  • Error

No Sample Response

This method does not specify any sample responses.

delete a metadata import asset

delete a metadata import asset

DELETE /v2/metadata_imports/{metadata_import_id}

Request

Path Parameters

  • Id of the metadata import asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Response

Status Code

  • No content

  • Unauthorized

  • Forbidden

  • Not found

  • Gone

  • Error

No Sample Response

This method does not specify any sample responses.

edit a metadata import asset

edit a metadata import asset

PATCH /v2/metadata_imports/{metadata_import_id}

Request

Path Parameters

  • Id of the metadata import asset.

Query Parameters

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Object carrying the update request.

Response

An object containing information about a metadata import asset

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Not found

  • Gone

  • Error

No Sample Response

This method does not specify any sample responses.

Start a Metadata Import job

INTERNAL: Run a Metadata Import job.

POST /v2/metadata_imports/job_runs

Request

Query Parameters

  • Id of the metadata import job.

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Job definition object

Response

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Error

No Sample Response

This method does not specify any sample responses.

cancel a Metadata Import run

INTERNAL: Cancel a metadata import job run

POST /v2/metadata_imports/job_runs/cancel

Request

Query Parameters

  • Id of the metadata import job.

  • The project_id must be provided. The project must exist and the caller must be an admin or editor member of the project.

Job definition object

Response

Status Code

  • Success

  • Unauthorized

  • Forbidden

  • Not found

  • Error

No Sample Response

This method does not specify any sample responses.

List data profiles

Status: Complete

Get the list of data profiles in the specified project or catalog for a given dataAsset, provided the caller has the necessary rights to do so. The returned results can be filtered by using one or more of the listed parameters.

| Field | Match type | Example | | --------------- | ------------ | ------------------------------ | | dataset_id | Equals | ?dataset_id=5210c7d-cf6b |

GET /v2/data_profiles

Request

Query Parameters

  • The ID of the data set to use.

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

  • Whether to include the entity component. If set to false, only the metadata component is populated in the response.

    Default: true

  • Include minimum payload for profiling results. If set to true, only minimum required details for DPS are available in the response.

    Default: false

  • Return the analysis results for specified column. This option will be ignored for data profile run using data flow.

Response

A page from a collection of data profiles.

Status Code

  • Success.

  • You are not permitted to perform this action.

  • You are not authorized to list the available data profiles.

  • Not Found.

  • An error occurred. The data profiles cannot be listed.

No Sample Response

This method does not specify any sample responses.

Create data profile

Status: Complete

Creates a data profile for a given data set in the specified project or catalog, provided the caller has the necessary rights to do so. Subsequent calls to use the data profile must specify the relevant project or catalog ID that the data profile was created in.

The request payload must include the 'metadata' section containing the data set id and catalog/project id.

The request payload can have the 'entity' section which is optional specifying the data profile options. If these options are not specified, default options are taken. To create several data profiles at once in the specified project or catalog, specify an array of data set in the attribute dataset_ids instead of a single data set in the attribute dataset_id. In this case, the data profiles are created in a single job that can be found in the execution section of the returned data profile entity.

AMQP 1.0 Messages

When a new data profile is created, a message is fired with a state of the new data profile in the body.

Topic

v2.data_profiles.:guid.POST ,where the ":guid" represents the profile_id of the created Data Profile

Subscribe to it by using "v2.data_profiles.*.POST" Binding Key.

Example Message

Topic: v2.data_profiles.5210c7d-cf6b-4204-95d2-95d84ecbe382.POST

Message:

{
 "event": "CREATE_DATA_PROFILE",
 "actor": {          
   "user_name": "john@acme.com"          
 },
 "published": "2015-05-10T15:04:15Z",
 "url": { /* The href of the DataProfile created */}
 "status_code": { /* The Http Status code , 201 if the DataProfile is created successfully */}
 "state": { /* the data profile object equivalent to the one obtained by GET /v2/data_profiles/{profile_id} API */ }
 "details": {
    "catalog_id": "f3c59258-abdd-4e24-828b-0495ec519339",
    "dataset_id": "e522db21-59e8-44ab-81b2-bb40c3030a6f",
    "profile_id": "5165d439-96f0-40d4-90b2-93795deab61b",
    "is_governed": false { /* set to true if the catalog is_governed else set it to false}
   }
}
POST /v2/data_profiles

Request

Query Parameters

  • Whether to start the profiling service immediately after the data profile is created.

  • Whether to use Metadata enrichment for profiling. If set to true, Metadata enrichment features are eanbled (will use new Lite services).

    Default: false

  • Whether to charge the bulk profiling to include term assignment charges.

    Default: false

The data profile to create.

Response

A data profile holds the data profiling controls, options and results of a data set.

Status Code

  • Success.

  • Accepted.

  • You are not authorized to create a data profile.

  • You are not permitted to perform this action.

  • The data profile cannot be found.

  • An error occurred. The data profile cannot be created.

No Sample Response

This method does not specify any sample responses.

Get data profile

Status: Complete

Gets a data profile from a project or catalog, provided the call has the required right to do so.

GET /v2/data_profiles/{profile_id}

Request

Path Parameters

  • The profile ID to use.

Query Parameters

  • The ID of the data set to use.

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

  • Include minimum payload for profiling results. If set to true, only minimum required details for DPS are available in the response.

    Default: false

Response

A data profile holds the data profiling controls, options and results of a data set.

Status Code

  • Success.

  • You are not authorized to get the data profile you specified.

  • You are not permitted to perform this action.

  • The data profile you specified cannot be found.

  • An error occurred. The data profile you specified cannot be fetched.

No Sample Response

This method does not specify any sample responses.

Delete data profile

Status: Complete

Deletes a specified data profile in a project or catalog, provided the caller has the necessary rights to do so.

The data profile is not deleted if the profiling process is still running unless the stop_in_progress_runs parameter is set to true.

DELETE /v2/data_profiles/{profile_id}

Request

Path Parameters

  • The profile ID to use.

Query Parameters

  • The ID of the data set to use.

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

  • Whether to stop all running profiling processes. Data profiles that are running must be stopped before they can be deleted.

    Default: false

  • Whether to use Metadata enrichment for profiling. If set to true, Metadata enrichment features are eanbled (will use new Lite services).

    Default: false

Response

Status Code

  • Success.

  • You are not authorized to delete data profiles.

  • You are not permitted to perform this action.

  • Data profile not found.

  • Data source not supported for profiling.

  • An error occurred. The data profile cannot be deleted.

No Sample Response

This method does not specify any sample responses.

Update data profile

Status: Complete

Updates a data profile in the project or catalog specified in the data profile, provided the caller has the necessary rights to do so.

During update, the entire data profile is replaced, apart from any read-only or response-only attributes.

If the profiling processes is running and the start parameter is set to true, then a data profile is only updated if the stop_in_progress_runs parameter is set to true.

The updates must be specified by using the JSON patch format, described in RFC 6902.

AMQP 1.0 Messages

When a data profile is modified, a message is fired with a state of the modified data profile in the body.

Topic

v2.data_profiles.:guid.PATCH

Subscribe to it by using "v2.data_profiles.*.PATCH" Binding Key.

Example Message

Topic: v2.data_profiles.5210c7d-cf6b-4204-95d2-95d84ecbe382.PATCH

Message:

{
 "event": "UPDATE_DATA_PROFILE",
 "actor": {          
   "user_name": "john@acme.com",           
 },
 "published": "2015-05-10T15:04:15Z",
 "url": { /* The href of the DataProfile created */}
 "status_code": { /* The Http Status code , 200 if the DataProfile is updated successfully */}
 "state": { /* the data profile object equivalent to the one obtained by GET /v2/data_profiles/{profile_id} API */ }
 "details": {
    "catalog_id": "f3c59258-abdd-4e24-828b-0495ec519339",
    "dataset_id": "e522db21-59e8-44ab-81b2-bb40c3030a6f",
    "profile_id": "5165d439-96f0-40d4-90b2-93795deab61b",
    "is_governed": false { /* set to true if the catalog is_governed else set it to false}
  }
}
PATCH /v2/data_profiles/{profile_id}

Request

Path Parameters

  • The profile ID to use.

Query Parameters

  • The ID of the data set to use.

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

  • Whether to stop all running profiling processes. Data profiles that are running must be stopped before they can be deleted.

    Default: false

  • Whether to use Metadata enrichment for profiling. If set to true, Metadata enrichment features are eanbled (will use new Lite services).

    Default: false

  • Whether to start the profiling service immediately after the data profile is updated.

The updates to make in the data profile.

Response

A data profile holds the data profiling controls, options and results of a data set.

Status Code

  • Success.

  • You are not authorized to update the data profile you specified.

  • You are not permitted to perform this action.

  • The data profile you specified cannot be found.

  • An error occurred. The data profile you specified cannot be updated.

No Sample Response

This method does not specify any sample responses.

Update data profiles

Status: Complete

Updates data profiles in the project or catalog for one or more assets, provided the caller has the necessary rights to do so.

During update, the entire data profiles are replaced, apart from any read-only or response-only attributes.

If any profiling process is running and the start parameter is set to true, then a data profile is only updated if the stop_in_progress_runs parameter is set to true.

The updates must be specified by using the JSON patch format, described in RFC 6902.

AMQP 1.0 Messages

When a data profile is modified, a message is fired with a state of the modified data profile in the body.

Topic

v2.data_profiles.:guid.PATCH

Subscribe to it by using "v2.data_profiles.*.PATCH" Binding Key.

Example Message

Topic: v2.data_profiles.5210c7d-cf6b-4204-95d2-95d84ecbe382.PATCH Message:

{
 "event": "UPDATE_DATA_PROFILE",
 "actor": {          
   "user_name": "john@acme.com",           
 },
 "published": "2015-05-10T15:04:15Z",
 "url": { /* The href of the DataProfile created */}
 "status_code": { /* The Http Status code , 200 if the DataProfile is updated successfully */}
 "state": { /* the data profile object equivalent to the one obtained by GET /v2/data_profiles/{profile_id} API */ }
 "details": {
    "catalog_id": "f3c59258-abdd-4e24-828b-0495ec519339",
    "dataset_id": "e522db21-59e8-44ab-81b2-bb40c3030a6f",
    "profile_id": "5165d439-96f0-40d4-90b2-93795deab61b",
    "is_governed": false { /* set to true if the catalog is_governed else set it to false}
  }
}
POST /v2/data_profiles/bulk

Request

Query Parameters

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

The updates to make in the one or more data profiles.

Response

Contains updates to more than one asset via a POST request, as specified by the JSON patch format in RFC 6902

Status Code

  • Success.

  • You are not authorized to update the data profile you specified.

  • You are not permitted to perform this action.

  • The catalog / project you specified cannot be found.

  • An error occurred. The catalog / project you specified cannot be updated.

No Sample Response

This method does not specify any sample responses.

Stop profiling process

Status: Complete

Stops an in-progress profiling run in the specified project or catalog, provided the caller has the necessary rights to do so. This API will request the action to be performed and return, not perform the action and wait for it to complete.

PUT /v2/data_profiles/{profile_id}/execution

Request

Path Parameters

  • The profile ID to use.

Query Parameters

  • The ID of the data set to use.

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

  • Whether to use Metadata enrichment for profiling. If set to true, Metadata enrichment features are eanbled (will use new Lite services).

    Default: false

The requested action to perform on the profile run.

Response

Status Code

  • Requested.

  • You are not authorized to stop the profiling process.

  • You are not permitted to perform this action.

  • The data profile you specified cannot be found.

  • An error occurred. The profiling process cannot be stopped.

No Sample Response

This method does not specify any sample responses.

Get profiling logs

Status: Complete

Get the logs for the data profile job run on data set in a project or catalog.

GET /v2/data_profiles/{profile_id}/logs

Request

Path Parameters

  • The profile ID to use.

Query Parameters

  • The ID of the data set to use.

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

Response

A collection of data profile job run log entries.

Status Code

  • Success.

  • You are not authorized to get the profiling logs.

  • You are not permitted to perform this action.

  • The data profile you specified cannot be found.

  • An error occurred. Failed to get profiling logs.

No Sample Response

This method does not specify any sample responses.

Get the list of data quality dimensions available.

Status: Complete

Get the list of data quality dimensions available.

GET /v2/data_profiles/dqdimensions

Request

No Request Parameters

This method does not accept any request parameters.

Response

A collection of data quality dimensions.

Status Code

  • Success.

  • You are not permitted to perform this action.

  • An error occurred. Failed to get quality dimensions.

No Sample Response

This method does not specify any sample responses.

Modify asset level classification

Status: Complete

Modifies asset level classification detail in the data_profile attribute in the specified project or catalog, provided the caller has the necessary rights to do so. This API is used for CRUD operations on asset level classification.

The patch request for classification should contain the classification details that are to be added to the data_profile attribute.

The updates must be specified by using the JSON patch format, described in RFC 6902.

PATCH /v2/data_profiles/classification

Request

Query Parameters

  • The ID of the data set to use.

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

  • Whether to use Metadata enrichment for profiling. If set to true, Metadata enrichment features are eanbled (will use new Lite services).

    Default: false

The asset level classification details that are added to the data_profile attribute.

Response

Custom data to be associated with a given object

Status Code

  • Success.

  • Invalid classification details provided as part of the patch call.

  • You are not authorized to modify the data_profile attribute with asset level classification details.

  • You are not permitted to perform this action.

  • The asset classification cannot be found.

  • An error occurred. The data_profile attribute cannot be modified with asset level classification detail.

No Sample Response

This method does not specify any sample responses.

Export data profile

Status: Complete

Export data profile of dataset in a project or catalog. (For internal use only)

GET /v2/data_profiles/export

Request

Query Parameters

  • The ID of the data set to use.

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

Response

Status Code

  • Success.

  • You are not authorized to persist results.

  • You are not permitted to perform this action.

  • Asset or profile is missing

  • An error occurred. The profiling results cannot be saved.

  • This API is not Implemented.

No Sample Response

This method does not specify any sample responses.

Import data profile

Status: Complete

Import data profile of dataset in a project or catalog. (For internal use only)

POST /v2/data_profiles/import

Request

Query Parameters

  • The ID of the data set to use.

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

The data profile to import.

Response

Status Code

  • Success.

  • You are not authorized to persist results.

  • You are not permitted to perform this action.

  • Asset or profile is missing

  • An error occurred. The profiling results cannot be saved.

  • This API is not Implemented.

No Sample Response

This method does not specify any sample responses.

This filters rows from the frequency distribution.

This filters rows from the frequency distribution.

POST /v2/data_profiles/{profile_id}/unique_values

Request

Path Parameters

  • The profile ID to use.

filters to get frequency distribution

Response

list of frequency distribution result of the column

Status Code

  • Success.

  • You are not authorized to get the key analysis you specified.

  • You are not permitted to perform this action.

  • The key analysis task you specified cannot be found.

  • An error occurred. The data profile you specified cannot be fetched.

No Sample Response

This method does not specify any sample responses.

Get data profile options

Status: Complete

Get the data profile options for the Account specified in the IAM token. If the account level data profile options is not available check if it is specified at project or catalog account level, provided the caller has the necessary rights to do so.

GET /v2/data_profiles/options

Request

Query Parameters

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

  • Whether to use Metadata enrichment for profiling. If set to true, Metadata enrichment features are eanbled (will use new Lite services).

    Default: false

Response

Definition of a data profile options.

Status Code

  • Success.

  • You are not permitted to perform this action.

  • You are not authorized to list the available data profiles options.

  • Not Found.

  • An error occurred. The data profiles options cannot be listed.

  • This API is not Implemented.

No Sample Response

This method does not specify any sample responses.

Create data profile options

Status: Complete

Creates a data profile options for a given Account Id in the specified project or catalog, provided the caller has the necessary rights to do so.

POST /v2/data_profiles/options

Request

Query Parameters

  • Whether to use Metadata enrichment for profiling. If set to true, Metadata enrichment features are eanbled (will use new Lite services).

    Default: false

The data profile option to create.

Response

Definition of a data profile options.

Status Code

  • Success.

  • You are not authorized to create data profile options.

  • You are not permitted to perform this action.

  • The data profile options cannot be found.

  • An error occurred. The data profile options cannot be created.

  • This API is not Implemented.

No Sample Response

This method does not specify any sample responses.

Delete data profile options

Status: Complete

Delete the list of data profile options in the specified project or catalog, provided the caller has the necessary rights to do so. If the user specifies the catalog_id or the project_id then the data profile options specified for the catalog or project is deleted. If none of the query parameters,catalog_id or project_id is specified, the default is to delete the account level data profile options.

DELETE /v2/data_profiles/options

Request

Query Parameters

  • Comma separated list of the BSS Account IDs to use (restriced usage).

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

  • Whether to use Metadata enrichment for profiling. If set to true, Metadata enrichment features are eanbled (will use new Lite services).

    Default: false

Response

Status Code

  • Success.

  • You are not permitted to perform this action.

  • You are not authorized to list the available data profiles options.

  • Not Found.

  • An error occurred. The data profiles options cannot be listed.

  • This API is not Implemented.

No Sample Response

This method does not specify any sample responses.

Update the data profile options.

Status: Complete

Updates the data profile options for a given Account in the specified project or catalog, provided the caller has the necessary rights to do so. The data profile options that can be modified are max_row_count,row_percentage,max_distribution_size,max_numeric_stats_bin disabled flag in classification options,ibm_class_codes and custom_class_codes.

If the user specifies the catalog_id or the project_id then the data profile options specified for the catalog or project is updated. Update the account level data profile options if catalog_id or project_id is not specified.

PATCH /v2/data_profiles/options

Request

Query Parameters

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

  • Whether to use Metadata enrichment for profiling. If set to true, Metadata enrichment features are eanbled (will use new Lite services).

    Default: false

The data profile options to add.

Response

Definition of a data profile options.

Status Code

  • Success.

  • You are not authorized to update the data profile options.

  • You are not permitted to perform this action.

  • The data profile options you specified cannot be found.

  • An error occurred. The data profile options cannot be updated.

  • This API is not Implemented.

No Sample Response

This method does not specify any sample responses.

Persist profiling results

Status: Complete

Persist profiling results of dataset in a project or catalog. (For internal use only)

POST /v2/data_profiles/results

Request

Query Parameters

  • The ID of the data set to use.

  • The tenant ID to use.

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

  • The ID to be used for tracking end to end flow.

The data profile option to create.

Response

Status Code

  • Success.

  • You are not authorized to persist results.

  • You are not permitted to perform this action.

  • Asset or profile is missing

  • An error occurred. The profiling results cannot be saved.

  • This API is not Implemented.

No Sample Response

This method does not specify any sample responses.

Update data profile results status

Status: Complete

Update data profile result status of dataset in a project or catalog. (For internal use only)

POST /v2/data_profiles/results/status

Request

Query Parameters

  • The ID of the data set to use.

  • The tenant ID to use.

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

  • The ID to be used for tracking end to end flow.

The data profile result status to update.

Response

Status Code

  • Success.

  • You are not authorized to update data profile result status.

  • You are not permitted to perform this action.

  • Asset or profile is missing

  • An error occurred. The data profile result status cannot be saved.

  • This API is not Implemented.

No Sample Response

This method does not specify any sample responses.

Migrate data profile quality results to new Data Quality service

Status: Complete

Migrate data profile quality results of dataset in a project or catalog to new Data Quality service.

POST /v2/data_profiles/migrate

Request

Query Parameters

  • The ID of the catalog to use. catalog_id or project_id is required.

  • The ID of the project to use. catalog_id or project_id is required.

  • The ID of the data set to use.(Use comma separated data set Id's for multiple data sets)

Response

Migration status logging to track progress.

Status Code

  • Successfully initiated migration process.

  • Bad request. Provided parameters could be invalid.

  • You are not authorized, either token is expired or invalid.

  • You are not permitted to perform this action. Only Editor or Admin are allowed.

  • Catalog or Project not found.

  • An error occurred. The profiling results cannot be migrated to data quality service.

  • This API is not Implemented.

No Sample Response

This method does not specify any sample responses.

List Hummingbird tasks

Status: Complete

Get the list of Hummingbird tasks for a specified accout or type, provided the caller has the necessary rights to do so.

GET /v1/hb_tasks

Request

Query Parameters

  • The BSS Account ID to use.

  • The type of the job.

  • Fetch complete details of job.

    Default: false

Response

Collection of HB tasks.

Status Code

  • Success.

  • You are not permitted to perform this action.

  • You are not authorized to list the available Hummingbird tasks.

  • Not Found.

  • An error occurred. The HB tasks cannot be listed.

No Sample Response

This method does not specify any sample responses.

Create a Hummingbird task

Status: Complete

Creates a Hummingbird task entry job.

POST /v1/hb_tasks

Request

The Hummingbird task to create.

Response

An HbTaskResponse holds details about Hummingbird job and the status of task in queue.

Status Code

  • Success.

  • You are not authorized to create a Hummingbird task.

  • You are not permitted to perform this action.

  • The data profile cannot be found.

  • An error occurred. The Hummingbird task cannot be created.

No Sample Response

This method does not specify any sample responses.

Stop Hummingbird tasks

Status: Complete

Stops given Hummingbird task ids. If the Hummingbird task is already completed or is not found then it will be ignored. If the task is locked by other process then it will be ignored as well.

POST /v1/hb_tasks/stop

Request

The Hummingbird task ids to stop.

Response

A StopHbTasksResponse holds details about stop Hummingbird tasks response.

Status Code

  • Success.

  • You are not authorized to cancel Hummingbird tasks.

  • You are not permitted to perform this action.

  • An error occurred. The Hummingbird tasks cannot be stopped.

No Sample Response

This method does not specify any sample responses.

Delete Hummingbird tasks

Status: Complete

Delete given Hummingbird task ids. If a Hummingbird task is not found then it will be ignored. If the Hummingbird task is running and stop_in_progress_job is not true then it will be ignored. If the task is locked by other process then it will be ignored as well.

POST /v1/hb_tasks/delete

Request

Query Parameters

  • Stop running job.

    Default: false

The Hummingbird task ids to delete.

Response

A StopHbTasksResponse holds details about stop Hummingbird tasks response.

Status Code

  • Success.

  • You are not authorized to cancel a Hummingbird task.

  • You are not permitted to perform this action.

  • An error occurred. The Hummingbird tasks cannot be deleted.

No Sample Response

This method does not specify any sample responses.

Get HB task

Status: Complete

Gets a Hummingbird task.

GET /v1/hb_tasks/{hb_task_id}

Request

Path Parameters

  • The ID of the HB task to use.

Response

An HbTaskResponse holds details about Hummingbird job and the status of task in queue.

Status Code

  • Success.

  • You are not authorized to get the data profile you specified.

  • You are not permitted to perform this action.

  • The HB task you specified cannot be found.

  • An error occurred. The HB task you specified cannot be fetched.

No Sample Response

This method does not specify any sample responses.

Delete Hummingbird task

Status: Complete

Deletes a specified Hummingbird task.

This api will throw an exception if stop_in_progress_job parameter is not true and if job is running.

DELETE /v1/hb_tasks/{hb_task_id}

Request

Path Parameters

  • The ID of the HB task to use.

Query Parameters

  • Stop running job.

    Default: false

Response

Status Code

  • Success.

  • You are not authorized to delete Hummingbird task.

  • You are not permitted to perform this action.

  • Hummingbird task not found.

  • An error occurred. The Hummingbird task cannot be deleted.

No Sample Response

This method does not specify any sample responses.

Start Hummingbird task

Status: Complete

Start the specified Hummingbird task, if it is in QUEUED state.

The Hummingbird task is starte in engine, if it is in queued state

POST /v1/hb_tasks/{hb_task_id}/start

Request

Path Parameters

  • The ID of the HB task to use.

Response

Status Code

  • Success.

  • The Hummingbird task is not QUEUED.

  • You are not authorized to start Hummingbird task.

  • You are not permitted to perform this action.

  • Hummingbird task not found.

  • An error occurred. The failed to start Hummingbird task.

No Sample Response

This method does not specify any sample responses.

Stop Hummingbird task

Status: Complete

Stop the specified Hummingbird task.

The Hummingbird task is force stopped in engine

POST /v1/hb_tasks/{hb_task_id}/stop

Request

Path Parameters

  • The ID of the HB task to use.

Response

Status Code

  • Success.

  • You are not authorized to delete Hummingbird task.

  • You are not permitted to perform this action.

  • Hummingbird task not found.

  • An error occurred. The failed to stop Hummingbird task.

No Sample Response

This method does not specify any sample responses.

Get Hummingbird task logs

Status: Complete

Get the spark job logs for Hummingbird task. In order to retrieve the job logs, the HB spark job must be successfully submitted. This will generate a job_id. When successful, this api would return the Hummingbird spark job log.

GET /v1/hb_tasks/{hb_task_id}/logs

Request

Path Parameters

  • The ID of the HB task to use.

Response

Status Code

  • Success.

  • You are not authorized to get Hummingbird task logs.

  • You are not permitted to perform this action.

  • Hummingbird task not found.

  • An error occurred. Failed to retrieve Hummingbird task logs.

No Sample Response

This method does not specify any sample responses.

Get service information

Status: Complete

Returns the service version.

GET /v1/hb_tasks/version

Request

No Request Parameters

This method does not accept any request parameters.

Response

Version information about a service

Status Code

  • Success.

  • An error occurred. No information about the service can be returned.

No Sample Response

This method does not specify any sample responses.

Get data quality assets

Get a list of data quality assets.

GET /data_quality/v4/assets

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.assets.read

    User must be a collaborator for the container

Request

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The start token of the resource from where the page should begin. If omitted, begins with first resource.

    Possible values: 1 ≤ length ≤ 512

    Example: g1AAAAA-eJzLYWBgYMpgSmHgKy5JLCrJTq2MT8lPzkzJBYqzmxiYWJiZGYGkOWDSyBJZAPCBD58

  • The maximum number of resources to return.

    Possible values: 1 ≤ value ≤ 200

    Default: 200

    Example: 20

  • If true include the children in the returned resource. If false, only return the resource without its eventual children.

    Default: false

  • The type of the resource to search. If omitted, filtering on type is not applied

    Possible values: 1 ≤ length ≤ 200

Response

A collection of data quality assets.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the list of data quality assets.

  • An error occurred. The list of data quality assets cannot be returned.

Example responses
  • {"total_count":1,"limit":200,"first":{"href":"https://cloud.ibm.com/data_quality/v4/assets?limit=200"},"assets":[{"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a","name":"CUSTOMERS","type":"data_asset","native_id":"8ddc659c-b155-498d-b310-4ac8cf629ccc/9a1f3644-3ad4-47be-8eb5-006d367c8702","weight":1,"creator_id":"SYSTEM","created_at":"2022-02-02T10:51:02.000Z"}]}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Create Data quality assets

Create a data quality asset.

POST /data_quality/v4/assets

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.assets.create

    User must be either Admin(administrator) or Editor for the container

Request

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

Data quality asset to create.

Example: {"native_id":"8ddc659c-b155-498d-b310-4ac8cf629ccc/9a1f3644-3ad4-47be-8eb5-006d367c8702","name":"CUSTOMERS","type":"data_asset","weight":1}

Response

A data asset on which data quality is measured.

Status Code

  • Success

  • The given payload is invalid and the asset is not created.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to create a data quality asset.

  • The data quality asset exists already and cannot be created.

  • An error occurred. The data quality asset cannot be created.

Example responses
  • {"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a","name":"CUSTOMERS","type":"data_asset","native_id":"8ddc659c-b155-498d-b310-4ac8cf629ccc/9a1f3644-3ad4-47be-8eb5-006d367c8702","weight":1,"creator_id":"SYSTEM","created_at":"2022-02-02T10:51:02.000Z"}
  • {"trace":"6vbjp9d2t4s9b2ckyspdw4vft","status_code":400,"errors":[{"code":"missing_required_field","message":"Bad Request: {\"trace\":\"8f7b7693-1f08-4b4a-b2bd-5732d06ad19e\", \"errors\":[{\"code\":\"invalid_parameter\", \"message\":\"COMSV3006E: Missing or Invalid asset id\", \"target\":{\"name\":\"asset\",\"type\":\"parameter\"}}]}"}]}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"28izpw5l1a4orh823i6bkqmm","status_code":409,"errors":[{"code":"already_exists","message":"The dimension with name 'Completeness' already exists."}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Get a data quality asset

Get the data quality asset with the given identifier.

GET /data_quality/v4/assets/{id}

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.assets.read

    User must be a collaborator for the container

Request

Path Parameters

  • The data quality asset identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • If true include the children in the returned resource. If false, only return the resource without its eventual children.

    Default: false

Response

A data asset on which data quality is measured.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the data quality asset.

  • The data quality asset with the given ID cannot be found.

  • An error occurred. The data quality asset cannot be returned.

Example responses
  • {"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a","name":"CUSTOMERS","type":"data_asset","native_id":"8ddc659c-b155-498d-b310-4ac8cf629ccc/9a1f3644-3ad4-47be-8eb5-006d367c8702","weight":1,"creator_id":"SYSTEM","created_at":"2022-02-02T10:51:02.000Z"}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Delete data quality asset

Delete the data quality asset with the given identifier and all its children recursively

DELETE /data_quality/v4/assets/{id}

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.assets.delete

    User must be either Admin(administrator) or Editor for the container

Auditing

Calling this method generates the following auditing event, depending on any listed conditions.

  • wdp-data_quality.issue.delete

    Tracking event with action name 'wdp-data_quality.issue.delete' is logged as the asset related issues are deleted.

Request

Path Parameters

  • The data quality asset identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • If true, delete all children recursively. Otherwise, only selected one is deleted.

    Default: false

Response

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to delete the data quality asset.

  • The data quality asset cannot be found.

  • An error occurred. The data quality asset cannot be deleted.

Example responses
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Update or patch a data quality asset

Update a data quality asset as specified in the payload details of the request.

The updates must be specified by using the JSON patch format, described in RFC 6902.

The following attributes can be updated: - /name (value can only be replaced) - /weight (value can only be replaced)

PATCH /data_quality/v4/assets/{id}

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.assets.update

    User must be either Admin(administrator) or Editor for the container

Request

Path Parameters

  • The data quality asset identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

The updates to make in the data quality rule.

Example: [{"op":"replace","path":"/description","value":"The proportion of data stored against the potential for 100% of the data."}]

Response

A data asset on which data quality is measured.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to update the data quality asset.

  • The data quality asset with the given ID cannot be found.

  • An error occurred. The data quality asset cannot be updated.

Example responses
  • {"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a","name":"CUSTOMERS","type":"data_asset","native_id":"8ddc659c-b155-498d-b310-4ac8cf629ccc/9a1f3644-3ad4-47be-8eb5-006d367c8702","weight":1,"creator_id":"SYSTEM","created_at":"2022-02-02T10:51:02.000Z"}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Search data quality asset with given native id and type

Search for a data quality asset by its native id and type

POST /data_quality/v4/search_dq_asset

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.assets.read

    User must be a collaborator for the container

Request

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The native id, as known by the DQ producer, of the resource to search. If not provided, other identity parameters must be provided.

    Possible values: 1 ≤ length ≤ 500

  • The type of the resource to search. If omitted, filtering on type is not applied

    Possible values: 1 ≤ length ≤ 200

  • The IBM Knowledge Catalog asset ID in cams. If omitted, the field is not set.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • If true include the children in the returned resource. If false, only return the resource without its eventual children.

    Default: false

Response

A data asset on which data quality is measured.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to search data quality assets.

  • The data quality asset cannot be found.

  • An error occurred. The data quality asset cannot be searched.

Example responses
  • {"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a","name":"CUSTOMERS","type":"data_asset","native_id":"8ddc659c-b155-498d-b310-4ac8cf629ccc/9a1f3644-3ad4-47be-8eb5-006d367c8702","weight":1,"creator_id":"SYSTEM","created_at":"2022-02-02T10:51:02.000Z"}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Get data quality checks

Get a list of data quality checks.

GET /data_quality/v4/checks

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.checks.read

    User must be a collaborator for the container

Request

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The start token of the resource from where the page should begin. If omitted, begins with first resource.

    Possible values: 1 ≤ length ≤ 512

    Example: g1AAAAA-eJzLYWBgYMpgSmHgKy5JLCrJTq2MT8lPzkzJBYqzmxiYWJiZGYGkOWDSyBJZAPCBD58

  • The maximum number of resources to return.

    Possible values: 1 ≤ value ≤ 200

    Default: 200

    Example: 20

  • If true include the children in the returned resource. If false, only return the resource without its eventual children.

    Default: false

  • The type of the resource to search. If omitted, filtering on type is not applied

    Possible values: 1 ≤ length ≤ 200

Response

A collection of data quality checks.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the list of data quality checks.

  • An error occurred. The list of data quality checks cannot be returned.

Example responses
  • {"total_count":1,"limit":200,"first":{"href":"https://cloud.ibm.com/data_quality/v4/checks?limit=200"},"checks":[{"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a","name":"check_uniqueness_of_id","dimension":{"id":"371114cd-5516-4691-8b2e-1e66edf66486","name":"COMPLETENESS","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"type":"data_rule","native_id":"8ddc659c-b155-498d-b310-4ac8cf629ccc/9a1f3644-3ad4-47be-8eb5-006d367c8702","creator_id":"SYSTEM","created_at":"2022-02-02T10:51:02.000Z"}]}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Create data quality checks

Create a data quality check.

POST /data_quality/v4/checks

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.checks.create

    User must be either Admin(administrator) or Editor for the container

Request

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

Data quality check to create.

Example: {"dimension":{"id":"371114cd-5516-4691-8b2e-1e66edf66486"},"name":"check_uniqueness_of_id","type":"data_rule","native_id":"8ddc659c-b155-498d-b310-4ac8cf629ccc/9a1f3644-3ad4-47be-8eb5-006d367c8702"}

Response

A data quality check, i.e. an action to measure data quality.

Status Code

  • Success

  • The given payload is invalid and the check is not created.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to create a data quality check.

  • The data quality check exists already and cannot be created.

  • An error occurred. The data quality check cannot be created.

Example responses
  • {"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"check_uniqueness_of_id","dimension":{"id":"371114cd-5516-4691-8b2e-1e66edf66486","name":"COMPLETENESS","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"type":"data_rule","native_id":"4cdcd382-4e3a-4537-b7ae-09993acee4cf/3e51167c-6eb2-4069-96dc-5d6df808fd47","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"}
  • {"trace":"6vbjp9d2t4s9b2ckyspdw4vft","status_code":400,"errors":[{"code":"missing_required_field","message":"Bad Request: {\"trace\":\"8f7b7693-1f08-4b4a-b2bd-5732d06ad19e\", \"errors\":[{\"code\":\"invalid_parameter\", \"message\":\"COMSV3006E: Missing or Invalid asset id\", \"target\":{\"name\":\"asset\",\"type\":\"parameter\"}}]}"}]}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"28izpw5l1a4orh823i6bkqmm","status_code":409,"errors":[{"code":"already_exists","message":"The dimension with name 'Completeness' already exists."}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Get a data quality check

Get the data quality check with the given identifier.

GET /data_quality/v4/checks/{id}

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.checks.read

    User must be a collaborator for the container

Request

Path Parameters

  • The data quality check identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • If true include the children in the returned resource. If false, only return the resource without its eventual children.

    Default: false

Response

A data quality check, i.e. an action to measure data quality.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the data quality check.

  • The data quality check with the given ID cannot be found.

  • An error occurred. The data quality check cannot be returned.

Example responses
  • {"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"check_uniqueness_of_id","dimension":{"id":"371114cd-5516-4691-8b2e-1e66edf66486","name":"COMPLETENESS","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"type":"data_rule","native_id":"4cdcd382-4e3a-4537-b7ae-09993acee4cf/3e51167c-6eb2-4069-96dc-5d6df808fd47","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Delete a data quality check

Delete the data quality check with the given identifier and all its children recursively

DELETE /data_quality/v4/checks/{id}

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.checks.delete

    User must be either Admin(administrator) or Editor for the container

Auditing

Calling this method generates the following auditing event, depending on any listed conditions.

  • wdp-data_quality.issue.delete

    Tracking event with action name 'wdp-data_quality.issue.delete' is logged as corresponding issues for check are deleted

Request

Path Parameters

  • The data quality check identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • If true, delete all children recursively. Otherwise, only selected one is deleted.

    Default: false

Response

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to delete the data quality check.

  • The data quality check cannot be found.

  • An error occurred. The data quality check cannot be deleted.

Example responses
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Update or patch a data quality check

Update a data quality check as specified in the payload details of the request.

The updates must be specified by using the JSON patch format, described in RFC 6902.

The following attributes can be updated: - /name (value can only be replace) - /dimension/id (value can be add, remove or replace) - /details (value can be add, remove or replace)

PATCH /data_quality/v4/checks/{id}

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.checks.update

    User must be either Admin(administrator) or Editor for the container

Request

Path Parameters

  • The data quality check identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

The updates to make in the data quality rule.

Example: [{"op":"replace","path":"/description","value":"The proportion of data stored against the potential for 100% of the data."}]

Response

A data quality check, i.e. an action to measure data quality.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to update the data quality check.

  • The data quality check with the given ID cannot be found.

  • An error occurred. The data quality check cannot be updated.

Example responses
  • {"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"check_uniqueness_of_id","dimension":{"id":"371114cd-5516-4691-8b2e-1e66edf66486","name":"COMPLETENESS","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"type":"data_rule","native_id":"4cdcd382-4e3a-4537-b7ae-09993acee4cf/3e51167c-6eb2-4069-96dc-5d6df808fd47","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Search for a data quality check by its native id and type

Search for a data quality check by its native id and type

POST /data_quality/v4/search_dq_check

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.checks.read

    User must be a collaborator for the container

Request

Query Parameters

  • The native id, as known by the DQ producer, of the resource to search.

    Possible values: 1 ≤ length ≤ 500

  • The type of the resource to search.

    Possible values: 1 ≤ length ≤ 200

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • If true include the children in the returned resource. If false, only return the resource without its eventual children.

    Default: false

Response

A data quality check, i.e. an action to measure data quality.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to search data quality checks.

  • The data quality check cannot be found.

  • An error occurred. The data quality check cannot be searched.

Example responses
  • {"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"check_uniqueness_of_id","dimension":{"id":"371114cd-5516-4691-8b2e-1e66edf66486","name":"COMPLETENESS","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"type":"data_rule","native_id":"4cdcd382-4e3a-4537-b7ae-09993acee4cf/3e51167c-6eb2-4069-96dc-5d6df808fd47","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Get a list of data quality dimensions

Get a list of data quality dimensions.

GET /data_quality/v4/dimensions

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.dimensions.read

    Any platform level user.

Request

Query Parameters

  • The start token of the resource from where the page should begin. If omitted, begins with first resource.

    Possible values: 1 ≤ length ≤ 512

    Example: g1AAAAA-eJzLYWBgYMpgSmHgKy5JLCrJTq2MT8lPzkzJBYqzmxiYWJiZGYGkOWDSyBJZAPCBD58

  • The maximum number of resources to return.

    Possible values: 1 ≤ value ≤ 200

    Default: 200

    Example: 20

Response

A collection of data quality dimensions.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the list of data quality dimensions.

  • An error occurred. The list of data quality dimensions cannot be returned.

Example responses
  • {"total_count":1,"limit":200,"first":{"href":"https://cloud.ibm.com/data_quality/v4/dimensions?limit=200"},"dimensions":[{"id":"371114cd-5516-4691-8b2e-1e66edf66486","name":"Completeness","description":"The proportion of data stored against the potential for 100 percent.","is_default":false,"creator_id":"SYSTEM","created_at":"2022-02-01T18:11:02.000Z"}]}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Create a data quality dimension

Create a data quality dimension.

POST /data_quality/v4/dimensions

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.dimensions.create

    User must have the platform administrator permission

Request

Data quality dimension to create.

Example: {"name":"Completeness10","description":"The proportion of data stored against the potential for 100 percent represented as integer 10."}

Response

Status Code

  • Success

  • The given payload is invalid and the dimension is not created.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to create a data quality dimension.

  • The data quality dimension exists already and cannot be created.

  • An error occurred. The data quality dimension cannot be created.

Example responses
  • {"id":"371114cd-5516-4691-8b2e-1e66edf66486","name":"Completeness","description":"The proportion of data stored against the potential for 100 percent.","is_default":false,"creator_id":"SYSTEM","created_at":"2022-02-01T18:11:02.000Z"}
  • {"trace":"6vbjp9d2t4s9b2ckyspdw4vft","status_code":400,"errors":[{"code":"missing_required_field","message":"Bad Request: {\"trace\":\"8f7b7693-1f08-4b4a-b2bd-5732d06ad19e\", \"errors\":[{\"code\":\"invalid_parameter\", \"message\":\"COMSV3006E: Missing or Invalid asset id\", \"target\":{\"name\":\"asset\",\"type\":\"parameter\"}}]}"}]}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"28izpw5l1a4orh823i6bkqmm","status_code":409,"errors":[{"code":"already_exists","message":"The dimension with name 'Completeness' already exists."}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Get the data quality dimension with the given identifier

Get the data quality dimension with the given identifier.

GET /data_quality/v4/dimensions/{id}

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.dimensions.read

    Any platform level user.

Request

Path Parameters

  • The data quality dimension identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Response

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the data quality dimension.

  • The data quality dimension with the given ID cannot be found.

  • An error occurred. The data quality dimension cannot be returned.

Example responses
  • {"id":"371114cd-5516-4691-8b2e-1e66edf66486","name":"Completeness","description":"The proportion of data stored against the potential for 100 percent.","is_default":false,"creator_id":"SYSTEM","created_at":"2022-02-01T18:11:02.000Z"}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Delete the data quality dimension with the given identifier.

Delete the data quality dimension with the given identifier.

All data quality checks associated to this dimension will point to no dimension. All DQ scores stored for this dimension will be deleted

DELETE /data_quality/v4/dimensions/{id}

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.dimensions.delete

    User must have the platform administrator permission.

Request

Path Parameters

  • The data quality dimension identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Response

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to delete the data quality dimension.

  • The data quality dimension cannot be found.

  • An error occurred. The data quality dimension cannot be deleted.

Example responses
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Update a data quality dimension as specified in the payload details of the request

Update a data quality dimension as specified in the payload details of the request.

The updates must be specified by using the JSON patch format, described in RFC 6902.

The following attributes can be updated: - /name (value can only be replaced) - /description (value can be added, removed, or replaced)

PATCH /data_quality/v4/dimensions/{id}

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.dimensions.update

    User must have the platform administrator permission.

Request

Path Parameters

  • The data quality dimension identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

The updates to make in the data quality rule.

Example: [{"op":"replace","path":"/description","value":"The proportion of data stored against the potential for 100% of the data."}]

Response

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to update the data quality dimension.

  • The data quality dimension with the given ID cannot be found.

  • An error occurred. The data quality dimension cannot be updated.

Example responses
  • {"id":"371114cd-5516-4691-8b2e-1e66edf66486","name":"Completeness","description":"The proportion of data stored against the potential for 100 percent.","is_default":false,"creator_id":"SYSTEM","created_at":"2022-02-01T18:11:02.000Z"}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Search for data quality dimensions by name or part of their names

Search for data quality dimensions by name or part of their names

POST /data_quality/v4/search_dq_dimension

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.dimensions.read

    Any platform level user.

Request

Query Parameters

  • The name of the resource to search or a part of the name of the resources to search.

    Possible values: 1 ≤ length ≤ 200

Response

A collection of data quality dimensions.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to search data quality dimensions.

  • An error occurred. The data quality dimension cannot be searched.

Example responses
  • {"total_count":1,"limit":200,"first":{"href":"https://cloud.ibm.com/data_quality/v4/dimensions?limit=200"},"dimensions":[{"id":"371114cd-5516-4691-8b2e-1e66edf66486","name":"Completeness","description":"The proportion of data stored against the potential for 100 percent.","is_default":false,"creator_id":"SYSTEM","created_at":"2022-02-01T18:11:02.000Z"}]}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Get a list of data quality issues

Get a list of data quality issues.

GET /data_quality/v4/issues

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.issues.read

    User must be a collaborator for the container

Request

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The start token of the resource from where the page should begin. If omitted, begins with first resource.

    Possible values: 1 ≤ length ≤ 512

    Example: g1AAAAA-eJzLYWBgYMpgSmHgKy5JLCrJTq2MT8lPzkzJBYqzmxiYWJiZGYGkOWDSyBJZAPCBD58

  • The maximum number of resources to return.

    Possible values: 1 ≤ value ≤ 200

    Default: 200

    Example: 20

  • Comma-separated list of data quality asset identifier to search issues of. If not provided, filtering on asset is not applied.

    Possible values: 1 ≤ length ≤ 10000

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5,b1ba1d22-71a7-4adf-99b2-3c8ba1949710

  • The data quality check identifier to search issues of. If not provided, filtering on a check is not applied.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The name or part of the name of data quality check identifier to search issues of. If not provided, filtering on name of check is not applied.

    Possible values: 1 ≤ length ≤ 200

  • Comma-separated list of data quality dimension identifiers.

    Possible values: 1 ≤ length ≤ 10000

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5,b1ba1d22-71a7-4adf-99b2-3c8ba1949710

  • If true, returns only the latest issue summary of each DQ check. If false, returns the latest and archived issues.

    Default: true

  • The type of the resource to search. If omitted, filtering on type is not applied

    Possible values: 1 ≤ length ≤ 200

  • The issue attribute to sort on. If omitted, sorting on last update time is applied

    Allowable values: [check_name,check_type,check_dimension_name,percent_occurrences,ignored,updated_at]

    Default: updated_at

    Example: check_name

  • The direction to sort with. If omitted, sorting attribute descending is applied

    Allowable values: [asc,desc]

    Default: desc

    Example: asc

Response

A collection of data quality issues.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the list of data quality issues.

  • An error occurred. The list of data quality issues cannot be returned.

Example responses
  • {"total_count":1,"limit":200,"first":{"href":"https://cloud.ibm.com/data_quality/v4/issues?limit=200"},"issues":[{"id":"046605b5-48d9-489e-b846-8ef96a7a1aba","check":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"MY_RULE","native_id":"cdcd382-4e3a-4537-b7ae-09993acee4cf/3e51167c-6eb2-4069-96dc-5d6df808fd47","type":"ANY","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"reported_for":{"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a"},"number_of_occurrences":123,"number_of_tested_records":456789,"creator_id":"SYSTEM","created_at":"2022-02-02T10:51:02.000Z"}]}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Create a data quality issue

Create a data quality issue.

POST /data_quality/v4/issues

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.issues.create

    User must be either Admin(administrator) or Editor for the container

Auditing

Calling this method generates the following auditing event, depending on any listed conditions.

  • wdp-data_quality.issue.create

    Tracking event with action name 'wdp-data_quality.issue.create' is logged

Request

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

Data quality issue to create.

Example: {"check":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b"},"reported_for":{"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a"},"number_of_occurrences":123,"number_of_tested_records":456789,"status":"actual","ignored":false}

Response

A data quality issue, i.e. a data quality problem detected during a check.

Status Code

  • Success

  • The given payload is invalid and the issue is not created.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to create a data quality issue.

  • The data quality issue exists already and cannot be created.

  • An error occurred. The data quality issue cannot be created.

Example responses
  • {"id":"046605b5-48d9-489e-b846-8ef96a7a1aba","check":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"MY_RULE","native_id":"cdcd382-4e3a-4537-b7ae-09993acee4cf/3e51167c-6eb2-4069-96dc-5d6df808fd47","type":"ANY","created_at":"2022-02-02T14:00:45.000Z","creator_id":"SYSTEM"},"reported_for":{"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a"},"number_of_occurrences":123,"number_of_tested_records":456789,"status":"actual","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"}
  • {"trace":"6vbjp9d2t4s9b2ckyspdw4vft","status_code":400,"errors":[{"code":"missing_required_field","message":"Bad Request: {\"trace\":\"8f7b7693-1f08-4b4a-b2bd-5732d06ad19e\", \"errors\":[{\"code\":\"invalid_parameter\", \"message\":\"COMSV3006E: Missing or Invalid asset id\", \"target\":{\"name\":\"asset\",\"type\":\"parameter\"}}]}"}]}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"28izpw5l1a4orh823i6bkqmm","status_code":409,"errors":[{"code":"already_exists","message":"The dimension with name 'Completeness' already exists."}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Get the data quality issue with the given identifier

Get the data quality issue with the given identifier.

GET /data_quality/v4/issues/{id}

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.issues.read

    User must be a collaborator for the container

Request

Path Parameters

  • The data quality issue identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

Response

A data quality issue, i.e. a data quality problem detected during a check.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the data quality issue.

  • The data quality issue with the given ID cannot be found.

  • An error occurred. The data quality issue cannot be returned.

Example responses
  • {"id":"046605b5-48d9-489e-b846-8ef96a7a1aba","check":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"MY_RULE","native_id":"cdcd382-4e3a-4537-b7ae-09993acee4cf/3e51167c-6eb2-4069-96dc-5d6df808fd47","type":"ANY","created_at":"2022-02-02T14:00:45.000Z","creator_id":"SYSTEM"},"reported_for":{"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a"},"number_of_occurrences":123,"number_of_tested_records":456789,"status":"actual","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Update a data quality issue as specified in the payload details of the request.

Update a data quality issue as specified in the payload details of the request.

The updates must be specified by using the JSON patch format, described in RFC 6902.

The following attributes can be updated: - /ignored (value can only be replaced)

PATCH /data_quality/v4/issues/{id}

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.issues.update

    User must be either Admin(administrator) or Editor for the container

Auditing

Calling this method generates the following auditing event, depending on any listed conditions.

  • wdp-data_quality.issue.update

    Tracking event with action name 'wdp-data_quality.issue.update' is logged

Request

Path Parameters

  • The data quality issue identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

The updates to make in the data quality rule.

Example: [{"op":"replace","path":"/description","value":"The proportion of data stored against the potential for 100% of the data."}]

Response

A data quality issue, i.e. a data quality problem detected during a check.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to update the data quality issue.

  • The data quality issue with the given ID cannot be found.

  • An error occurred. The data quality issue cannot be updated.

Example responses
  • {"id":"046605b5-48d9-489e-b846-8ef96a7a1aba","check":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"MY_RULE","native_id":"cdcd382-4e3a-4537-b7ae-09993acee4cf/3e51167c-6eb2-4069-96dc-5d6df808fd47","type":"ANY","created_at":"2022-02-02T14:00:45.000Z","creator_id":"SYSTEM"},"reported_for":{"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a"},"number_of_occurrences":123,"number_of_tested_records":456789,"status":"actual","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Search for a data quality issue by its native id

Search for a data quality issue by its native id

POST /data_quality/v4/search_dq_issue

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.issues.read

    User must be a collaborator for the container

Request

Query Parameters

  • The data quality asset identifier

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The data quality check identifier to search issues of.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

Response

A data quality issue, i.e. a data quality problem detected during a check on a given asset.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to search data quality issues.

  • The data quality issue cannot be found.

  • An error occurred. The data quality issue cannot be searched.

Example responses
  • {"id":"046605b5-48d9-489e-b846-8ef96a7a1aba","check":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"MY_RULE","native_id":"cdcd382-4e3a-4537-b7ae-09993acee4cf/3e51167c-6eb2-4069-96dc-5d6df808fd47","type":"ANY","created_at":"2022-02-02T14:00:45.000Z","creator_id":"SYSTEM"},"reported_for":{"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a"},"number_of_occurrences":123,"number_of_tested_records":456789,"status":"actual","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z","archived_issues":[{"id":"046605b5-48d9-489e-b846-8ef96a7a1aba","check":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"MY_RULE","native_id":"cdcd382-4e3a-4537-b7ae-09993acee4cf/3e51167c-6eb2-4069-96dc-5d6df808fd47","type":"ANY","created_at":"2022-02-02T14:00:45.000Z","creator_id":"SYSTEM"},"reported_for":{"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a"},"number_of_occurrences":123,"number_of_tested_records":456789,"status":"archive","creator_id":"SYSTEM","created_at":"2022-02-01T14:00:45.000Z"}]}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Create several data quality issues. The related DQ assets referenced by their native ID are created if they do not already exist

Create several data quality issues. The related DQ assets referenced by their native ID are created if they do not already exist.

POST /data_quality/v4/create_issues

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.issues.create

    User must be either Admin(administrator) or Editor for the container

Auditing

Calling this method generates the following auditing event, depending on any listed conditions.

  • wdp-data_quality.issue.bulk.create

    Tracking event with action name 'wdp-data_quality.issue.bulk.create' is logged

Request

Query Parameters

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

Data quality issues to create and their related DQ assets.

Example: {"issues":[{"check":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b"},"reported_for":{"native_id":"8ddc659c-b155-498d-b310-4ac8cf629ccc/9a1f3644-3ad4-47be-8eb5-006d367c8702","type":"profile"},"number_of_occurrences":123,"number_of_tested_records":456789,"ignored":false}],"assets":[{"name":"CUSTOMERS","type":"data_asset","native_id":"8ddc659c-b155-498d-b310-4ac8cf629ccc/9a1f3644-3ad4-47be-8eb5-006d367c8702","weight":1}],"existing_checks":[{"id":"6be18374-573a-4cf8-8ab7-e428506e428b"}]}

Response

A collection of data quality issues.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to create data quality issues.

  • An error occurred. The data quality issues cannot be created.

Example responses
  • {"total_count":1,"limit":200,"first":{"href":"https://cloud.ibm.com/data_quality/v4/issues?limit=200"},"issues":[{"id":"046605b5-48d9-489e-b846-8ef96a7a1aba","check":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"MY_RULE","native_id":"cdcd382-4e3a-4537-b7ae-09993acee4cf/3e51167c-6eb2-4069-96dc-5d6df808fd47","type":"ANY","creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"reported_for":{"id":"894d01fd-bdfc-4a4f-b68b-62751e06e06a"},"number_of_occurrences":123,"number_of_tested_records":456789,"creator_id":"SYSTEM","created_at":"2022-02-02T10:51:02.000Z"}]}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

Get a list of data quality scores for a given asset

Get a list of data quality scores for a given asset.

GET /data_quality/v4/scores

Authorization

To call this method, you must be assigned one or more IAM access roles that include the following action, depending on any listed conditions. You can check your access by going to Users > User > Access.

  • dataquality.scores.create

    User must be either Admin(administrator) or Editor for the container

Request

Query Parameters

  • The data quality asset identifier

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The ID of the catalog to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The ID of the project to use. A catalog_id or project_id is required.

    Possible values: 1 ≤ length ≤ 100

  • The data quality dimension identifier. If not provided, filtering on dimension is not applied.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • If true include the children in the returned resource. If false, only return the resource without its eventual children.

    Default: false

  • Score of asset or dimension that is older by given days.

    Default: 0

Response

A collection of data quality scores.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the list of data quality scores.

  • An error occurred. The list of data quality scores cannot be returned.

Example responses
  • {"total_count":100,"asset":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"CUSTOMERS"},"scores":[{"status":"actual","score":0.8,"number_of_checks":1,"timestamp":"2022-02-14T18:11:02Z","dimension_scores":[{"dimension":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"COMPLETENESS","description":"Dimension related to completeness","is_default":false,"creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"score":0.4,"timestamp":"2022-02-14T18:11:02Z"},{"dimension":{"id":"7be18374-573a-4cf8-8ab7-e428506e428b","name":"ACCURACY","description":"Dimension related to accuracy","is_default":false,"creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"score":0.7,"timestamp":"2022-02-13T18:11:02Z"}]},{"status":"archive","score":0.6,"number_of_checks":2,"timestamp":"2022-02-12T18:11:02Z","dimension_scores":[{"dimension":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"COMPLETENESS","description":"Dimension related to completeness","is_default":false,"creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"score":0.23,"timestamp":"2022-02-12T18:11:02Z"}]},{"status":"archive","score":0.7,"number_of_checks":2,"timestamp":"2022-02-11T18:11:02Z","dimension_scores":[{"dimension":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"COMPLETENESS","description":"Dimension related to completeness","is_default":false,"creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"score":0.23,"timestamp":"2022-02-11T18:11:02Z"}]}],"children":[{"asset":{"id":"5be18374-573a-4cf8-8ab7-e428506e428b","name":"ID"},"scores":[{"status":"actual","score":0.8,"number_of_checks":1,"timestamp":"2022-02-14T18:11:02Z","dimension_scores":[{"dimension":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"COMPLETENESS","description":"Dimension related to completeness","is_default":false,"creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"score":0.4,"timestamp":"2022-02-14T18:11:02Z"}]},{"status":"archive","score":0.6,"number_of_checks":1,"timestamp":"2022-02-12T18:11:02Z","dimension_scores":[{"dimension":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"COMPLETENESS","description":"Dimension related to completeness","is_default":false,"creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"score":0.23,"timestamp":"2022-02-12T18:11:02Z"}]},{"status":"archive","score":0.7,"number_of_checks":1,"timestamp":"2022-02-11T18:11:02Z","dimension_scores":[{"dimension":{"id":"6be18374-573a-4cf8-8ab7-e428506e428b","name":"COMPLETENESS","description":"Dimension related to completeness","is_default":false,"creator_id":"SYSTEM","created_at":"2022-02-02T14:00:45.000Z"},"score":0.23,"timestamp":"2022-02-11T18:11:02Z"}]}]}]}
  • {"trace":"3tirwt88tsejqwh801zw88lek","status_code":403,"errors":[{"code":"not_authorized","message":"User IBMid-341983Z157 with role null is not authorized to perform the operation CREATE."}]}
  • {"trace":"cwuhtyfus0m8f6e49e2g6m4hr","status_code":500,"errors":[{"code":"internal_error","message":"An IOException was caught when accessing asset 'cbf21aa7-cb89-4ee8-9817-0f1d86fbe0cd'."}]}

List all data quality rules or a subset of them

Get a list of data quality rules in the project.

GET /data_quality/v3/projects/{project_id}/rules

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The start token of the resource from where the page should begin.

    Possible values: 1 ≤ length ≤ 512

    Example: g1AAAAA-eJzLYWBgYMpgSmHgKy5JLCrJTq2MT8lPzkzJBYqzmxiYWJiZGYGkOWDSyBJZAPCBD58

  • The maximum number of resources to return.

    Possible values: 1 ≤ value ≤ 200

    Default: 200

    Example: 20

  • Comma-separated list of data quality rule identifiers.

    Possible values: 1 ≤ length ≤ 10000

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5,b1ba1d22-71a7-4adf-99b2-3c8ba1949710

Response

A collection of data quality rules to be returned.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the list of data quality rules in the specified project.

  • An error occurred. The list of data quality rules could not be returned.

Example responses
  • {"total_count":100,"limit":50,"first":{"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/rules?limit=50"},"rules":[{"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf","bound_expression":["TEST.table1.col1<=TEST.table2.col2"],"is_valid":true,"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/rules/7b3f3a79-6412-480b-a20c-393a3f7addbf","name":"table1.col1LessOrEqualTable2.col2","description":"The column TEST.table1.col1 has fewer or the same number of values as column TEST.table2.col2","sampling":{"size":2500,"interval":13,"sampling_type":"every_nth"},"output":{"columns":[{"variable_name":"col1","name":"out1","type":"rule_variable","disambiguator":1},{"name":"out2","type":"column","source_column":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}},{"expression":"col1-col2","name":"out4","type":"rule_expression","disambiguator":2},{"metric":"system_time","name":"out5","type":"metric"}],"database":{"records_type":"all_records","update_type":"append","location":{"connection":{"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf"},"schema_name":"TEST","table_name":"output"}},"maximum_record_count":500},"input":{"definitions":[{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":1,"bindings":[{"variable_name":"col1","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}}]},{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":2,"bindings":[{"variable_name":"col2","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col2","type":"column"}}]}]},"joins":[{"type":"inner_join","left_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"right_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93xyz"},"left_column_name":"col1","right_column_name":"col2"}],"dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"apply_all_present_dimensions":false}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Create data quality rule

Create a data quality rule.

POST /data_quality/v3/projects/{project_id}/rules

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Data quality rule to create.

Example: {"name":"table1.col1LessOrEqualTable2.col2","description":"The column TEST.table1.col1 has fewer or the same number of values as column TEST.table2.col2","sampling":{"size":2500,"interval":13,"sampling_type":"every_nth"},"output":{"columns":[{"variable_name":"col1","name":"out1","type":"rule_variable","disambiguator":1},{"name":"out2","type":"column","source_column":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}},{"expression":"col1-col2","name":"out4","type":"rule_expression","disambiguator":2},{"metric":"system_time","name":"out5","type":"metric"}],"database":{"records_type":"all_records","update_type":"append","location":{"connection":{"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf"},"schema_name":"TEST","table_name":"output"}},"maximum_record_count":500},"input":{"definitions":[{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":1,"bindings":[{"variable_name":"col1","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}}]},{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":2,"bindings":[{"variable_name":"col2","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col2","type":"column"}}]}]},"joins":[{"type":"inner_join","left_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"right_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93xyz"},"left_column_name":"col1","right_column_name":"col2"}],"dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"apply_all_present_dimensions":false}

Response

A data quality rule defines an executable applying a boolean expression on bound columns.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to create data quality rules in the specified project.

  • An error occurred. The data quality rule could not be created.

Example responses
  • {"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf","bound_expression":["TEST.table1.col1<=TEST.table2.col2"],"is_valid":true,"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/rules/7b3f3a79-6412-480b-a20c-393a3f7addbf","name":"table1.col1LessOrEqualTable2.col2","description":"The column TEST.table1.col1 has fewer or the same number of values as column TEST.table2.col2","sampling":{"size":2500,"interval":13,"sampling_type":"every_nth"},"output":{"columns":[{"variable_name":"col1","name":"out1","type":"rule_variable","disambiguator":1},{"name":"out2","type":"column","source_column":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}},{"expression":"col1-col2","name":"out4","type":"rule_expression","disambiguator":2},{"metric":"system_time","name":"out5","type":"metric"}],"database":{"records_type":"all_records","update_type":"append","location":{"connection":{"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf"},"schema_name":"TEST","table_name":"output"}},"maximum_record_count":500},"input":{"definitions":[{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":1,"bindings":[{"variable_name":"col1","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}}]},{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":2,"bindings":[{"variable_name":"col2","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col2","type":"column"}}]}]},"joins":[{"type":"inner_join","left_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"right_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93xyz"},"left_column_name":"col1","right_column_name":"col2"}],"dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"apply_all_present_dimensions":false}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Delete data quality rules

Delete the data quality rules for the given list of rule identifiers.

DELETE /data_quality/v3/projects/{project_id}/rules

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • Comma-separated list of data quality rule identifiers.

    Possible values: 1 ≤ length ≤ 10000

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5,b1ba1d22-71a7-4adf-99b2-3c8ba1949710

  • The option to delete related output tables when deleting data quality rules.

    Default: false

  • The option to cancel unfinished jobs before deleting or updating data quality rules.

    Default: false

Response

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to delete the data quality rules in the specified project.

  • An error occurred. The data quality rules cannot be deleted.

Example responses
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Validate data quality rule

Check the validity of the data quality rule.

POST /data_quality/v3/projects/{project_id}/validate_rule

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Data quality rule to validate.

Example: {"name":"table1.col1LessOrEqualTable2.col2","description":"The column TEST.table1.col1 has fewer or the same number of values as column TEST.table2.col2","sampling":{"size":2500,"interval":13,"sampling_type":"every_nth"},"output":{"columns":[{"variable_name":"col1","name":"out1","type":"rule_variable","disambiguator":1},{"name":"out2","type":"column","source_column":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}},{"expression":"col1-col2","name":"out4","type":"rule_expression","disambiguator":2},{"metric":"system_time","name":"out5","type":"metric"}],"database":{"records_type":"all_records","update_type":"append","location":{"connection":{"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf"},"schema_name":"TEST","table_name":"output"}},"maximum_record_count":500},"input":{"definitions":[{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":1,"bindings":[{"variable_name":"col1","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}}]},{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":2,"bindings":[{"variable_name":"col2","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col2","type":"column"}}]}]},"joins":[{"type":"inner_join","left_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"right_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93xyz"},"left_column_name":"col1","right_column_name":"col2"}],"dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"apply_all_present_dimensions":false}

Response

A data quality rule defines an executable applying a boolean expression on bound columns.

Status Code

  • The data quality rule is valid.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to validate data quality rules in the specified project.

  • The data quality rule is invalid. See the error message for the cause.

Example responses
  • {"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf","bound_expression":["TEST.table1.col1<=TEST.table2.col2"],"is_valid":true,"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/rules/7b3f3a79-6412-480b-a20c-393a3f7addbf","name":"table1.col1LessOrEqualTable2.col2","description":"The column TEST.table1.col1 has fewer or the same number of values as column TEST.table2.col2","sampling":{"size":2500,"interval":13,"sampling_type":"every_nth"},"output":{"columns":[{"variable_name":"col1","name":"out1","type":"rule_variable","disambiguator":1},{"name":"out2","type":"column","source_column":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}},{"expression":"col1-col2","name":"out4","type":"rule_expression","disambiguator":2},{"metric":"system_time","name":"out5","type":"metric"}],"database":{"records_type":"all_records","update_type":"append","location":{"connection":{"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf"},"schema_name":"TEST","table_name":"output"}},"maximum_record_count":500},"input":{"definitions":[{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":1,"bindings":[{"variable_name":"col1","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}}]},{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":2,"bindings":[{"variable_name":"col2","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col2","type":"column"}}]}]},"joins":[{"type":"inner_join","left_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"right_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93xyz"},"left_column_name":"col1","right_column_name":"col2"}],"dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"apply_all_present_dimensions":false}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Get data quality rule

Gets the data quality rule with the given identifier.

GET /data_quality/v3/projects/{project_id}/rules/{id}

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The data quality rule identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Response

A data quality rule defines an executable applying a boolean expression on bound columns.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the data quality rule with the given identifier from the specified project.

  • The data quality rule cannot be found.

  • An error occurred. The data quality rule with the given identifier cannot be returned.

Example responses
  • {"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf","bound_expression":["TEST.table1.col1<=TEST.table2.col2"],"is_valid":true,"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/rules/7b3f3a79-6412-480b-a20c-393a3f7addbf","name":"table1.col1LessOrEqualTable2.col2","description":"The column TEST.table1.col1 has fewer or the same number of values as column TEST.table2.col2","sampling":{"size":2500,"interval":13,"sampling_type":"every_nth"},"output":{"columns":[{"variable_name":"col1","name":"out1","type":"rule_variable","disambiguator":1},{"name":"out2","type":"column","source_column":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}},{"expression":"col1-col2","name":"out4","type":"rule_expression","disambiguator":2},{"metric":"system_time","name":"out5","type":"metric"}],"database":{"records_type":"all_records","update_type":"append","location":{"connection":{"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf"},"schema_name":"TEST","table_name":"output"}},"maximum_record_count":500},"input":{"definitions":[{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":1,"bindings":[{"variable_name":"col1","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}}]},{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":2,"bindings":[{"variable_name":"col2","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col2","type":"column"}}]}]},"joins":[{"type":"inner_join","left_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"right_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93xyz"},"left_column_name":"col1","right_column_name":"col2"}],"dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"apply_all_present_dimensions":false}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Delete data quality rule

Delete the data quality rule with the given identifier.

DELETE /data_quality/v3/projects/{project_id}/rules/{id}

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The data quality rule identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The option to delete related output tables when deleting data quality rules.

    Default: false

  • The option to cancel unfinished jobs before deleting or updating data quality rules.

    Default: false

Response

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to delete the data quality rule from the specified project.

  • The data quality rule cannot be found.

  • An error occurred. The data quality rule cannot be deleted.

Example responses
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Update data quality rule

Updates a data quality rule as specified in the payload details of the update rule request. The updates must be specified by using the JSON patch format, described in RFC 6902.

The following attributes can be patched:

  • name (value can only be replaced)
  • definition (value can only be replaced)
  • description (value can be added, removed, or replaced)
  • dimension (value can be added, removed, or replaced)
  • input (value can be added, removed or replaced)
  • output (value can be added, removed, or replaced)
  • joins (value can be added, removed, or replaced)
  • sampling (value can be added, removed, or replaced)
  • data_stage/propagate_all_incoming_columns (value can be added, removed, or replaced)
PATCH /data_quality/v3/projects/{project_id}/rules/{id}

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The data quality rule identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The option to cancel unfinished jobs before deleting or updating data quality rules.

    Default: false

The updates to make in the data quality rule.

Example: [{"op":"replace","path":"/description","value":"Column col1 has fewer or the same number of values as column col2"}]

Response

A data quality rule defines an executable applying a boolean expression on bound columns.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to update the data quality rule in the specified project.

  • The data quality rule cannot be found.

  • An error occurred. The data quality rule was not updated.

Example responses
  • {"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf","bound_expression":["TEST.table1.col1<=TEST.table2.col2"],"is_valid":true,"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/rules/7b3f3a79-6412-480b-a20c-393a3f7addbf","name":"table1.col1LessOrEqualTable2.col2","description":"The column TEST.table1.col1 has fewer or the same number of values as column TEST.table2.col2","sampling":{"size":2500,"interval":13,"sampling_type":"every_nth"},"output":{"columns":[{"variable_name":"col1","name":"out1","type":"rule_variable","disambiguator":1},{"name":"out2","type":"column","source_column":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}},{"expression":"col1-col2","name":"out4","type":"rule_expression","disambiguator":2},{"metric":"system_time","name":"out5","type":"metric"}],"database":{"records_type":"all_records","update_type":"append","location":{"connection":{"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf"},"schema_name":"TEST","table_name":"output"}},"maximum_record_count":500},"input":{"definitions":[{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":1,"bindings":[{"variable_name":"col1","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}}]},{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":2,"bindings":[{"variable_name":"col2","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col2","type":"column"}}]}]},"joins":[{"type":"inner_join","left_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"right_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93xyz"},"left_column_name":"col1","right_column_name":"col2"}],"dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"apply_all_present_dimensions":false}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Run data quality rule

Run the data quality rule with the given identifier.

POST /data_quality/v3/projects/{project_id}/rules/{id}/execute

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The data quality rule identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Response

The representation of a data quality rule execution.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to run the data quality rule in the specified project.

  • The data quality rule cannot be found.

  • An error occurred. The data quality rule cannot be run.

Example responses
  • {"name":"table1.col1LessOrEqualTable2.col2","job":{"id":"aa398b69-3e91-4830-877a-91a8e21f56de"},"job_run":{"id":"aa398b69-3e91-4830-877a-91a8e21f5123"},"status":{"state":"analyzed"},"started_at":"2022-02-01T18:10:02.000Z","ended_at":"2022-02-01T18:11:02.000Z","run_by":"IBMid-270002ABCD","sampling":{"size":2500,"interval":13,"sampling_type":"every_nth"},"input":{"definitions":[{"bound_expression":"TEST.table1.col1<=TEST.table2.col2"}]},"output":{"columns":[{"variable_name":"col1","name":"out1","type":"rule_variable","disambiguator":1},{"name":"out2","type":"column","source_column":{"data_asset":{"id":"aa398b69-3e91-4830-877a-91a8e21f56de"},"column_name":"col1","type":"column"}},{"expression":"col1-col2","name":"out4","type":"rule_expression","disambiguator":2},{"metric":"system_time","name":"out5","type":"metric"}],"database":{"records_type":"all_records","update_type":"append","location":{"connection":{"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf"},"schema_name":"TEST","table_name":"output"}},"maximum_record_count":500},"output_table":{"id":"5d4254a6-0c9e-4a02-bc24-4a89eee06f12"},"tested_record_count":1000,"passing_record_count":987,"failing_record_count":13,"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf","href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/rules/7b3f3a79-6412-480b-a20c-393a3f7addbf/executions/7b3f3a79-6412-480b-a20c-393a3f7adabc"}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Get data quality rule from catalog

Gets the data quality rule from catalog with the given identifier.

GET /data_quality/v3/catalogs/{catalog_id}/rules/{id}

Request

Path Parameters

  • The identifier of the catalog to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The data quality rule identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Response

A data quality rule defines an executable applying a boolean expression on bound columns.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the data quality rule with the given identifier from the specified catalog.

  • The data quality rule cannot be found.

  • An error occurred. The data quality rule with the given identifier cannot be returned.

Example responses
  • {"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf","bound_expression":["TEST.table1.col1<=TEST.table2.col2"],"is_valid":true,"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/rules/7b3f3a79-6412-480b-a20c-393a3f7addbf","name":"table1.col1LessOrEqualTable2.col2","description":"The column TEST.table1.col1 has fewer or the same number of values as column TEST.table2.col2","sampling":{"size":2500,"interval":13,"sampling_type":"every_nth"},"output":{"columns":[{"variable_name":"col1","name":"out1","type":"rule_variable","disambiguator":1},{"name":"out2","type":"column","source_column":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}},{"expression":"col1-col2","name":"out4","type":"rule_expression","disambiguator":2},{"metric":"system_time","name":"out5","type":"metric"}],"database":{"records_type":"all_records","update_type":"append","location":{"connection":{"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf"},"schema_name":"TEST","table_name":"output"}},"maximum_record_count":500},"input":{"definitions":[{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":1,"bindings":[{"variable_name":"col1","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col1","type":"column"}}]},{"definition":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"disambiguator":2,"bindings":[{"variable_name":"col2","target":{"data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"column_name":"col2","type":"column"}}]}]},"joins":[{"type":"inner_join","left_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"right_data_asset":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93xyz"},"left_column_name":"col1","right_column_name":"col2"}],"dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"apply_all_present_dimensions":false}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

List history of all data quality rule run results or a subset of them

Gets the list of data quality rule runs. By default, the runs are sorted newest to oldest.

GET /data_quality/v3/projects/{project_id}/rules/{rule_id}/executions

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The data quality rule identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The start token of the resource from where the page should begin.

    Possible values: 1 ≤ length ≤ 512

    Example: g1AAAAA-eJzLYWBgYMpgSmHgKy5JLCrJTq2MT8lPzkzJBYqzmxiYWJiZGYGkOWDSyBJZAPCBD58

  • The maximum number of resources to return.

    Possible values: 1 ≤ value ≤ 200

    Default: 200

    Example: 20

  • The property name by which the results should be sorted. For descending order, use the hyphen (-) prefix with the value. If you omit this query parameter, the order value is -started_at, which means, results are sorted by the started_at value in descending order. The allowed fields are started_at, passing_record_count, failing_record_count, tested_record_count, status.state.

    Possible values: 1 ≤ length ≤ 128

Response

Data quality rule run history

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the data quality rule history in the specified project.

  • An error occurred. The data quality rule history could not be returned.

Example responses
  • {"limit":20,"total_count":100,"first":{"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/rules/c19cde3a-5940-4c7a-ad0f-ee18f5f29c12/executions?limit=20"},"executions":[{"name":"table1.col1LessOrEqualTable2.col2","description":"The column TEST.table1.col1 has fewer or the same number of values as column TEST.table2.col2","job":{"id":"aa398b69-3e91-4830-877a-91a8e21f56de"},"job_run":{"id":"aa398b69-3e91-4830-877a-91a8e21f5123"},"status":{"state":"analyzed"},"started_at":"2022-02-01T18:10:02.000Z","ended_at":"2022-02-01T18:11:02.000Z","run_by":"IBMid-270002ABCD","sampling":{"size":2500,"interval":13,"sampling_type":"every_nth"},"output":{"columns":[{"variable_name":"col1","name":"out1","type":"rule_variable","disambiguator":1},{"name":"out2","type":"column","source_column":{"data_asset":{"id":"aa398b69-3e91-4830-877a-91a8e21f56de"},"column_name":"col1","type":"column"}},{"expression":"col1-col2","name":"out4","type":"rule_expression","disambiguator":2},{"metric":"system_time","name":"out5","type":"metric"}],"database":{"records_type":"all_records","update_type":"append","location":{"connection":{"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf"},"schema_name":"TEST","table_name":"output"}},"maximum_record_count":500},"output_table":{"id":"5d4254a6-0c9e-4a02-bc24-4a89eee06f12"},"tested_record_count":1000,"bound_expression":["TEST.table1.col1<=TEST.table2.col2"],"passing_record_count":987,"failing_record_count":13,"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf","href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/rules/7b3f3a79-6412-480b-a20c-393a3f7addbf/executions/7b3f3a79-6412-480b-a20c-393a3f7adabc"}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Get the data quality rule run

Gets the data quality rule run result with the given identifier.

GET /data_quality/v3/projects/{project_id}/rules/{rule_id}/executions/{id}

Request

Path Parameters

  • The data quality rule identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The run identifier to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Response

The representation of a data quality rule execution.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the data quality rule run result in the specified project.

  • An error occurred. The result of data quality rule run could not be returned.

Example responses
  • {"name":"table1.col1LessOrEqualTable2.col2","job":{"id":"aa398b69-3e91-4830-877a-91a8e21f56de"},"job_run":{"id":"aa398b69-3e91-4830-877a-91a8e21f5123"},"status":{"state":"analyzed"},"started_at":"2022-02-01T18:10:02.000Z","ended_at":"2022-02-01T18:11:02.000Z","run_by":"IBMid-270002ABCD","sampling":{"size":2500,"interval":13,"sampling_type":"every_nth"},"input":{"definitions":[{"bound_expression":"TEST.table1.col1<=TEST.table2.col2"}]},"output":{"columns":[{"variable_name":"col1","name":"out1","type":"rule_variable","disambiguator":1},{"name":"out2","type":"column","source_column":{"data_asset":{"id":"aa398b69-3e91-4830-877a-91a8e21f56de"},"column_name":"col1","type":"column"}},{"expression":"col1-col2","name":"out4","type":"rule_expression","disambiguator":2},{"metric":"system_time","name":"out5","type":"metric"}],"database":{"records_type":"all_records","update_type":"append","location":{"connection":{"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf"},"schema_name":"TEST","table_name":"output"}},"maximum_record_count":500},"output_table":{"id":"5d4254a6-0c9e-4a02-bc24-4a89eee06f12"},"tested_record_count":1000,"passing_record_count":987,"failing_record_count":13,"id":"7b3f3a79-6412-480b-a20c-393a3f7addbf","href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/rules/7b3f3a79-6412-480b-a20c-393a3f7addbf/executions/7b3f3a79-6412-480b-a20c-393a3f7adabc"}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

List all data quality definitions or a subset of them

Gets the list of all data quality definitions.

GET /data_quality/v3/projects/{project_id}/definitions

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The start token of the resource from where the page should begin.

    Possible values: 1 ≤ length ≤ 512

    Example: g1AAAAA-eJzLYWBgYMpgSmHgKy5JLCrJTq2MT8lPzkzJBYqzmxiYWJiZGYGkOWDSyBJZAPCBD58

  • The maximum number of resources to return.

    Possible values: 1 ≤ value ≤ 200

    Default: 200

    Example: 20

  • Comma-separated list of data quality definition identifiers.

    Possible values: 1 ≤ length ≤ 10000

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5,b1ba1d22-71a7-4adf-99b2-3c8ba1949710

Response

An array of data quality definitions.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the list of data quality definitions in the specified project.

  • An error occurred. The list of data quality definitions cannot be returned.

Example responses
  • {"total_count":100,"limit":200,"first":{"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/definitions?limit=200"},"definitions":[{"description":"Column col1 has fewer or the same number of values as column col2","id":"7b3f3a79-6412-480b-a20c-393a3f7adoi","name":"col1LessOrEqualCol2","expression":"col1 <= col2","dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/definitions/7b3f3a79-6412-480b-a20c-393a3f7addbf"}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Create data quality definition

Creates a data quality definition in the specified project.

POST /data_quality/v3/projects/{project_id}/definitions

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Data quality definition to create.

Example: {"name":"col1LessOrEqualCol2","description":"Column col1 has fewer or the same number of values as column col2","expression":"col1 <= col2","dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"}}

Response

A data quality definition defines a boolean rule along with the variables.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to create a definition in the specified project.

  • An error occurred. The definition was not created.

Example responses
  • {"description":"Column col1 has fewer or the same number of values as column col2","id":"7b3f3a79-6412-480b-a20c-393a3f7adoi","name":"col1LessOrEqualCol2","expression":"col1 <= col2","dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/definitions/7b3f3a79-6412-480b-a20c-393a3f7addbf"}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Delete data quality definitions

Delete the data quality definitions with the given identifiers.

DELETE /data_quality/v3/projects/{project_id}/definitions

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • Comma separated list of data quality definition identifiers.

    Possible values: 1 ≤ length ≤ 10000

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5,b1ba1d22-71a7-4adf-99b2-3c8ba1949710

Response

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to delete the data quality definitions in the specified project or catalog.

  • An error occurred. The data quality definitions cannot be deleted.

Example responses
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Validate data quality definition expression

Validate the specified definition expression.

POST /data_quality/v3/projects/{project_id}/validate_definition

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • True if the expression to validate is an output column expression. False if the expression to validate is a data quality definition expression. Default value is false.

Data quality definition to validate.

Example: {"name":"col1LessOrEqualCol2","description":"Column col1 has fewer or the same number of values as column col2","expression":"col1 <= col2","dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"}}

Response

This response contains the rule expression variables and their types.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to validate the data quality definition in the specified project or catalog.

  • An error occurred. The data quality definitions could not be validated.

Example responses
  • {"variables":[{"name":"col1","type":"numeric","usage":"input_data"},{"name":"col2","type":"numeric","usage":"input_data"}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Get data quality definition

Gets the data quality definition with the given identifier.

GET /data_quality/v3/projects/{project_id}/definitions/{id}

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The data quality definition identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Response

A data quality definition defines a boolean rule along with the variables.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the data quality definition with the given ID from the specified project or catalog.

  • The data quality definition cannot be found.

  • An error occurred. The data quality definition with the given identifier could not be returned.

Example responses
  • {"description":"Column col1 has fewer or the same number of values as column col2","id":"7b3f3a79-6412-480b-a20c-393a3f7adoi","name":"col1LessOrEqualCol2","expression":"col1 <= col2","dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/definitions/7b3f3a79-6412-480b-a20c-393a3f7addbf"}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Replace data quality definition

Replace a data quality definition.

PUT /data_quality/v3/projects/{project_id}/definitions/{id}

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The data quality definition identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Data quality definition to replace.

Example: {"name":"col1LessOrEqualCol2","description":"Column col1 has fewer or the same number of values as column col2","expression":"col1 <= col2","dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"}}

Response

A data quality definition defines a boolean rule along with the variables.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to update data quality definitions in the specified project or catalog.

  • An error occurred. The data quality definition was not updated.

Example responses
  • {"description":"Column col1 has fewer or the same number of values as column col2","id":"7b3f3a79-6412-480b-a20c-393a3f7adoi","name":"col1LessOrEqualCol2","expression":"col1 <= col2","dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/definitions/7b3f3a79-6412-480b-a20c-393a3f7addbf"}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Delete data quality definition

Delete the data quality definition with the given identifier.

DELETE /data_quality/v3/projects/{project_id}/definitions/{id}

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The data quality definition identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Response

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to delete the data quality definition from the specified project.

  • The data quality definition cannot be found.

  • An error occurred. The data quality definition cannot be deleted.

Example responses
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Update data quality definition

Updates a data quality definition as specified in the payload details of the update definition request. The updates must be specified by using the JSON patch format, described in RFC 6902.

The following attributes can be patched.

  • name (value can only be replaced)
  • description (value can be added, removed, or replaced)
  • expression (value can only be replaced)
  • dimension (value can be added, removed, or replaced)
PATCH /data_quality/v3/projects/{project_id}/definitions/{id}

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The data quality definition identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

The updates to make in the data quality definition.

Example: [{"op":"replace","path":"/description","value":"Column col1 has fewer or the same number of values as column col2"}]

Response

A data quality definition defines a boolean rule along with the variables.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to update the data quality definition in the specified project.

  • The data quality definition cannot be found.

  • An error occurred. The data quality definition was not updated.

Example responses
  • {"description":"Column col1 has fewer or the same number of values as column col2","id":"7b3f3a79-6412-480b-a20c-393a3f7adoi","name":"col1LessOrEqualCol2","expression":"col1 <= col2","dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/definitions/7b3f3a79-6412-480b-a20c-393a3f7addbf"}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Get data quality definition from catalog

Gets the data quality definition from catalog with the given identifier.

GET /data_quality/v3/catalogs/{catalog_id}/definitions/{id}

Request

Path Parameters

  • The identifier of the catalog to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The data quality definition identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Response

A data quality definition defines a boolean rule along with the variables.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the data quality definition with the given ID from the specified project or catalog.

  • The data quality definition cannot be found.

  • An error occurred. The data quality definition with the given identifier could not be returned.

Example responses
  • {"description":"Column col1 has fewer or the same number of values as column col2","id":"7b3f3a79-6412-480b-a20c-393a3f7adoi","name":"col1LessOrEqualCol2","expression":"col1 <= col2","dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/definitions/7b3f3a79-6412-480b-a20c-393a3f7addbf"}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Update data quality definition in catlog

Updates a data quality definition as specified in the payload details of the update definition request. The updates must be specified by using the JSON patch format, described in RFC 6902.

The following attributes can be patched.

  • dimension (value can be added, removed, or replaced)
PATCH /data_quality/v3/catalogs/{catalog_id}/definitions/{id}

Request

Path Parameters

  • The identifier of the catalog to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

  • The data quality definition identifier.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

The updates to make in the data quality definition.

Example: [{"op":"replace","path":"/description","value":"Column col1 has fewer or the same number of values as column col2"}]

Response

A data quality definition defines a boolean rule along with the variables.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to update the data quality definition in the specified catalog.

  • The data quality definition cannot be found.

  • An error occurred. The data quality definition was not updated.

Example responses
  • {"description":"Column col1 has fewer or the same number of values as column col2","id":"7b3f3a79-6412-480b-a20c-393a3f7adoi","name":"col1LessOrEqualCol2","expression":"col1 <= col2","dimension":{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93abc"},"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/definitions/7b3f3a79-6412-480b-a20c-393a3f7addbf"}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

List all data quality dimensions

Gets the list of all data quality dimensions

GET /data_quality/v3/projects/{project_id}/dimensions

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Query Parameters

  • The start token of the resource from where the page should begin.

    Possible values: 1 ≤ length ≤ 512

    Example: g1AAAAA-eJzLYWBgYMpgSmHgKy5JLCrJTq2MT8lPzkzJBYqzmxiYWJiZGYGkOWDSyBJZAPCBD58

  • The maximum number of resources to return.

    Possible values: 1 ≤ value ≤ 200

    Default: 200

    Example: 20

Response

A collection of data quality dimensions.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You are not permitted to get data quality dimensions of the specified project.

  • An error occurred. The list of data quality dimensions cannot be returned.

Example responses
  • {"limit":20,"total_count":100,"first":{"href":"https://cloud.ibm.com/data_quality/v3/projects/c19cde3a-5940-4c7a-ad0f-ee18f5f29c00/dimensions?limit=20"},"dimensions":[{"id":"371114cd-5516-4691-8b2e-1e66edf66486","name":"Completeness","description":"The proportion of data stored against the potential for 100%.","creator_id":"SYSTEM","created_at":"2022-02-01T18:11:02.000Z"},{"id":"57561203-36e6-4bb0-adfb-ece981fba845","name":"Uniqueness","description":"No entity instance (`abc`) will be recorded more than once based on how `abc` is identified.","creator_id":"SYSTEM","created_at":"2022-02-01T18:11:02.000Z"},{"id":"a3134282-ed85-4140-ae61-e5f712a61985","name":"Timeliness","description":"The degree to which data represent reality from the required point in time.","creator_id":"SYSTEM","created_at":"2022-02-01T18:11:02.000Z"},{"id":"ec453723-669c-48bb-82c1-11b69b3b8c93","name":"Validity","description":"Data is valid if it conforms to the syntax (format, type, range) of its definition.","creator_id":"SYSTEM","created_at":"2022-02-01T18:11:02.000Z"},{"id":"5f66813e-adb1-4f3f-a65f-40e3066aac07","name":"Accuracy","description":"The degree to which data correctly describes the real world object or event being described.","creator_id":"SYSTEM","created_at":"2022-02-01T18:11:02.000Z"},{"id":"5f66813e-adb1-4f3f-a65f-40e3066aa123","name":"Consistency","description":"The absence of difference when comparing two or more representations of an object against a definition.","creator_id":"SYSTEM","created_at":"2022-02-01T18:11:02.000Z"}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Get project settings for data quality rules

Gets the project settings for data quality rules.

GET /data_quality/v3/projects/{project_id}/settings

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Response

Project settings.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to get the data quality rule settings in the specified project.

  • An error occurred. The project settings for data quality rules could not be returned.

Example responses
  • {"default_else_value":true,"ignore_trailing_spaces":false,"implicit_casting":true,"max_string_length":1024,"allow_quoted_variables":false}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

Replace project settings for data quality rules

Replace project settings for data quality rules.

PUT /data_quality/v3/projects/{project_id}/settings

Request

Path Parameters

  • The identifier of the project to use.

    Possible values: 1 ≤ length ≤ 128

    Example: b1ba1d22-71a7-4adf-99b2-3c8ba19497f5

Project settings for data quality rules.

Example: {"default_else_value":true,"ignore_trailing_spaces":false,"implicit_casting":true,"max_string_length":1024,"allow_quoted_variables":false}

Response

Project settings.

Status Code

  • Success.

  • Your authorization to access this method is missing, invalid, or expired.

  • You do not have permission to define project settings for data quality rules in the specified project.

  • An error occurred. The project settings for data quality rules were not created or updated.

Example responses
  • {"default_else_value":true,"ignore_trailing_spaces":false,"implicit_casting":true,"max_string_length":1024,"allow_quoted_variables":false}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}
  • {"trace":"cfkvi16tv9bimp2rqve666na0","status_code":404,"errors":[{"code":"not_found","message":"Requested resource was not found.","more_info":"https://www.ibm.com/docs/en/cloud-paks/cp-data/4.5.x?topic=rules-creating-data","target":{"type":"field","name":"name"}}]}

List environments.

Returns a list of environments filtered by type, language or spark version in a project or space.

If no filter is provided, it returns all environments in the project or space, which includes all default environments that are available in every project or space and custom environments created by users.

You need to specify either project_id or space_id.

GET /v2/environments

Request

Query Parameters

  • The guid of the project.

    Example: 92ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • Comma-separated list of environment types. Defaults to list of all types.

    Example: notebook,wml_flow

  • Comma-separated list of environment types. Takes precedence over types. Defaults to empty list.

    Example: notebook,wml_flow

  • Comma-separated list of kernel languages. Defaults to empty list.

    Example: python2,python3

  • Comma-separated list of Spark versions. If provided, Spark environments will be filtered by these versions. Defaults to list of all default environments with supported Spark versions and all custom environments.

    Example: 2.3,2.4

Response

A list of environments.

Status Code

  • Success. Returned a list of environments. Format follows v2/assets.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "total_results": 1,
      "resources": [
        {
          "metadata": {
            "name": "my notebook environment",
            "description": "this is my notebook environment",
            "asset_type": "environment",
            "asset_id": "656ca7c3-d971-42c3-918b-a15023cd6b8e",
            "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
            "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
            "owner_id": "IBMid-310000SG2Y",
            "created_at": "2021-10-12T09:18:34.000Z",
            "href": "/v2/environments/656ca7c3-d971-42c3-918b-a15023cd6b8e"
          },
          "entity": {
            "environment": {
              "sub_type": "notebook",
              "display_name": "My Notebook Environment",
              "hardware_specification": {
                "metadata": {
                  "name": "my hardware specification",
                  "description": "this is my hardware specification",
                  "asset_type": "hardware_specification",
                  "asset_id": "2d5191ba-ff9b-4b48-a852-948d49dd9210",
                  "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
                  "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
                  "owner_id": "IBMid-310000SG2Y",
                  "created_at": "2021-08-02T12:00:24.269Z",
                  "updated_at": "2021-08-02T12:00:24.269Z",
                  "href": "/v2/hardware_specifications/2d5191ba-ff9b-4b48-a852-948d49dd9210"
                },
                "entity": {
                  "hardware_specification": {
                    "nodes": {
                      "cpu": {
                        "units": "100m",
                        "model": "string"
                      },
                      "mem": {
                        "size": "8Gi"
                      },
                      "gpu": {
                        "num_gpu": 2,
                        "name": "v100",
                        "gpu_profile": "generic",
                        "mig_profile": "N/A"
                      },
                      "num_nodes": 1,
                      "num_drivers": 1,
                      "drivers": {
                        "cpu": {
                          "units": "100m",
                          "model": "string"
                        },
                        "mem": {
                          "size": "8Gi"
                        }
                      }
                    }
                  }
                }
              },
              "software_specification": {
                "metadata": {
                  "name": "my software specification",
                  "description": "this is my software specification",
                  "asset_type": "software_specification",
                  "asset_id": "555bd074-cc5b-4396-a7f8-5f03d336a8e5",
                  "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
                  "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
                  "owner_id": "IBMid-310000SG2Y",
                  "created_at": "2021-08-02T12:00:24.269Z",
                  "updated_at": "2021-08-02T12:00:24.269Z",
                  "href": "/v2/software_specifications/555bd074-cc5b-4396-a7f8-5f03d336a8e5"
                },
                "entity": {
                  "software_specification": {
                    "type": "derived",
                    "display_name": "My Software Specification",
                    "base_software_specification": {
                      "guid": "ab9e1b80-f2ce-592c-a7d2-4f2344f77194"
                    },
                    "package_extensions": [
                      {
                        "metadata": {
                          "name": "my package extension",
                          "description": "this is my package extension",
                          "asset_type": "package_extension",
                          "asset_id": "461db2c9-effb-4bfb-8319-f4acf8ba06a3",
                          "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
                          "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
                          "owner_id": "IBMid-310000SG2Y",
                          "created_at": "2021-08-02T12:00:24.269Z",
                          "updated_at": "2021-08-02T12:00:24.269Z"
                        },
                        "entity": {
                          "package_extension": {
                            "type": "conda_yml",
                            "interpreter": "mamba",
                            "object_key": "package_extension/Package_Extension_9GShiX8H0.yml"
                          }
                        }
                      }
                    ],
                    "software_configuration": {
                      "included_packages": [
                        {
                          "name": "ipython",
                          "version": "7.22.0"
                        }
                      ],
                      "platform": {
                        "name": "spark",
                        "version": 3.2
                      },
                      "language": {
                        "name": "python",
                        "version": 3.9
                      }
                    }
                  }
                }
              },
              "tools_specification": {
                "supported_kernels": [
                  {
                    "name": "python3",
                    "language": "python",
                    "version": 3.9,
                    "display_name": "Python 3.9"
                  }
                ]
              },
              "spec_type": "referenced"
            }
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Create a new environment.

Returns a new environment with the provided parameters.

You need to specify either project_id or space_id.

Required body parameters vary dependent on environment types:

  • notebook: type, name, display_name, hardware_specification, software_specification, tools_specification
  • datastage: type, name, display_name, hardware_specification
  • other types: type, name, display_name, hardware_specification, software_specification
POST /v2/environments

Request

Query Parameters

  • The guid of the project.

    Example: 92ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

Specification of the environment to be created.

Examples:
EnvironmentCreateBody

Response

Environment with references to external hardware and software specifications.

Status Code

  • Success. Created and returned a new environment asset. Format follows v2/assets.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

  • The number of requests has exceeded the rate limit.

Example responses
  • {
      "metadata": {
        "name": "my notebook environment",
        "description": "this is my notebook environment",
        "asset_type": "environment",
        "asset_id": "656ca7c3-d971-42c3-918b-a15023cd6b8e",
        "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
        "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
        "owner_id": "IBMid-310000SG2Y",
        "created_at": "2021-10-12T09:18:34.000Z",
        "href": "/v2/environments/656ca7c3-d971-42c3-918b-a15023cd6b8e"
      },
      "entity": {
        "environment": {
          "sub_type": "notebook",
          "display_name": "My Notebook Environment",
          "hardware_specification": {
            "metadata": {
              "name": "my hardware specification",
              "description": "this is my hardware specification",
              "asset_type": "hardware_specification",
              "asset_id": "2d5191ba-ff9b-4b48-a852-948d49dd9210",
              "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
              "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
              "owner_id": "IBMid-310000SG2Y",
              "created_at": "2021-08-02T12:00:24.269Z",
              "updated_at": "2021-08-02T12:00:24.269Z",
              "href": "/v2/hardware_specifications/2d5191ba-ff9b-4b48-a852-948d49dd9210"
            },
            "entity": {
              "hardware_specification": {
                "nodes": {
                  "cpu": {
                    "units": "100m",
                    "model": "string"
                  },
                  "mem": {
                    "size": "8Gi"
                  },
                  "gpu": {
                    "num_gpu": 2,
                    "name": "v100",
                    "gpu_profile": "generic",
                    "mig_profile": "N/A"
                  },
                  "num_nodes": 1,
                  "num_drivers": 1,
                  "drivers": {
                    "cpu": {
                      "units": "100m",
                      "model": "string"
                    },
                    "mem": {
                      "size": "8Gi"
                    }
                  }
                }
              }
            }
          },
          "software_specification": {
            "metadata": {
              "name": "my software specification",
              "description": "this is my software specification",
              "asset_type": "software_specification",
              "asset_id": "555bd074-cc5b-4396-a7f8-5f03d336a8e5",
              "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
              "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
              "owner_id": "IBMid-310000SG2Y",
              "created_at": "2021-08-02T12:00:24.269Z",
              "updated_at": "2021-08-02T12:00:24.269Z",
              "href": "/v2/software_specifications/555bd074-cc5b-4396-a7f8-5f03d336a8e5"
            },
            "entity": {
              "software_specification": {
                "type": "derived",
                "display_name": "My Software Specification",
                "base_software_specification": {
                  "guid": "ab9e1b80-f2ce-592c-a7d2-4f2344f77194"
                },
                "package_extensions": [
                  {
                    "metadata": {
                      "name": "my package extension",
                      "description": "this is my package extension",
                      "asset_type": "package_extension",
                      "asset_id": "461db2c9-effb-4bfb-8319-f4acf8ba06a3",
                      "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
                      "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
                      "owner_id": "IBMid-310000SG2Y",
                      "created_at": "2021-08-02T12:00:24.269Z",
                      "updated_at": "2021-08-02T12:00:24.269Z"
                    },
                    "entity": {
                      "package_extension": {
                        "type": "conda_yml",
                        "interpreter": "mamba",
                        "object_key": "package_extension/Package_Extension_9GShiX8H0.yml"
                      }
                    }
                  }
                ],
                "software_configuration": {
                  "included_packages": [
                    {
                      "name": "ipython",
                      "version": "7.22.0"
                    }
                  ],
                  "platform": {
                    "name": "spark",
                    "version": 3.2
                  },
                  "language": {
                    "name": "python",
                    "version": 3.9
                  }
                }
              }
            }
          },
          "tools_specification": {
            "supported_kernels": [
              {
                "name": "python3",
                "language": "python",
                "version": 3.9,
                "display_name": "Python 3.9"
              }
            ]
          },
          "spec_type": "referenced"
        }
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "rate_limit",
          "message": "The requests from IBMid-310000A00A exceeds rate limit. Please try again later."
        }
      ]
    }

Retrieve an environment.

Returns an environment of a given ID. You need to specify either project_id or space_id.

GET /v2/environments/{environment_guid}

Request

Path Parameters

  • The guid of the environment.

    Example: a1da1d73-5eb5-4dfb-808e-174eb153c20e

Query Parameters

  • The guid of the project.

    Example: 92ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • Format the response. Defaults to none.

    Example: default_spark

  • Whether to include conda_yml file content of custom package extensions in the response. Defaults to false.

Response

Environment with references to external hardware and software specifications.

Status Code

  • Success. Returned the environment. Format follows v2/assets.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "metadata": {
        "name": "my notebook environment",
        "description": "this is my notebook environment",
        "asset_type": "environment",
        "asset_id": "656ca7c3-d971-42c3-918b-a15023cd6b8e",
        "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
        "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
        "owner_id": "IBMid-310000SG2Y",
        "created_at": "2021-10-12T09:18:34.000Z",
        "href": "/v2/environments/656ca7c3-d971-42c3-918b-a15023cd6b8e"
      },
      "entity": {
        "environment": {
          "sub_type": "notebook",
          "display_name": "My Notebook Environment",
          "hardware_specification": {
            "metadata": {
              "name": "my hardware specification",
              "description": "this is my hardware specification",
              "asset_type": "hardware_specification",
              "asset_id": "2d5191ba-ff9b-4b48-a852-948d49dd9210",
              "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
              "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
              "owner_id": "IBMid-310000SG2Y",
              "created_at": "2021-08-02T12:00:24.269Z",
              "updated_at": "2021-08-02T12:00:24.269Z",
              "href": "/v2/hardware_specifications/2d5191ba-ff9b-4b48-a852-948d49dd9210"
            },
            "entity": {
              "hardware_specification": {
                "nodes": {
                  "cpu": {
                    "units": "100m",
                    "model": "string"
                  },
                  "mem": {
                    "size": "8Gi"
                  },
                  "gpu": {
                    "num_gpu": 2,
                    "name": "v100",
                    "gpu_profile": "generic",
                    "mig_profile": "N/A"
                  },
                  "num_nodes": 1,
                  "num_drivers": 1,
                  "drivers": {
                    "cpu": {
                      "units": "100m",
                      "model": "string"
                    },
                    "mem": {
                      "size": "8Gi"
                    }
                  }
                }
              }
            }
          },
          "software_specification": {
            "metadata": {
              "name": "my software specification",
              "description": "this is my software specification",
              "asset_type": "software_specification",
              "asset_id": "555bd074-cc5b-4396-a7f8-5f03d336a8e5",
              "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
              "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
              "owner_id": "IBMid-310000SG2Y",
              "created_at": "2021-08-02T12:00:24.269Z",
              "updated_at": "2021-08-02T12:00:24.269Z",
              "href": "/v2/software_specifications/555bd074-cc5b-4396-a7f8-5f03d336a8e5"
            },
            "entity": {
              "software_specification": {
                "type": "derived",
                "display_name": "My Software Specification",
                "base_software_specification": {
                  "guid": "ab9e1b80-f2ce-592c-a7d2-4f2344f77194"
                },
                "package_extensions": [
                  {
                    "metadata": {
                      "name": "my package extension",
                      "description": "this is my package extension",
                      "asset_type": "package_extension",
                      "asset_id": "461db2c9-effb-4bfb-8319-f4acf8ba06a3",
                      "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
                      "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
                      "owner_id": "IBMid-310000SG2Y",
                      "created_at": "2021-08-02T12:00:24.269Z",
                      "updated_at": "2021-08-02T12:00:24.269Z"
                    },
                    "entity": {
                      "package_extension": {
                        "type": "conda_yml",
                        "interpreter": "mamba",
                        "object_key": "package_extension/Package_Extension_9GShiX8H0.yml"
                      }
                    }
                  }
                ],
                "software_configuration": {
                  "included_packages": [
                    {
                      "name": "ipython",
                      "version": "7.22.0"
                    }
                  ],
                  "platform": {
                    "name": "spark",
                    "version": 3.2
                  },
                  "language": {
                    "name": "python",
                    "version": 3.9
                  }
                }
              }
            }
          },
          "tools_specification": {
            "supported_kernels": [
              {
                "name": "python3",
                "language": "python",
                "version": 3.9,
                "display_name": "Python 3.9"
              }
            ]
          },
          "spec_type": "referenced"
        }
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Delete an environment.

Deletes an environment of a given ID. You need to specify either project_id or space_id.

DELETE /v2/environments/{environment_guid}

Request

Path Parameters

  • The guid of the environment.

    Example: a1da1d73-5eb5-4dfb-808e-174eb153c20e

Query Parameters

  • The guid of the project.

    Example: 92ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

Response

Status Code

  • Success. The environment is deleted.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Update an environment.

Updates an environment of a given ID with the provided parameters. Returns the environment with updated properties. Only custom environments can be updated.

PATCH /v2/environments/{environment_guid}

Request

Path Parameters

  • The guid of the environment.

    Example: a1da1d73-5eb5-4dfb-808e-174eb153c20e

Query Parameters

  • The guid of the project.

    Example: 92ae0e27-9b11-4de9-a646-d46ca3c183d4

Specification of changes.

Examples:
EnvironmentUpdateBody

Response

Status Code

  • Success. Updated the environment.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

List hardware specifications.

Returns a list of hardware specifications.

  1. If neither project_id nor space_id is given, it returns all global hardware specifications.
  2. If project_id or space_id is given, it returns all global and scoped hardware specifications. In this case, you need to specify either project_id or space_id.
GET /v2/hardware_specifications

Request

Query Parameters

  • The guid of the project.

    Example: 92ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The name of the hardware specification. If specified, each of the hardware specification in the returned list will have the specified name.

Response

A list of hardware specifications.

Status Code

  • Success. Returned a list of hardware specifications. Format follows v2/assets.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "total_results": 1,
      "resources": [
        {
          "metadata": {
            "name": "my hardware specification",
            "description": "this is my hardware specification",
            "asset_type": "hardware_specification",
            "asset_id": "2d5191ba-ff9b-4b48-a852-948d49dd9210",
            "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
            "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
            "owner_id": "IBMid-310000SG2Y",
            "created_at": "2021-08-02T12:00:24.269Z",
            "updated_at": "2021-08-02T12:00:24.269Z",
            "href": "/v2/hardware_specifications/2d5191ba-ff9b-4b48-a852-948d49dd9210"
          },
          "entity": {
            "hardware_specification": {
              "nodes": {
                "cpu": {
                  "units": "100m",
                  "model": "string"
                },
                "mem": {
                  "size": "8Gi"
                },
                "gpu": {
                  "num_gpu": 2,
                  "name": "v100",
                  "gpu_profile": "generic",
                  "mig_profile": "N/A"
                },
                "num_nodes": 1,
                "num_drivers": 1,
                "drivers": {
                  "cpu": {
                    "units": "100m",
                    "model": "string"
                  },
                  "mem": {
                    "size": "8Gi"
                  }
                }
              }
            }
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Create a new hardware specification.

Returns a hardware specification created with provided parameters.

You need to specify either project_id or space_id.

You can only provide exactly one of nodes, spark or datastage in the request body.

POST /v2/hardware_specifications

Request

Query Parameters

  • The guid of the project.

    Example: 92ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

Specification of the hardware specification to be created.

Examples:
HardwareSpecificationCreateBody_0
HardwareSpecificationCreateBody_1
HardwareSpecificationCreateBody_2

Response

A hardware specification.

Status Code

  • Success. Created and returned a new hardware specification asset. Format follows v2/assets.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

  • Conflict. Specification already exists with given name. Restriction applicable only for global specifications.

Example responses
  • {
      "metadata": {
        "name": "my hardware specification",
        "description": "this is my hardware specification",
        "asset_type": "hardware_specification",
        "asset_id": "2d5191ba-ff9b-4b48-a852-948d49dd9210",
        "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
        "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
        "owner_id": "IBMid-310000SG2Y",
        "created_at": "2021-08-02T12:00:24.269Z",
        "updated_at": "2021-08-02T12:00:24.269Z",
        "href": "/v2/hardware_specifications/2d5191ba-ff9b-4b48-a852-948d49dd9210"
      },
      "entity": {
        "hardware_specification": {
          "nodes": {
            "cpu": {
              "units": "100m",
              "model": "string"
            },
            "mem": {
              "size": "8Gi"
            },
            "gpu": {
              "num_gpu": 2,
              "name": "v100",
              "gpu_profile": "generic",
              "mig_profile": "N/A"
            },
            "num_nodes": 1,
            "num_drivers": 1,
            "drivers": {
              "cpu": {
                "units": "100m",
                "model": "string"
              },
              "mem": {
                "size": "8Gi"
              }
            }
          }
        }
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "conflict",
          "message": "Document already exists."
        }
      ]
    }

Retrieve a hardware specification.

Returns a hardware specification of a given ID.

  1. To retrieve a global hardware specification, project_id or space_id is not required.
  2. To retrieve a scoped hardware specification that is scoped to a project or a space, you need to specify either project_id or space_id.
GET /v2/hardware_specifications/{hardware_specification_guid}

Request

Path Parameters

  • The guid of the hardware specification.

    Example: a1da1d73-5eb5-4dfb-808e-174eb153c20e

Query Parameters

  • The guid of the project.

    Example: 92ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

Response

A hardware specification.

Status Code

  • Success. Returned the hardware specification. Format follows v2/assets.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "metadata": {
        "name": "my hardware specification",
        "description": "this is my hardware specification",
        "asset_type": "hardware_specification",
        "asset_id": "2d5191ba-ff9b-4b48-a852-948d49dd9210",
        "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
        "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
        "owner_id": "IBMid-310000SG2Y",
        "created_at": "2021-08-02T12:00:24.269Z",
        "updated_at": "2021-08-02T12:00:24.269Z",
        "href": "/v2/hardware_specifications/2d5191ba-ff9b-4b48-a852-948d49dd9210"
      },
      "entity": {
        "hardware_specification": {
          "nodes": {
            "cpu": {
              "units": "100m",
              "model": "string"
            },
            "mem": {
              "size": "8Gi"
            },
            "gpu": {
              "num_gpu": 2,
              "name": "v100",
              "gpu_profile": "generic",
              "mig_profile": "N/A"
            },
            "num_nodes": 1,
            "num_drivers": 1,
            "drivers": {
              "cpu": {
                "units": "100m",
                "model": "string"
              },
              "mem": {
                "size": "8Gi"
              }
            }
          }
        }
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Delete a hardware specification.

Deletes a hardware specification of a given ID.

Only scoped hardware specifications can be deleted through the API.

You need to specify either project_id or space_id.

DELETE /v2/hardware_specifications/{hardware_specification_guid}

Request

Path Parameters

  • The guid of the hardware specification.

    Example: a1da1d73-5eb5-4dfb-808e-174eb153c20e

Query Parameters

  • The guid of the project.

    Example: 92ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

Response

Status Code

  • Success. The hardware specification is deleted.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Update a hardware specification.

Updates a hardware specification of a given ID with the provided parameters.

Only scoped hardware specifications can be updated through the API.

PATCH /v2/hardware_specifications/{hardware_specification_guid}

Request

Path Parameters

  • The guid of the hardware specification.

    Example: a1da1d73-5eb5-4dfb-808e-174eb153c20e

Query Parameters

  • The guid of the project.

    Example: 92ae0e27-9b11-4de9-a646-d46ca3c183d4

Specification of changes.

Examples:
HardwareSpecificationUpdateBody_0
HardwareSpecificationUpdateBody_1
HardwareSpecificationUpdateBody_2

Response

A hardware specification.

Status Code

  • Success. Updated the hardware specification.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "metadata": {
        "name": "my hardware specification",
        "description": "this is my hardware specification",
        "asset_type": "hardware_specification",
        "asset_id": "2d5191ba-ff9b-4b48-a852-948d49dd9210",
        "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
        "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
        "owner_id": "IBMid-310000SG2Y",
        "created_at": "2021-08-02T12:00:24.269Z",
        "updated_at": "2021-08-02T12:00:24.269Z",
        "href": "/v2/hardware_specifications/2d5191ba-ff9b-4b48-a852-948d49dd9210"
      },
      "entity": {
        "hardware_specification": {
          "nodes": {
            "cpu": {
              "units": "100m",
              "model": "string"
            },
            "mem": {
              "size": "8Gi"
            },
            "gpu": {
              "num_gpu": 2,
              "name": "v100",
              "gpu_profile": "generic",
              "mig_profile": "N/A"
            },
            "num_nodes": 1,
            "num_drivers": 1,
            "drivers": {
              "cpu": {
                "units": "100m",
                "model": "string"
              },
              "mem": {
                "size": "8Gi"
              }
            }
          }
        }
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

List software specifications.

Returns a list of software specifications.

  1. If neither project_id nor space_id is given, it returns all base software specifications.
  2. If project_id or space_id is given, it returns all base and derived software specifications. In this case, you need to specify either project_id or space_id.
GET /v2/software_specifications

Request

Query Parameters

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the project.

    Example: 103d3fc4-2e46-4581-a23a-b4484e13519e

  • String of comma-separated package names that refers to the packages that a software specification should contain. If specified, each of the software specification in the returned list will contain all of the packages specified in the query.

    Example: pytorch,scikit-learn

  • The name of the software specification. If specified, each of the software specification in the returned list will have the specified name.

Response

A list of software specifications.

Status Code

  • Success. Returned a list of software specifications.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "total_results": 1,
      "resources": [
        {
          "metadata": {
            "name": "my software specification",
            "description": "this is my software specification",
            "asset_type": "software_specification",
            "asset_id": "555bd074-cc5b-4396-a7f8-5f03d336a8e5",
            "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
            "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
            "owner_id": "IBMid-310000SG2Y",
            "created_at": "2021-08-02T12:00:24.269Z",
            "updated_at": "2021-08-02T12:00:24.269Z",
            "href": "/v2/software_specifications/555bd074-cc5b-4396-a7f8-5f03d336a8e5"
          },
          "entity": {
            "software_specification": {
              "type": "derived",
              "display_name": "My Software Specification",
              "base_software_specification": {
                "guid": "ab9e1b80-f2ce-592c-a7d2-4f2344f77194"
              },
              "package_extensions": [
                {
                  "metadata": {
                    "name": "my package extension",
                    "description": "this is my package extension",
                    "asset_type": "package_extension",
                    "asset_id": "461db2c9-effb-4bfb-8319-f4acf8ba06a3",
                    "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
                    "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
                    "owner_id": "IBMid-310000SG2Y",
                    "created_at": "2021-08-02T12:00:24.269Z",
                    "updated_at": "2021-08-02T12:00:24.269Z"
                  },
                  "entity": {
                    "package_extension": {
                      "type": "conda_yml",
                      "interpreter": "mamba",
                      "object_key": "package_extension/Package_Extension_9GShiX8H0.yml"
                    }
                  }
                }
              ],
              "software_configuration": {
                "included_packages": [
                  {
                    "name": "ipython",
                    "version": "7.22.0"
                  }
                ],
                "platform": {
                  "name": "spark",
                  "version": 3.2
                },
                "language": {
                  "name": "python",
                  "version": 3.9
                }
              }
            }
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Create a new software specification.

Returns a software specification created with provided parameters.

You need to specify either project_id or space_id.

The parameters name and base_software_specification are required in the request body.

You can customize the software specification by adding any number of package extensions.

POST /v2/software_specifications

Request

Query Parameters

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the project in which to create the software specification.

    Example: 103d3fc4-2e46-4581-a23a-b4484e13519e

Specification of the software specification to be created.

Examples:
SoftwareSpecificationCreateBody_0

Response

A software specification.

Status Code

  • Success. Created and returned a new software specification.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

  • Conflict. Specification already exists with given name. Restriction applicable only for global specifications.

Example responses
  • {
      "metadata": {
        "name": "my software specification",
        "description": "this is my software specification",
        "asset_type": "software_specification",
        "asset_id": "555bd074-cc5b-4396-a7f8-5f03d336a8e5",
        "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
        "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
        "owner_id": "IBMid-310000SG2Y",
        "created_at": "2021-08-02T12:00:24.269Z",
        "updated_at": "2021-08-02T12:00:24.269Z",
        "href": "/v2/software_specifications/555bd074-cc5b-4396-a7f8-5f03d336a8e5"
      },
      "entity": {
        "software_specification": {
          "type": "derived",
          "display_name": "My Software Specification",
          "base_software_specification": {
            "guid": "ab9e1b80-f2ce-592c-a7d2-4f2344f77194"
          },
          "package_extensions": [
            {
              "metadata": {
                "name": "my package extension",
                "description": "this is my package extension",
                "asset_type": "package_extension",
                "asset_id": "461db2c9-effb-4bfb-8319-f4acf8ba06a3",
                "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
                "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
                "owner_id": "IBMid-310000SG2Y",
                "created_at": "2021-08-02T12:00:24.269Z",
                "updated_at": "2021-08-02T12:00:24.269Z"
              },
              "entity": {
                "package_extension": {
                  "type": "conda_yml",
                  "interpreter": "mamba",
                  "object_key": "package_extension/Package_Extension_9GShiX8H0.yml"
                }
              }
            }
          ],
          "software_configuration": {
            "included_packages": [
              {
                "name": "ipython",
                "version": "7.22.0"
              }
            ],
            "platform": {
              "name": "spark",
              "version": 3.2
            },
            "language": {
              "name": "python",
              "version": 3.9
            }
          }
        }
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "conflict",
          "message": "Document already exists."
        }
      ]
    }

Update a software specification.

Updates a software specification of a given ID with the provided parameters.

Only derived software specifications can be updated through the API.

Updatable fields are name, description, display_name and package_extensions.

You need to specify either project_id or space_id.

PATCH /v2/software_specifications/{software_specification_guid}

Request

Path Parameters

  • A UUID v4 identifying the software specification.

    Example: c82b95df-fc3e-4273-98f7-473d62a03c2b

Query Parameters

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the project.

    Example: 103d3fc4-2e46-4581-a23a-b4484e13519e

Specification of the updates for a software specification.

Examples:
SoftwareSpecificationUpdateBody

Response

Status Code

  • Success. Updated the software specification.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Retrieve a software specification.

Returns a software specification of a given ID.

  1. To retrieve a base software specification, project_id or space_id is not required.
  2. To retrieve a derived software specification that is scoped to a project or a space, you need to specify either project_id or space_id. When a derived software specification is retrieved, the return value shows the software configuration inherited from the base software specification instead of the ID of the base software specification.
GET /v2/software_specifications/{software_specification_guid}

Request

Path Parameters

  • A UUID v4 identifying the software specification.

    Example: c82b95df-fc3e-4273-98f7-473d62a03c2b

Query Parameters

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the project.

    Example: 103d3fc4-2e46-4581-a23a-b4484e13519e

Response

A software specification.

Status Code

  • Success. Returned the given software specification.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "metadata": {
        "name": "my software specification",
        "description": "this is my software specification",
        "asset_type": "software_specification",
        "asset_id": "555bd074-cc5b-4396-a7f8-5f03d336a8e5",
        "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
        "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
        "owner_id": "IBMid-310000SG2Y",
        "created_at": "2021-08-02T12:00:24.269Z",
        "updated_at": "2021-08-02T12:00:24.269Z",
        "href": "/v2/software_specifications/555bd074-cc5b-4396-a7f8-5f03d336a8e5"
      },
      "entity": {
        "software_specification": {
          "type": "derived",
          "display_name": "My Software Specification",
          "base_software_specification": {
            "guid": "ab9e1b80-f2ce-592c-a7d2-4f2344f77194"
          },
          "package_extensions": [
            {
              "metadata": {
                "name": "my package extension",
                "description": "this is my package extension",
                "asset_type": "package_extension",
                "asset_id": "461db2c9-effb-4bfb-8319-f4acf8ba06a3",
                "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
                "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
                "owner_id": "IBMid-310000SG2Y",
                "created_at": "2021-08-02T12:00:24.269Z",
                "updated_at": "2021-08-02T12:00:24.269Z"
              },
              "entity": {
                "package_extension": {
                  "type": "conda_yml",
                  "interpreter": "mamba",
                  "object_key": "package_extension/Package_Extension_9GShiX8H0.yml"
                }
              }
            }
          ],
          "software_configuration": {
            "included_packages": [
              {
                "name": "ipython",
                "version": "7.22.0"
              }
            ],
            "platform": {
              "name": "spark",
              "version": 3.2
            },
            "language": {
              "name": "python",
              "version": 3.9
            }
          }
        }
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Delete a software specification.

Deletes a software specification of a given ID.

Only derived software specifications can be deleted through the API.

You need to specify either project_id or space_id.

DELETE /v2/software_specifications/{software_specification_guid}

Request

Path Parameters

  • A UUID v4 identifying the software specification.

    Example: c82b95df-fc3e-4273-98f7-473d62a03c2b

Query Parameters

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the project. The deleted software specification must be scoped to the specified project.

    Example: 103d3fc4-2e46-4581-a23a-b4484e13519e

Response

Status Code

  • Success. Deleted the software specification.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Add a package extension to a software specification.

When successful, the specified package extension is appended to the array entity.software_specification.package_extensions. It is then the last package extension in that array.

You need to specify either project_id or space_id.

The request is valid if and only if:

  1. The software specification identified by software_specification_guid and the package extension identified by package_extension_guid exist in the same scope (either project or space).
  2. A successful POST /v2/package_extensions/{package_extension_guid}/upload_complete has been called before this request is initiated. I.e., the upload of the referenced pip_zip or conda_yml file has been indicated to have been successful.
  3. The user is authorized to update the software specification asset.
PUT /v2/software_specifications/{software_specification_guid}/package_extensions/{package_extension_guid}

Request

Path Parameters

  • A UUID v4 identifying the software specification.

    Example: c82b95df-fc3e-4273-98f7-473d62a03c2b

  • A UUID v4 identifying the package extension.

    Example: b82b95df-fc3e-4273-98f7-473d62a03c2b

Query Parameters

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the project.

    Example: 103d3fc4-2e46-4581-a23a-b4484e13519e

Response

Status Code

  • Success. Added the package extension to the software specification.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

  • Conflict. The software specification already references this package extension.

Example responses
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Remove a package extension from a software specification.

When successful, the specified package extension is removed from the array entity.software_specification.package_extensions.

You need to specify either project_id or space_id.

DELETE /v2/software_specifications/{software_specification_guid}/package_extensions/{package_extension_guid}

Request

Path Parameters

  • A UUID v4 identifying the software specification.

    Example: c82b95df-fc3e-4273-98f7-473d62a03c2b

  • A UUID v4 identifying the package extension.

    Example: b82b95df-fc3e-4273-98f7-473d62a03c2b

Query Parameters

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the project.

    Example: 103d3fc4-2e46-4581-a23a-b4484e13519e

Response

Status Code

  • Success. Removed the package extension from the software specification.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

List package extensions.

Returns all package extensions within the given project or space. You need to specify either project_id or space_id.

GET /v2/package_extensions

Request

Query Parameters

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the project.

    Example: 103d3fc4-2e46-4581-a23a-b4484e13519e

  • Returning only those package extensions that have a particular name.

    Example: my Package Extension

  • Returning only those package extensions that have a particular type.

    Allowable values: [conda_yml,pip_zip]

    Example: conda_yml or pip_zip

Response

A list of package extensions.

Status Code

  • Success. Returned a list of Package Extensions.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "total_results": 1,
      "resources": [
        {
          "metadata": {
            "name": "my package extension",
            "description": "this is my package extension",
            "asset_type": "package_extension",
            "asset_id": "461db2c9-effb-4bfb-8319-f4acf8ba06a3",
            "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
            "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
            "owner_id": "IBMid-310000SG2Y",
            "created_at": "2021-08-02T12:00:24.269Z",
            "updated_at": "2021-08-02T12:00:24.269Z"
          },
          "entity": {
            "package_extension": {
              "type": "conda_yml",
              "interpreter": "mamba",
              "object_key": "package_extension/Package_Extension_9GShiX8H0.yml"
            }
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Create a new package extension.

Returns the new package extension created in the given project or space. You need to specify either project_id or space_id.

For uploading the pip_zip or conda_yml, once you have created a package extension, the response also contains a pre-signed URL which allows you to upload its contents. When the upload is complete, you must call POST /v2/package_extensions/{package_extension_guid}/upload_complete to indicate to the API that the package extension is usable. If the /upload_complete returns successfully, the package extension is usable, i.e., can be assigned to a software specification.

POST /v2/package_extensions

Request

Query Parameters

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the project in which to create the package extension.

    Example: 103d3fc4-2e46-4581-a23a-b4484e13519e

Specification of the package extension to be created.

Examples:
PackageExtensionCreateBody

Response

A package extension with signed URL.

Status Code

  • Success. Created and returned a new package extension.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "metadata": {
        "name": "my package extension",
        "description": "this is my package extension",
        "asset_type": "package_extension",
        "asset_id": "461db2c9-effb-4bfb-8319-f4acf8ba06a3",
        "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
        "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
        "owner_id": "IBMid-310000SG2Y",
        "created_at": "2021-08-02T12:00:24.269Z",
        "updated_at": "2021-08-02T12:00:24.269Z"
      },
      "entity": {
        "package_extension": {
          "type": "conda_yml",
          "interpreter": "mamba",
          "href": "/package_extension/Package_Extension_9GShiX8H0.yml"
        }
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Mark file upload complete.

Indicates that the upload of the library file attached to the package extension is complete and this package extension is usable. You need to specify either project_id or space_id.

POST /v2/package_extensions/{package_extension_guid}/upload_complete

Request

Path Parameters

  • A UUID v4 identifying the package extension.

    Example: b82b95df-fc3e-4273-98f7-473d62a03c2b

Query Parameters

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the project.

    Example: 103d3fc4-2e46-4581-a23a-b4484e13519e

Response

Status Code

  • Success. Marked the upload complete, the package extension is now usable.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Update a package extension.

Updates a package extension of a given ID with the provided parameters.

PATCH /v2/package_extensions/{package_extension_guid}

Request

Path Parameters

  • A UUID v4 identifying the package extension.

    Example: b82b95df-fc3e-4273-98f7-473d62a03c2b

Query Parameters

  • The guid of the project.

    Example: 103d3fc4-2e46-4581-a23a-b4484e13519e

Specification of the updates for a package extension.

Examples:
PackageExtensionUpdateBody

Response

Status Code

  • Success. Updated the pacakge extension.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Retrieve a package extension.

Retrieves a package extension of a given ID. You need to specify either project_id or space_id.

GET /v2/package_extensions/{package_extension_guid}

Request

Path Parameters

  • A UUID v4 identifying the package extension.

    Example: b82b95df-fc3e-4273-98f7-473d62a03c2b

Query Parameters

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the project.

    Example: 103d3fc4-2e46-4581-a23a-b4484e13519e

Response

A package extension with object key and signed URL.

Status Code

  • Success. Returned the given package extension.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "metadata": {
        "name": "my package extension",
        "description": "this is my package extension",
        "asset_type": "package_extension",
        "asset_id": "461db2c9-effb-4bfb-8319-f4acf8ba06a3",
        "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
        "space_id": "1fd6d4b5-d592-4de2-a3e6-ae53a42d75d0",
        "owner_id": "IBMid-310000SG2Y",
        "created_at": "2021-08-02T12:00:24.269Z",
        "updated_at": "2021-08-02T12:00:24.269Z"
      },
      "entity": {
        "package_extension": {
          "type": "conda_yml",
          "interpreter": "mamba",
          "object_key": "package_extension/Package_Extension_9GShiX8H0.yml",
          "href": "/package_extension/Package_Extension_9GShiX8H0.yml"
        }
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Delete a package extension.

Deletes a package extension of a given ID. You need to specify either project_id or space_id.

DELETE /v2/package_extensions/{package_extension_guid}

Request

Path Parameters

  • A UUID v4 identifying the package extension.

    Example: b82b95df-fc3e-4273-98f7-473d62a03c2b

Query Parameters

  • The guid of the space.

    Example: 82ae0e27-9b11-4de9-a646-d46ca3c183d4

  • The guid of the project.

    Example: 103d3fc4-2e46-4581-a23a-b4484e13519e

Response

Status Code

  • Success. Deleted the package extension.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project_id` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project_id"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

A update operation allowing you to update artifacts based on a simple query.

Execute an operation to update artifacts using a simple query for one or more specified microservices (provider_ids).

POST /v3/search/update_by_query

Request

Custom Headers

  • The Tenant id (which is the BSS Account ID) within which this query is being run. Note you can also use the header name account_id for this purpose.

Response

Status Code

  • OK

  • Accepted

  • No Content

  • Partial Content

  • Bad request

  • Unauthorized

  • Forbidden

  • Internal error. Try again later.

  • Service Unavailable

  • Success response content

No Sample Response

This method does not specify any sample responses.

Execute a query based on the Lucene Syntax

Execute a query and pass in a selection of words to search for or pass in a Lucene query. Your Lucene query can be as simple or as sophisticated as you like. Beware, however. If you plan on passing in a query directly from user input, make sure to set the 'isSimple' parameter to 'true' (the default is 'false'). Otherwise, Global Search will use the underlying query_string function that enforces a strict Lucene query syntax, and your query may return an exception if the user input includes reserved Lucene tokens or symbols that are used incorrectly. When the 'isSimple' parameter is set to true, Global Search will the ElasticSearch simple_query_string function that uses a modified Lucene syntax as follows:

 + = AND operation
 | = OR operation
 - = NOT
 " wraps a phrase
 * is a wildcard (you can't use it at the beginning of a word but you can use it alone to signify match all)
 ( and ) evaluates tokens inside brackets with higher precedence

To use one of these characters literally, escape it with a preceding backslash.

Global Search allows users to search for assets and artifacts on the platform. The number of documents for all search results is limited to 10000.

Please notice that the response shows all possible fields, which are not applicable for all types. For example "custom_attributes" are only applicable to assets currently, and even then only to certain custom attributes depending how they have been defined. Likewise, "categories" are only applicable to artifacts, etc.

GET /v3/search

Request

Custom Headers

  • The Tenant id (which is the BSS Account ID) within which this query is being run. Note: you can also use the header name "account_id" for this purpose.

    Default: 999

Query Parameters

  • The Search Query. Add a list of words being sought or use a Lucene query. Your Lucene query can be as simple or as sophisticated as you like.

  • The maximum number of items to return

    Example: 100

  • Use simple query string syntax

    Default: false

  • For governance artifacts limited by zone, limit with this role access.

    Allowable values: [viewer,editor]

    Default: viewer

  • Use cached authorization info for building ACL filters.

    Default: false

  • The ACL filters applied to the query.

    Allowable values: [all,catalog,project,space,category,ibm_watsonx_governance_catalog,ibm_data_product_catalog]

    Default: all

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal error. Try again later.

No Sample Response

This method does not specify any sample responses.

Execute a query and pass in a structured query conforming to the Elasticsearch Domain Specific Language.

Execute a query and pass in a structured query based on the Elasticsearch Domain Specific Language
For example:
{
    "query": {
        "match_all": {}
    }
}

You can also use this API to execute the Global Search user search function as follows:
{
    "query": {
        "gs_user_query": {
            "search_string": "the quick red fox jumped over the lazy brown dog",
            "search_fields": ["metadata.name", "metadata.description"],
            "nlq_analyzer_enabled": true,
            "semantic_expansion_enabled": true
            "nested": false
        }
    }
}

Global Search allows users to search for assets and artifacts on the platform. The number of documents for all search results is limited to 10000.

When search fields are specified, the search will be restricted to the specified fields. If no search fields are specified, the search will run across all fields in the configuration.
When the natural language analyzer is enabled, words which are not relevant to the search will be ignored, and common phrases will be prioritized.

When semantic expansion is enabled, search strings containing a business term name or abbreviation will also include results for synonym, child and related business terms. ,Knowledge graph installation is required for semantic search.


Please notice that the response shows all possible fields, which are not applicable for all types. For example "custom_attributes" are only applicable to assets currently, and even then only to certain custom attributes depending how they have been defined. Likewise, "categories" are only applicable to artifacts, etc.

For more information regarding how to use this function, consult the Getting Started section of this guide.

POST /v3/search

Request

Custom Headers

  • The Tenant id (which is the BSS Account ID) within which this query is being run.

    Default: 999

Query Parameters

  • For governance artifacts limited by zone, limit with this role access.

    Allowable values: [viewer,editor]

    Default: viewer

  • Use cached authorization info for building ACL filters.

    Default: false

  • The ACL filters applied to the query.

    Allowable values: [all,catalog,project,space,category,ibm_watsonx_governance_catalog,ibm_data_product_catalog]

    Default: all

A string representing a query. The query must conform to Elasticsearch Domain Specific Language. For more details, read the Search section in the getting started guide.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal error. Try again later.

No Sample Response

This method does not specify any sample responses.

This API will return all available pre search filters

This API will return all available pre search filters

GET /v3/search/search_facet

Request

Custom Headers

  • The Tenant id (which is the BSS Account ID) within which this query is being run.

    Default: 999

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal error. Try again later.

No Sample Response

This method does not specify any sample responses.

Creates a category in the glossary

This method can be used to create a new category in the glossary.

POST /v3/categories

Request

Represents a category to be created.

Response

  • Response returned on creating a category.
    It differs from its base class ({@link CreateResponse}) because it does not include {@code /version/{version_id}} in paths of returned URLs (the categories API does not have such endpoints, only {@code GET /categories/{category_id}}).

Status Code

  • The category has been created successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • UniqueConstraintViolation - category with given name and parent already exists.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "href": "/v3/categories/285b7b78-3d64-48e6-a9b6-e02f4c32295f",
          "artifact_id": "285b7b78-3d64-48e6-a9b6-e02f4c32295f",
          "version_id": "12e37d76-f28b-4dc9-a35e-0c3e30f9f8ea_0",
          "global_id": "18091466-981e-4113-8943-2ddf162bff6d_285b7b78-3d64-48e6-a9b6-e02f4c32295f",
          "entity_type": "category"
        }
      ]
    }

Start category boostrap process

Assigns default owners and view permissions for root categories without any role assignments set

POST /v3/categories/collaborators/bootstrap

Request

No Request Parameters

This method does not accept any request parameters.

Response

Bootstrap Status

Status Code

  • The boostrap process started successfully

  • The boostrap is already in progress

  • Unauthorized

  • Internal Server Error

Example responses
  • IN_PROGRESS

    {
      "status": "IN_PROGRESS",
      "current_step": "Bootstrapping category e39ada11-8338-3704-90e3-681a71e7c839",
      "completed_records": 0,
      "total_records": 3
    }

Get status of category bootstrap process

Get status of category bootstrap process

GET /v3/categories/collaborators/bootstrap/status

Request

No Request Parameters

This method does not accept any request parameters.

Response

Bootstrap Status

Status Code

  • Bootstrap status fetched successfully

  • Unauthorized

  • Internal Server Error

Example responses
  • IN_PROGRESS

    {
      "status": "IN_PROGRESS",
      "current_step": "Bootstrapping category e39ada11-8338-3704-90e3-681a71e7c839",
      "completed_records": 0,
      "total_records": 3
    }
  • NEW

    {
      "status": "NEW",
      "current_step": "Initializing role assignment bootstrap process",
      "completed_records": 0
    }
  • NOT_STARTED

    {
      "status": "NOT_STARTED"
    }
  • SUCCEEDED

    {
      "status": "SUCCEEDED",
      "completion_message": "Bootstrap process completed",
      "completed_records": 3,
      "total_records": 3
    }

Get history status of category bootstrap process

Get history status of category bootstrap process

GET /v3/categories/collaborators/bootstrap/status/history

Request

No Request Parameters

This method does not accept any request parameters.

Response

Response returned on retrieving bootstrap status history.

Status Code

  • Bootstrap status history fetched successfully

  • Unauthorized

  • Internal Server Error

Example responses
  • SUCCEEDED

    {
      "bootstrap_status_history": [
        {
          "status": "SUCCEEDED",
          "completion_message": "No categories requiring bootstrap process",
          "completed_records": 0,
          "total_records": 0
        },
        {
          "status": "SUCCEEDED",
          "completion_message": "Bootstrap process completed",
          "completed_records": 3,
          "total_records": 3
        }
      ]
    }

Retrieves category hierarchy paths for given artifact ids of categories

This method can be used for retrieving hierarchy paths of categories

GET /v3/categories/hierarchy

Request

Query Parameters

  • The id of the category whose path is fetched

    Possible values: 1 ≤ length ≤ 100, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Response

Response returned on retrieving hierarchy path for category.

Status Code

  • The hierarchy paths of categories have been retrieved successfully

  • Unauthorized

  • The category with given {guid} does not exist in the glossary.

  • Internal Server Error

Example responses
  • {
      "category_hierarchy_paths": [
        {
          "category_id": "b50f0822-eff3-4912-932e-aa61e5e7ac9a",
          "category_hierarchy_path": [
            {
              "artifact_id": "4c4b18ae-010c-4986-a308-93c6f22095d6",
              "name": "category name 1",
              "user_access": true
            },
            {
              "artifact_id": "fedc7149-5504-4ea9-aca7-3ad025be6f7d",
              "name": "category name 2",
              "user_access": true
            }
          ]
        }
      ]
    }

Retrieves category hierarchy paths for given artifact ids of categories

This method can be used for retrieving hierarchy paths of categories

POST /v3/categories/hierarchy

Request

Query Parameters

  • The maximum number of categories to return - must be at least 1 and cannot exceed 1000. The default value is 10.

    Possible values: 1 ≤ value ≤ 1000

    Default: 10

  • The index of the first matching category to include in the result.

List of glossary resources

Examples:
View

Response

Response returned on retrieving hierarchy path for category.

Status Code

  • The hierarchy paths of categories have been retrieved successfully

  • Unauthorized

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "metadata": {
            "artifact_type": "category",
            "artifact_id": "2b9bb7cf-502e-43a2-9ecc-645e909cba33",
            "version_id": "5b6a662e-10d5-47fd-b485-655521ee491a_0",
            "source_repository_id": "2513bb40-5ce0-440e-9aa7-f473d1c22f9f",
            "source_repository_name": "WKC_BG_2513bb40-5ce0-440e-9aa7-f473d1c22f9f",
            "global_id": "2513bb40-5ce0-440e-9aa7-f473d1c22f9f_2b9bb7cf-502e-43a2-9ecc-645e909cba33",
            "created_by": "System",
            "created_at": "2023-11-13T06:50:09.240Z",
            "modified_by": "System",
            "modified_at": "2023-11-13T06:50:09.240Z",
            "revision": "0",
            "name": "child of child2 category",
            "short_description": "child of child2-sd",
            "state": "PUBLISHED",
            "tags": [],
            "read_only": false
          },
          "entity": {
            "parent_category_id": "b02920a4-09ae-4a62-a25f-03a2d7ba0507",
            "reporting_authorized": false,
            "long_description": "child of child2-ld",
            "state": "PUBLISHED",
            "default_locale_id": "en-US",
            "reference_copy": false
          }
        }
      ],
      "offset": 0,
      "last": {
        "href": "/v3/categories/hierarchy?limit=10&offset=0",
        "offset": "0"
      },
      "set_uri": false,
      "limit": 10,
      "count": 1,
      "first": {
        "href": "/v3/categories/hierarchy?limit=10&offset=0",
        "offset": "0"
      }
    }

Retrieves the special [uncategorized] category

This method can be used for retrieving details of the special [uncategorized] category, which is a default one for all artifacts.

GET /v3/categories/uncategorized

Request

No Request Parameters

This method does not accept any request parameters.

Response

Represents a category object - which contains metadata and category entity.

Status Code

  • The category has been retrieved successfully.

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes the category with a given guid

This method can be used to delete a category.
Note! The category must be empty. It can contain neither child categories nor artifacts.

DELETE /v3/categories/{category_id}

Request

Path Parameters

  • Artifact ID or global ID of the artifact

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Response

Glossary archive response object

Status Code

  • The category has been deleted successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The category with given {guid} does not exist in the glossary.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieves category with given guid

This method can be used for retrieving details of a category.

GET /v3/categories/{category_id}

Request

Path Parameters

  • Artifact ID or global ID of the artifact

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • When set to true fetch category relationships user has access to. It returns at most 1000 relationships. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.
    Deprecated, functionality will be replaced by new one introduced in the feature releases.

    Default: true

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.

    Default: true

Response

Represents a category object - which contains metadata and category entity.

Status Code

  • The category has been retrieved successfully.

  • Unauthorized

  • Forbidden

  • The category with given {guid} does not exist in the glossary.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Updates category with given id

This method can be used to update a category with given id.
It may be an update of its name, description, etc..

PATCH /v3/categories/{category_id}

Request

Path Parameters

  • Artifact ID or global ID of the artifact

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

Category to be updated.
Fields omitted will be unchanged, and fields set to null explicitly will be nulled out.
For multi-valued attributes & relationships, the complete list will be replaced by the given list of values.
Additional Example:

{"description" : "short desc updated"}

Response

Represents a category object - which contains metadata and category entity.

Status Code

  • The category has been updated successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The category with given {guid} does not exist in the glossary.

  • The category was modified by another user.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Removes an artifact from its secondary category

It can be used to remove a secondary category assignment for an artifact. It does not allow to remove an artifact from a primary category as a primary category assignment is obligatory.

DELETE /v3/categories/{category_id}/artifacts/{artifact_id}

Request

Path Parameters

  • The artifact ID or the global ID of a category

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The artifact ID or the global ID of an artifact to be removed from a (secondary) category

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Response

Status Code

  • A secondary category assignment removed.

  • Attempt to remove an artifact from its primary category failed, because a primary category assignment is mandatory.

  • Unauthorized

  • The category with the given {category_id} does not exist in the glossary.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Adds an artifact to a category

It can be used to set a primary category for an artifact (replacing an old primary category assignment if existed) as well as to add an artifact to a secondary category.

PUT /v3/categories/{category_id}/artifacts/{artifact_id}

Request

Path Parameters

  • The artifact ID or the global ID of a category

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The artifact ID or the global ID of an artifact to be added to the category

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Assignment of an artifact to a category

Response

Assignment of an artifact to a category

Status Code

  • An existing category assignment updated (e.g. changed from secondary to primary).

  • A new category assignment created.

  • Unauthorized

  • The category with the given {category_id} or the artifact with the given {artifact_id} does not exist in the glossary.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieves collaborators for given artifact id of a category

Single collaborator is an users with assigned roles in context of given category. A role comes with rights to access the category, its sub-categories and artifacts and potential responsibilities.

GET /v3/categories/{category_id}/collaborators

Request

Path Parameters

  • The artifact ID or the global ID of a category

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • If this parameter is true, the returned list contains collaborators not only for given category, but also for all parent categories, up to root category.

    Default: true

  • If set then the returned list will be reduced to collaborators with given roles only. Maximum allowed number of roles is 100

    Possible values: 1 ≤ length ≤ 100, Value must match regular expression .*

Response

Response returned on retrieving category permissions.

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • The category with given {guid} does not exist in the glossary.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Creates single collaborator for given category

To create collaborator one needs to provide id of the collaborating user and the name of the role he will be permitted. Collaborator is effective for given category and whole tree of its subcategories.

POST /v3/categories/{category_id}/collaborators

Request

Path Parameters

  • The artifact ID or the global ID of a category

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

New collaborator data representing user with assigned role. It will be created in the context of specific category.

Response

Category permission list for given category id

Status Code

  • The collaborator has been created successfully.

  • Bad Request

  • Unauthorized

  • UniqueConstraintViolation - collaborator with the same role and user id already exists for given category.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes single collaborator

Collaborator represents single user together with single role that gives him certain privileges in context of given category.

DELETE /v3/categories/{category_id}/collaborators/{collaborator_id}

Request

Path Parameters

  • The artifact ID or the global ID of a category

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The id of the collaborator.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Response

Status Code

  • The collaborator has been deleted successfully.

  • Bad Request

  • Unauthorized

  • The collaborator with given id does not exist.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Remove a relationship from category

Currently we support a custom relationship removal from category by relationship ID.

DELETE /v3/categories/{category_id}/relationships/{relationship_id}

Request

Path Parameters

  • The artifact ID of the category to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The artifact ID of the relationship to be deleted.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Response

Status Code

  • A relationship has been removed.

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get role usage statistics

Get list of roles assigned in glossary, along with number of categories where specific role is used.

GET /v3/category_role_statistics

Request

No Request Parameters

This method does not accept any request parameters.

Response

List of role usage summary

Status Code

  • Success

  • Unauthorized

  • Internal Server Error

Example responses
  • SUCCEEDED

    {
      "role_assignment_statistics": [
        {
          "role": "custom_role1",
          "number_of_categories": 1
        },
        {
          "role": "custom_role2",
          "number_of_categories": 2
        },
        {
          "role": "owner",
          "number_of_categories": 2
        },
        {
          "role": "viewer",
          "number_of_categories": 2
        }
      ]
    }

Returns list of categories which has specific role assigned, along with number of assignments for users and groups

Category statistics

GET /v3/category_statistics

Request

Query Parameters

  • Role for which statistics are to be retrieved

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

List of category statistic items

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Internal Server Error

Example responses
  • SUCCEEDED

    {
      "offset": 0,
      "last": {
        "href": "v3/category_statistics?offset=0&role=custom_role2",
        "offset": 0
      },
      "set_uri": false,
      "resources": [
        {
          "category_artifact_id": "788e7609-5d1d-4f5f-a2e2-0011f8c726cf",
          "category_name": "Example category",
          "category_hierarchy_path": [
            {
              "artifact_id": "4562a011-563d-40c2-ae28-80f64cd8d934",
              "name": "Parent of example category",
              "user_access": true
            },
            {
              "artifact_id": "e6abcaba-203f-4f43-8bc3-f4f25aa96f19",
              "name": "Root category",
              "user_access": true
            }
          ],
          "users_assignments_count": 2,
          "groups_assignments_count": 1
        }
      ],
      "limit": 10,
      "count": 1,
      "first": {
        "href": "v3/category_statistics?offset=0&role=custom_role2",
        "offset": 0
      }
    }

Creates a classification in the glossary

This method is used to create a classification in the glossary.

POST /v3/classifications

Request

Query Parameters

  • If configuration permits, the artifact will be created in the published state by skipping the workflow. For details refer to documentation.

New classification entity

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Unique constraint violated because of optimistic locking or some other constraint.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "href": "v3/reference_data/0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6/versions/4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

Retrieves classification with given guid and status

This method can be used for retrieving details of an ACTIVE classification. Only ACTIVE is supported

GET /v3/classifications/{artifact_id}/versions

Request

Path Parameters

  • Artifact ID or global ID of the artifact

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • Filter by classification status.

    Available statuses:
    DRAFTartifacts which are being created or modified and not in use
    PUBLISHEDartifacts which are in published state (does not takes effective dates into account)
    ACTIVEartifacts which are published, and which effective date period includes current datetime

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Default: PUBLISHED

  • Comma-separated list of relationship types.

    Available types:
    is_a_type_of_classification
    has_types_classifications
    has_types_classifications_hierarchy
    categories
    parent_category
    terms
    data_classes
    policies
    rules
    reference_data
    related_categories
    custom
    all

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.

    Default: true

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

List of paginated artifacts

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes a draft or published version of an artifact

If the artifact state is DRAFT, then the draft version is deleted.

If the artifact state is PUBLISHED, a draft version with marked_for_deletion is created .

If the artifact state is PUBLISHED and workflow is skipped, then the published version is deleted.

If a draft artifact already exists for deletion for a published artifact, then the draft artifact is simply skipped.

Administrator role is required.

DELETE /v3/classifications/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The guid of the classification to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the classification to delete.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • A draft version has been successfully created for deleting the published artifact.

  • The artifact has been deleted successfully.

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieves classification with given guid

This method can be used for retrieving details of an ACTIVE or DRAFT classification.

GET /v3/classifications/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact id of the classification to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the classification to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Comma-separated list of relationship types.

    Available types:
    is_a_type_of_classification
    has_types_classifications
    has_types_classifications_hierarchy
    categories
    parent_category
    terms
    data_classes
    policies
    rules
    reference_data
    related_categories
    custom
    all

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.

    Default: true

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

Response

Response classification object

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Updates a draft or published artifact

If a published version is updated, a draft version is created from the published version and the draft version is updated with the requested changes and returned.If any relationships of the artifact are updated, then the updated relationships are returned as a paginated list limited by the give limit parameter. The relationships that are not updated are not returned.

PATCH /v3/classifications/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact id of the classification to be updated.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the classification to be updated.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

The classification to be updated.
Fields omitted will be unchanged, and fields set to null explicitly will be nulled out.
For multi-valued attributes & relationships, the complete list will be replaced by the given list of values.
Additional Example:

{"description" : "description updated"}

Response

Response classification object

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not found

  • Unique constraint violated because of optimistic locking or some other constraint.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

List the associations of the given type for the specified classification

If the result set is larger than the limit parameter, it returns the first limit number of relationships.
To retrieve the next set of relationships, call the method again by using the URI in the property next returned by this method.

GET /v3/classifications/{artifact_id}/versions/{version_id}/relationships

Request

Path Parameters

  • The artifactId of the classification

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The versionId of the classification

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Comma-separated list of relationship types.

    Available types:
    is_a_type_of_classification
    has_types_classifications
    has_types_classifications_hierarchy
    categories
    parent_category
    terms
    data_classes
    policies
    rules
    reference_data
    related_categories
    custom
    all

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

  • Custom relationship definition Id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • Is custom relationship reversed?

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • Retrieves target parent category name of the relationship entity.

  • The maximum number of associations to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

Response that includes relationships to a managed object, like business term, data class, classification

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create relationships for an artifact in the glossary

If it is a published version, it creates a draft from the published version and adds the relationship to the draft version. And, it returns the details of the draft version.

POST /v3/classifications/{artifact_id}/versions/{version_id}/relationships

Request

Path Parameters

  • The artifact id of the classification to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the classification to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

Relationships to be created.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes relationships for an artifact in the glossary

If it is a published version, it creates a draft from the published version and deletes the relationship from the draft version. And, it returns the details of the draft version.

DELETE /v3/classifications/{artifact_id}/versions/{version_id}/relationships/{relationship_id}

Request

Path Parameters

  • The artifact id of the classification to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the classification to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • The artifact ID of the relationship to be deleted.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

Response

Glossary archive response object

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieves the data classes matching specified parameters.

This method is used to retrieve the data classes that the user have permissions and they match specified parameters.

GET /v3/data_classes

Request

Custom Headers

  • Allowable values: [application/json,application/xml]

Query Parameters

  • Comma-separated list of dataclass statuses.

    Available statuses:
    PUBLISHEDartifacts which are in published state (does not takes effective dates into account)
    ACTIVEartifacts which are published, and which effective date period includes current datetime
    DELETEDartifacts which have been deleted

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

    Default: PUBLISHED

  • To filter data classes based on enabled property. The enabled query parameter accepts (Yes, No, Both) where Yes is the default value. This option is not applicable for format=xml.

    Default: Both

  • If this parameter is set to true, then Dataclass' xml definitions are returned. If parameter is not set its default value is 'true'

    Default: true

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'false'.

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • A filter to artifacts that have been created / updated / deleted since the given timestamp in this format: [yyyy-MM-ddTHH:mm:ss.SSSZ]

    Possible values: length = 24, Value must match regular expression ^\d{4}(-\d\d(-\d\d(T\d\d:\d\d(:\d\d)?(\.\d+)?(([+-]\d\d:\d\d)|Z)?)?)?)?$

  • The maximum number of data_classes to return - must be at least 1 and cannot exceed 1000. The default value is 10.

    Possible values: 1 ≤ value ≤ 1000

    Default: 10

  • The index of the first matching data_class to include in the result.

Response

Presents a paginated list of DataClasses

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Creates a draft data class in the glossary

This method is used to create a draft data class in the glossary. If the effective start date of selected reference data set is a future date, then effective start date of data class will be same as that of selected reference data set effective start date.

POST /v3/data_classes

Request

Query Parameters

  • If configuration permits, the artifact will be created in the published state by skipping the workflow. For details refer to documentation.

Data class to be created.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Unique constraint violated because of optimistic locking or some other constraint.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieves data class with given guid and status

This method can be used for retrieving details of an ACTIVE or DRAFT data class. Only ACTIVE is allowed as status right now

GET /v3/data_classes/{artifact_id}/versions

Request

Path Parameters

  • Artifact ID or global ID of the artifact

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • Filter by dataclass status.

    Available statuses:
    DRAFTartifacts which are being created or modified and not in use
    PUBLISHEDartifacts which are in published state (does not takes effective dates into account)
    ACTIVEartifacts which are published, and which effective date period includes current datetime

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Default: PUBLISHED

  • Comma-separated list of relationship types.

    Available types:
    is_a_type_of_data_class
    has_types_data_classes
    has_types_data_class_hierarchy
    parent_category
    categories
    terms
    classifications
    policies
    rules
    reference_data
    custom
    all

    Note: all does not return data class hierarchy.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.

    Default: true

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

List of paginated artifacts

Status Code

  • The data class has been retrieved successfully.

  • Bad Request

  • Unauthorized

  • The data class with given {guid} does not exist in the glossary.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes a draft or published version of an artifact

If the artifact state is DRAFT, then the draft version is deleted.

If the artifact state is PUBLISHED, a draft version with marked_for_deletion is created .

If the artifact state is PUBLISHED and workflow is skipped, then the published version is deleted.

If a draft artifact already exists for deletion for a published artifact, then the draft artifact is simply skipped.

Administrator role is required.

DELETE /v3/data_classes/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact id of the dataclass to delete.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the dataclass to delete.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • A draft version has been successfully created for deleting the published artifact.

  • The artifact has been deleted successfully.

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieves data class with given guid

This method can be used for retrieving details of an ACTIVE or DRAFT data class.

GET /v3/data_classes/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact ID of the data class to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version ID of the data class to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Comma-separated list of relationship types.

    Available types:
    is_a_type_of_data_class
    has_types_data_classes
    has_types_data_class_hierarchy
    parent_category
    categories
    terms
    classifications
    policies
    rules
    reference_data
    custom
    all

    Note: all does not return data class hierarchy.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.

    Default: true

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

Response

Dataclass object

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Updates a draft or published artifact

If a published version is updated, a draft version is created from the published version and the draft version is updated with the requested changes and returned.If any relationships of the artifact are updated, then the updated relationships are returned as a paginated list limited by the give limit parameter. The relationships that are not updated are not returned.

PATCH /v3/data_classes/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact id of the data class to be updated.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the data class to be updated.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

The data class to be updated.
Fields omitted will be unchanged, and fields set to null explicitly will be nulled out.
For multi-valued attributes & relationships, the complete list will be replaced by the given list of values.
Additional Example:

{"description" : "description updated"}
If the effective start date of selected reference data set is a future date, then effective start date of data class will be same as that of selected reference data set effective start date.

Response

Dataclass object

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

List the relationships of the given type for the specified data class

If the result set is larger than the limit parameter, it returns the first limit number of relationships.
To retrieve the next set of relationships, call the method again by using the URI in the property next returned by this method.

GET /v3/data_classes/{artifact_id}/versions/{version_id}/relationships

Request

Path Parameters

  • The artifact ID of the data class to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version ID of the data class to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Comma-separated list of relationship types.

    Available types:
    is_a_type_of_data_class
    has_types_data_classes
    has_types_data_class_hierarchy
    parent_category
    categories
    terms
    classifications
    policies
    rules
    reference_data
    custom
    all

    Note: all does not return data class hierarchy.

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

  • Custom relationship definition Id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • Is custom relationship reversed?

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • Retrieves target parent category name of the relationship entity.

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

Response that includes relationships to a managed object, like business term, data class, classification

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create relationships for an artifact in the glossary

If it is a published version, it creates a draft from the published version and adds the relationship to the draft version. And, it returns the details of the draft version.

POST /v3/data_classes/{artifact_id}/versions/{version_id}/relationships

Request

Path Parameters

  • The artifact ID of the data class to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version ID of the data class to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

Relationships to be created.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes relationships for an artifact in the glossary

If it is a published version, it creates a draft from the published version and deletes the relationship from the draft version. And, it returns the details of the draft version.

DELETE /v3/data_classes/{artifact_id}/versions/{version_id}/relationships/{relationship_id}

Request

Path Parameters

  • The artifact ID of the data class to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version ID of the data class to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • The artifact ID of the relationship to be deleted.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

Response

Glossary archive response object

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Business Glossary Heartbeat

Returns the build details and health of the dependent services

GET /v3/glossary_status/heartbeat

Request

No Request Parameters

This method does not accept any request parameters.

Response

Holds business glossary build information and DB2 connection status information

Status Code

  • Success

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Tenant init and status

Checks tenant init status (and initialize if necessary), blocks until init is done

POST /v3/glossary_status/tenant_init

Request

No Request Parameters

This method does not accept any request parameters.

Response

Status Code

  • Success

  • Requested data are not available, try again later.

No Sample Response

This method does not specify any sample responses.

Tenant init and status

Checks tenant init status, returns immediately (initialization if required is performed in background)

GET /v3/glossary_status/tenant_init_status

Request

No Request Parameters

This method does not accept any request parameters.

Response

Tenant init status

Status Code

  • Success

No Sample Response

This method does not specify any sample responses.

Creates draft terms in the glossary

If the unique constraint on the name or display name of the term is violated, the method fails with 409 Conflict response.

POST /v3/glossary_terms

Request

Query Parameters

  • If configuration permits, the artifact will be created in the published state by skipping the workflow. For details refer to documentation.

Terms to be created. The terms array must contain at least 1 term, and cannot exceed 100 terms.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Unique constraint violated because of optimistic locking or some other constraint.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieves versions of a term for the given artifact_id and status

Retrieval of the versions of ACTIVE state is supported.

GET /v3/glossary_terms/{artifact_id}/versions

Request

Path Parameters

  • Artifact ID or global ID of the artifact

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • Filter by term status.

    Available statuses:
    DRAFTartifacts which are being created or modified and not in use
    PUBLISHEDartifacts which are in published state (does not takes effective dates into account)
    ACTIVEartifacts which are published, and which effective date period includes current datetime

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Default: PUBLISHED

  • Comma-separated list of relationship types.

    Available types:
    is_a_type_of_terms
    has_type_terms
    has_types_term_hierarchy
    synonym_terms
    related_terms
    data_classes
    is_of_terms
    has_terms
    categories
    parent_category
    classifications
    policies
    rules
    reference_data
    reference_data_values
    custom
    all

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.

    Default: true

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

List of paginated artifacts

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes a draft or published version of an artifact

If the artifact state is DRAFT, then the draft version is deleted.

If the artifact state is PUBLISHED, a draft version with marked_for_deletion is created .

If the artifact state is PUBLISHED and workflow is skipped, then the published version is deleted.

If a draft artifact already exists for deletion for a published artifact, then the draft artifact is simply skipped.

Administrator role is required.

DELETE /v3/glossary_terms/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact id of the term to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the term to delete.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • A draft version has been successfully created for deleting the published artifact.

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Gets the term in the glossary with a given version id

This method can be used for retrieving details of an ACTIVE or DRAFT term.

GET /v3/glossary_terms/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact id of the term to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the term to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Comma-separated list of relationship types.

    Available types:
    is_a_type_of_terms
    has_type_terms
    has_types_term_hierarchy
    synonym_terms
    related_terms
    data_classes
    is_of_terms
    has_terms
    categories
    parent_category
    classifications
    policies
    rules
    reference_data
    reference_data_values
    custom
    all

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.

    Default: true

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

Response

Response glossary term object

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Updates a draft or published artifact

If a published version is updated, a draft version is created from the published version and the draft version is updated with the requested changes and returned.If any relationships of the artifact are updated, then the updated relationships are returned as a paginated list limited by the give limit parameter. The relationships that are not updated are not returned.

PATCH /v3/glossary_terms/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact id of the term to be updated.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the term to be updated.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

The business term to be updated.
Fields omitted will be unchanged, and fields set to null explicitly will be nulled out. If a relationship of the term is updated, then the updated relationship as returned as a paginated list limited by the give limit parameter. Relationships that are not updated are not returned.

Response

Response glossary term object

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Unique constraint violated because of optimistic locking or some other constraint.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

List the relationships for the specified term

If the result set is larger than the limit parameter, it returns the first limit number of relationships.
To retrieve the next set of relationships, call the method again by using the URI in the property next returned by this method.

GET /v3/glossary_terms/{artifact_id}/versions/{version_id}/relationships

Request

Path Parameters

  • The guid of the Term

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The versionID of the Term

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Comma-separated list of relationship types.

    Available types:
    is_a_type_of_terms
    has_type_terms
    has_types_term_hierarchy
    synonym_terms
    related_terms
    data_classes
    is_of_terms
    has_terms
    categories
    parent_category
    classifications
    policies
    rules
    reference_data
    reference_data_values
    custom
    all

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

  • Custom relationship definition Id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • Is custom relationship reversed?

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • Retrieves target parent category name of the relationship entity.

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

Response that includes relationships to a managed object, like business term, data class, classification

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create relationships for an artifact in the glossary

If it is a published version, it creates a draft from the published version and adds the relationship to the draft version. And, it returns the details of the draft version.

POST /v3/glossary_terms/{artifact_id}/versions/{version_id}/relationships

Request

Path Parameters

  • The artifact ID of the term to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version ID of the term to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

Relationships to be created.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Unique constraint violated because of optimistic locking or some other constraint.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes relationships for an artifact in the glossary

If it is a published version, it creates a draft from the published version and deletes the relationship from the draft version. And, it returns the details of the draft version.

DELETE /v3/glossary_terms/{artifact_id}/versions/{version_id}/relationships/{relationship_id}

Request

Path Parameters

  • The artifact ID of the term to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version ID of the term to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • The artifact ID of the relationship to be deleted.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Exports custom attribute definitions to a json file

This method can be used to export custom attribute definitions to a json file.

POST /v3/governance_artifact_types/custom_attribute_definitions/export

Request

Query Parameters

  • The comma-separated list of supported custom attribute types. Allowed values are text, date, number, enum, relationship, all, all_without_relationship.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

    Example: text,date

  • The artifact type which a custom attribute definition applies to. Allowed values are category, glossary_term, data_class, policy, rule, classification, reference_data

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term,policy

  • The related artifact type which a custom attribute definition for relationship applies to. Allowed values are category, glossary_term, data_class, policy, rule, classification, reference_data

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term,policy

The list of custom attribute definitions artifact ids to be exported.

Examples:
Resources with ids for custom attribute definitions

Response

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Import values for custom attribute definitions from specified json file

This method can be used to import values custom attribute definitions from specified json file.

POST /v3/governance_artifact_types/custom_attribute_definitions/import

Request

Query Parameters

  • Determines if only custom properties or custom relationships or both types will be imported. Allowed values: ALL, PROPERTY, RELATIONSHIP.

    Allowable values: [ALL,PROPERTY,RELATIONSHIP]

    Default: ALL

  • If async_mode is true, then the method starts an asynchronous process to execute the given action and returns with ACCEPTED 202 status code.

Form Parameters

  • File

    Possible values: 1 ≤ length ≤ 2147483647

Response

Glossary Import Status

Status Code

  • Import of assets has been completed

  • Import of assets has been started

  • Unauthorized

  • Unique constraint violated because of optimistic locking or some other constraint.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Export values of all supported types to a ZIP file

This method can be used to export values of all supported types to a ZIP file.

GET /v3/governance_artifact_types/export

Request

Query Parameters

  • This specifies if artifact ID numbers should be included in exported files, or not. Possible values: "always", artifact ID numbers are included for artifacts, and "never", not included at all.

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Default: always

    Example: always

  • The comma-separated list of supported artifact types. Allowed values are all, category, classification, data_class, glossary_term, policy, rule, reference_data and role_assignment.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

    Default: all

    Example: category,glossary_term

  • The comma-separated list of categories ID numbers, or "all_top_level", which means all top-level categories.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

    Default: all_top_level

    Example: e39ada11-8338-3704-90e3-681a71e7c839,c305c9fe-3223-48a0-b146-228a782bc7e4

  • If parameter "include_custom_attribute_definitions" is set to true, information about suitable custom attribute definitions will be included in zip

    Default: false

  • If parameter "include_development_log" is set to true, development log content will be included in zip

    Default: false

Response

Status Code

  • Success

  • Unauthorized

  • The category with given {guid} does not exist in the glossary.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Import values from specified ZIP file

This method can be used to import values from specified ZIP file.

POST /v3/governance_artifact_types/import

Request

Query Parameters

  • Import merge option, valid values:
    all - imported values will replace existing values in catalog
    specified - imported values that are not empty replace existing values in catalog
    empty - imported values replace only empty values in catalog.

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Default: specified

    Example: specified

Form Parameters

  • File

    Possible values: 1 ≤ length ≤ 2147483647

Response

Glossary Import Status

Status Code

  • Import of assets has been completed

  • Import of assets has been started

  • Unauthorized

  • Unique constraint violated because of optimistic locking or some other constraint.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Cleanup ZIP import process

This method can be used to cleanup specified stalled ZIP import process that crashed or hanged. Note: This feature is experimental - the API and scope are subject to change. Should not be used on imports that are alive or pending as it can lead to unpredictable results.

POST /v3/governance_artifact_types/import/cleanup/{process_id}

Request

Path Parameters

  • Import process id

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: 67c6dab6-c3ee-441e-8445-fff2f7259514

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Import of assets status

Import of assets status

GET /v3/governance_artifact_types/import/status/{process_id}

Request

Path Parameters

  • Import process id

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

Query Parameters

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

    Default: 0

Response

Glossary Import Status

Status Code

  • Import status available

  • Unauthorized

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get artifacts of given type that are either published or drafts matching specified criteria

This method can be used for retrieving artifacts of given type that are:

  • published,
  • drafts matching specified criteria (starts_with, substring, workflow_status, created_by, modified_by, enabled).

GET /v3/governance_artifact_types/{artifact_type}

Request

Path Parameters

  • The artifact type. Allowed values are all, glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

Query Parameters

  • First character of artifact, applicable only for draft artifact search.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

    Example: Tes

  • Filter on substring, applicable only for draft artifact search.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

    Example: est

  • Filter by workflow status.

    Available statuses (if no status is specified, all drafts are retrieved):
    published
    Publishing (applicable only for draft artifact search)
    Publish failed (applicable only for draft artifact search)
    Not started (applicable only for draft artifact search)

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

    Example: NOT_STARTED

  • Filter by creator of artifact, applicable only for draft artifact search.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

    Example: IBMid-1234567ABC

  • Filter by editor of artifact, applicable only for draft artifact search.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

    Example: IBMid-1234567ABC

  • Filter Results based on enabled flag for dataclass, yes will give enabled dataclass, no will give disabled and both shall return all, applicable only for draft artifact search.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

    Example: true

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

  • Value on which results need to be sorted, valid sort parameters are NAME, MODIFIED, CREATED, TYPE.Prefix hyphen (-) for descending order, applicable only for draft artifact search.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

    Example: -NAME

Response

List of paginated workflow artifacts

Status Code

  • Artifacts have been retrieved successfully.

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieves custom attribute definitions with given artifact type

This method can be used for retrieving details of custom attribute definitions.

GET /v3/governance_artifact_types/{artifact_type}/custom_attribute_definitions

Request

Path Parameters

  • The artifact type. Allowed values are all, category, glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

Query Parameters

  • Is the artifact type defined as related artifact type or not, in case of "RELATIONSHIP" type only!

Response

Used to facilitate serialization and correct swagger documentation.

Status Code

  • The custom attribute definitions have been retrieved successfully.

  • Unauthorized

  • The custom attribute definition with given {guid} does not exist.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Creates custom attribute definition in the glossary

This method can be used to create custom attribute definition in the glossary.

POST /v3/governance_artifact_types/{artifact_type}/custom_attribute_definitions

Request

Path Parameters

  • The artifact type. Allowed values are all, category, glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

Custom attribute definition to be created.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • The custom attribute definition has been created successfully.

  • Bad Request

  • Unauthorized

  • UniqueConstraintViolation - custom attribute definition with given name already exists.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes the custom attribute definition with a given guid

This method is used to delete the custom attribute definition with a given guid.

DELETE /v3/governance_artifact_types/{artifact_type}/custom_attribute_definitions/{custom_attribute_definition_id}

Request

Path Parameters

  • The artifact type. Allowed values are all, category, glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

  • The guid of the custom attribute definition to be purged.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: 990e33f5-3108-4d45-a530-030745831313

Response

Glossary archive response object

Status Code

  • The custom attribute definition has been deleted successfully.

  • Bad Request

  • Unauthorized

  • The custom attribute definition with given {guid} does not exist.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieves custom attribute definition with given guid

This method can be used for retrieving details of a custom attribute definition.

GET /v3/governance_artifact_types/{artifact_type}/custom_attribute_definitions/{custom_attribute_definition_id}

Request

Path Parameters

  • The artifact type. Allowed values are all, category, glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

  • The guid of the custom attribute definition to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: d4a5e6e1-a6c0-4580-afbb-6898303adf34

Response

Used to facilitate serialization and correct swagger documentation.

Status Code

  • The custom attribute definition has been retrieved successfully.

  • Unauthorized

  • The custom attribute definition with given {guid} does not exist.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Updates custom attribute definition with given id

This method is used to update custom attribute definition with given id.

PATCH /v3/governance_artifact_types/{artifact_type}/custom_attribute_definitions/{custom_attribute_definition_id}

Request

Path Parameters

  • The artifact type. Allowed values are all, category, glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

  • The guid of the custom attribute definition to be updated.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

Custom attribute definition to be updated.
Fields omitted will be unchanged, and fields set to null explicitly will be nulled out.
For multi-valued attributes & relationships, the complete list will be replaced by the given list of values.
Additional Example:

{"business_description" : "business desc updated"}

Response

Used to facilitate serialization and correct swagger documentation.

Status Code

  • The custom attribute definition has been updated successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The custom attribute definition with given {guid} does not exist.

  • The custom attribute definition was modified by another user.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete a list of draft or published versions of given artifact_type

If the artifact state is DRAFT, then the draft version is deleted.

If the artifact state is PUBLISHED, a draft version with marked_for_deletion is created .

If the artifact state is PUBLISHED and workflow is skipped, then the published version is deleted.

If a draft artifact already exists for deletion for a published artifact, then the draft artifact is simply skipped.

Administrator role is required.

POST /v3/governance_artifact_types/{artifact_type}/delete

Request

Path Parameters

  • The artifact type. Allowed values are category, glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

Query Parameters

  • If async_mode is true, then the method starts an asynchronous process to execute the given action and returns with ACCEPTED 202 status code.

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

  • If someone has already created a draft for deleting or updating an artifact, then the artifact will be ignored.

  • If specified asset does does not exist, it is skipped.

    Default: false

The list of artifacts to be deleted. All the artifacts must be either in published state or draft state, but mix of draft and published state is not allowed.

Response

Status Code

  • A draft version has been successfully created for deleting the published artifact.

  • If async_mode is true, then the method starts an asynchronous process to execute the given action and returns with ACCEPTED 202 status code.

  • The artifacts have been deleted successfully.

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Exports values of a specified type to a csv file

This method can be used to export values of a specified type to a csv file.

GET /v3/governance_artifact_types/{artifact_type}/export

Request

Path Parameters

  • The artifact type. Allowed values are category, glossary_term, data_class, policy, rule, classification

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

Query Parameters

  • The artifactId of the parent category

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: 990e33f5-3108-4d45-a530-0307458362d4

  • Whether to include the parent category. This applies to category (as asset type) export only, and is ignored for other asset types. The special [uncategorized] category is not included.

  • Whether to include assets from subcategories

Response

Status Code

  • Success

  • Unauthorized

  • The category with given {guid} does not exist in the glossary.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Import values from specified csv file

This method can be used to import values from specified csv file.

POST /v3/governance_artifact_types/{artifact_type}/import

Request

Path Parameters

  • The artifact type. Allowed values are all, category, glossary_term, data_class, policy, rule, classification, reference_data

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

Query Parameters

  • Import merge option, valid values:
    all - imported values will replace existing values in catalog
    specified - imported values that are not empty replace existing values in catalog
    empty - imported values replace only empty values in catalog.

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Default: empty

    Example: all

  • If async_mode is true, then the method starts an asynchronous process to execute the given action and returns with ACCEPTED 202 status code.

Form Parameters

  • File

    Possible values: 1 ≤ length ≤ 2147483647

Response

Glossary Import Status

Status Code

  • Import of assets has been completed

  • Import of assets has been started

  • Unauthorized

  • Unique constraint violated because of optimistic locking or some other constraint.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Search for a list of drafts of given artifact_type

This method can be used for retrieving draft artifacts.

POST /v3/governance_artifact_types/{artifact_type}/search

Request

Path Parameters

  • The artifact type. Allowed values are category, glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

The list of draft artifacts to be retrieved. If drafts exist, then they are returned.

Response

Status Code

  • The drafts have been retrieved successfully.

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get the latest published version of the specified artifact

This method can be used for getting the latest published version of the specified artifact.

GET /v3/governance_artifact_types/{artifact_type}/{artifact_id}

Request

Path Parameters

  • The artifact type. Allowed values are category, glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

  • Artifact ID or global ID of the artifact

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: 990e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • Comma-separated list of relationship types.

    Relationship TypesArtifact Types
    categoryclassificationdata_classglossary_termpolicyreference_datarule
    all+++++++
    categories-++++++
    child-----+-
    classifications+-+++++
    custom+++++++
    data_classes-+-++++
    data_location_rules----+--
    data_protection_rules----+--
    grouped_assets+------
    has_terms---+---
    has_type_terms---+---
    has_types_category+------
    has_types_classifications-+-----
    has_types_classifications_hierarchy-+-----
    has_types_data_class_hierarchy--+----
    has_types_data_classes--+----
    has_types_term_hierarchy---+---
    is_a_parent_category_for+------
    is_a_type_of_category+------
    is_a_type_of_classification-+-----
    is_a_type_of_data_class--+----
    is_a_type_of_terms---+---
    is_of_terms---+---
    multi_value_mappings-----+-
    owned_by+------
    parent-----+-
    parent_category-++++++
    parent_hierarchy-----+-
    parent_policy----+--
    policies-+++--+
    reference_data-+++--+
    reference_data_values---+---
    related_categories-+-----
    related_terms---+---
    replaced_by_terms---+---
    replaces_terms---+---
    rules-++++++
    single_value_mappings-----+-
    sub_policies----+--
    synonym_terms---+---
    terms-++-+++
    value_mappings-----+-

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'false'.

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.
    This parameter is ignored when artifact type is category.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.
    This parameter is ignored when artifact type is category.

Response

Represents an object that we send back to the end user. It has two parts: entity and metadata.

Status Code

  • The latest published version of the specified artifact has been retrieved successfully.

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get development logs & Comments for a draft artifact version

Get development logs & Comments for a draft artifact version

GET /v3/governance_artifact_types/{artifact_type}/{artifact_id}/versions/{version_id}/aggregated_logs

Request

Path Parameters

  • The artifact type. Allowed values are glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

  • The artifact id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

  • Time zone offset based on which the day wise grouping is to be performed. The offset will be of format [+-]hh:mm where hh stands for hour digit and mm for minute digit.
    e.g. +05:30 indicates IST. If [+-] is not provided by default + will be appended. e.g 05:30 indicates +05:30.
    If hour digit is single like +h:mm provided, then it will be considered as +0h:mm. e.g. +5:30 indicates +05:30.
    The range of offsets is restricted to -17:59 to +17:59 inclusive.

    Possible values: 1 ≤ length ≤ 6, Value must match regular expression ^([+-]?)(0[0-9]|1[0-7]|[0-9]):([0-5][0-9])$

Response

List of paginated asset aggregated comments

Status Code

  • Development logs & Comments retrieved successfully

  • Bad Request

  • Unauthorized

  • Forbidden

  • Draft artifact version not found for given version_id

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get development logs & Comments for a draft artifact version with development log id

Get development logs & Comments for a draft artifact version with development log id

GET /v3/governance_artifact_types/{artifact_type}/{artifact_id}/versions/{version_id}/aggregated_logs/{mod_id}

Request

Path Parameters

  • The artifact type. Allowed values are glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

  • The artifact id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

  • The development log id.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

Query Parameters

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

Paginated asset comment modification details

Status Code

  • Development logs & Comments retrieved successfully

  • Bad Request

  • Unauthorized

  • Forbidden

  • Draft artifact version not found for given version_id

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Add a comment for a draft artifact version

Add a comment for a draft artifact version

POST /v3/governance_artifact_types/{artifact_type}/{artifact_id}/versions/{version_id}/comments

Request

Path Parameters

  • The artifact type. Allowed values are glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

  • The artifact id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

The user comment.

Response

Comment By User

Status Code

  • Comment added successfully

  • Bad Request

  • Unauthorized

  • Forbidden

  • Draft artifact version not found for given version_id

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete a comment on a draft artifact version

Delete a comment on a draft artifact version

DELETE /v3/governance_artifact_types/{artifact_type}/{artifact_id}/versions/{version_id}/comments/{comment_id}

Request

Path Parameters

  • The artifact type. Allowed values are glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

  • The artifact id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: 990e33f5-3108-4d45-a530-0307458362d4

  • The version id.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4

  • The comment id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: 990e33f5-3108-4d45-a530-0307458362d4

Response

Status Code

  • Comment deleted successfully

  • Bad Request

  • Unauthorized

  • Draft artifact version not found for given version_id

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update a comment on a draft artifact version

Update a comment on a draft artifact version

PATCH /v3/governance_artifact_types/{artifact_type}/{artifact_id}/versions/{version_id}/comments/{comment_id}

Request

Path Parameters

  • The artifact type. Allowed values are glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

  • The artifact id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: 990e33f5-3108-4d45-a530-0307458362d4

  • The version id.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4

  • The comment id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: 990e33f5-3108-4d45-a530-0307458362d4

The user comment.

Response

Comment By User

Status Code

  • Comment updated successfully

  • Bad Request

  • Unauthorized

  • Draft artifact version not found for given version_id

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get development logs & Comments for a draft artifact version

Get development logs & Comments for a draft artifact version

GET /v3/governance_artifact_types/{artifact_type}/{artifact_id}/versions/{version_id}/logs

Request

Path Parameters

  • The artifact type. Allowed values are glossary_term, classification, data_class, reference_data, policy, rule

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Example: glossary_term

  • The artifact id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

  • The version id.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

Query Parameters

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

Paginated Asset Comment List

Status Code

  • Development logs & Comments retrieved successfully

  • Bad Request

  • Unauthorized

  • Forbidden

  • Draft artifact version not found for given version_id

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Creates a policy in the glossary

Creates a policy in the glossary

POST /v3/policies

Request

Query Parameters

  • If configuration permits, the artifact will be created in the published state by skipping the workflow. For details refer to documentation.

Represents a policy to be created, used for policy POST request.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • The policy has been created successfully.

  • Bad Request

  • Unauthorized

  • UniqueConstraintViolation - policy with given name already exists.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieves versions of a policy for the given artifact_id and status

Retrieval of the versions of ACTIVE state is supported.

GET /v3/policies/{artifact_id}/versions

Request

Path Parameters

  • Artifact ID or global ID of the artifact

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • Filter by policy status.

    Available statuses:
    DRAFTartifacts which are being created or modified and not in use
    PUBLISHEDartifacts which are in published state (does not takes effective dates into account)
    ACTIVEartifacts which are published, and which effective date period includes current datetime

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Default: PUBLISHED

  • Comma-separated list of relationship types.

    Available types:
    parent_policy
    sub_policies
    parent_category
    categories
    terms
    classifications
    rules
    data_location_rules
    data_protection_rules
    custom
    all

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.

    Default: true

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

Response

List of paginated artifacts

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes a draft or published version of an artifact

If the artifact state is DRAFT, then the draft version is deleted.

If the artifact state is PUBLISHED, a draft version with marked_for_deletion is created .

If the artifact state is PUBLISHED and workflow is skipped, then the published version is deleted.

If a draft artifact already exists for deletion for a published artifact, then the draft artifact is simply skipped.

Administrator role is required.

DELETE /v3/policies/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact ID of the policy.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the policy to delete or to create mark-for-delete draft copy.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • The artifact has been deleted successfully.

  • A draft version has been successfully created for deleting the published artifact.

  • Bad Request

  • Unauthorized

  • Policy with sub-policies cannot be deleted. Try again after re-parenting sub-policies.

  • Policy with given artifact and version ids does not exist in the glossary.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieves versions of a policy for the given artifact_id and status

Retrieval of the versions of ACTIVE state is supported.

GET /v3/policies/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact ID of the policy to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version ID of the policy to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Comma-separated list of relationship types.

    Available types:
    parent_policy
    sub_policies
    parent_category
    categories
    terms
    classifications
    rules
    data_location_rules
    data_protection_rules
    custom
    all

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.

    Default: true

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

Response

Policy returned by REST GET method that includes the relationships as paginated list.

Status Code

  • The policy has been retrieved successfully.

  • Unauthorized

  • The policy with given {guid} does not exist in the glossary.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Updates policy with given artifact id and version id

Updates policy with given artifact id and version id. If the policy is in published state then first creates a draft and applies the changes to the newly created draft.

PATCH /v3/policies/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact id of the policy to be updated.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the policy to be updated.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

The policy to be updated.
Fields omitted will be unchanged, and fields set to null explicitly will be nulled out.
For multi-valued attributes & relationships, the complete list will be replaced by the given list of values.
Additional Example:

{"description" : "description updated"}

Response

Policy returned by REST GET method that includes the relationships as paginated list.

Status Code

  • The policy has been updated successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The policy with given {guid} does not exist in the glossary.

  • The policy was modified by another user.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Updates DPR rule relationships of a published policy using its artifact id and version id

Updates DPR rule relationships of a published policy using its artifact id and version id
Deprecated, functionality will be replaced by new one introduced in the feature releases.

PATCH /v3/policies/{artifact_id}/versions/{version_id}/data_protection_rules

Request

Path Parameters

  • The artifact id of the policy to be updated.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

  • The version id of the policy to be updated.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

The parent category of the artifact.

Response

Policy returned by REST GET method that includes the relationships as paginated list.

Status Code

  • The policy has been updated successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The policy with given {guid} does not exist in the glossary.

  • The policy was modified by another user.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

List the relationships for the specified policy

If the result set is larger than the limit parameter, it returns the first limit number of relationships.
To retrieve the next set of relationships, call the method again by using the URI in the property next returned by this method.

GET /v3/policies/{artifact_id}/versions/{version_id}/relationships

Request

Path Parameters

  • The guid of the Policy

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The versionID of the Policy

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Comma-separated list of relationship types.

    Available types:
    parent_policy
    sub_policies
    parent_category
    categories
    terms
    classifications
    rules
    data_location_rules
    data_protection_rules
    custom
    all

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

  • Custom relationship definition Id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • Is custom relationship reversed?

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • Retrieves target parent category name of the relationship entity.

Response

Response that includes relationships to a managed object, like business term, data class, classification

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create relationships for an artifact in the glossary

If it is a published version, it creates a draft from the published version and adds the relationship to the draft version. And, it returns the details of the draft version.

POST /v3/policies/{artifact_id}/versions/{version_id}/relationships

Request

Path Parameters

  • The artifact ID of the term to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version ID of the term to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

Relationships to be created.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Unique constraint violated because of optimistic locking or some other constraint.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes a relationship from a draft policy

Deletes a relationship from a draft policy

DELETE /v3/policies/{artifact_id}/versions/{version_id}/relationships/{relationship_id}

Request

Path Parameters

  • The artifact ID of the policy to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version ID of the policy to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • The artifact ID of the relationship to be deleted.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create a reference data set

Create a reference data set
Note: For Reference Data values, precision will be lost if long value has more than 15-16 digits as JSON parser will map to double type regardless of whether it is used for integer, long or floating-point numbers. To Preserve all digits pass the value as a string.

POST /v3/reference_data

Request

Query Parameters

  • If configuration permits, the artifact will be created in the published state by skipping the workflow. For details refer to documentation.

Represents a Reference Data Set to be created for RDS V3 API version.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • The reference data set has been created successfully.

  • Bad Request

  • Unauthorized

  • Reference data set with given name already exists.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "href": "v3/reference_data/0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6/versions/4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

Delete a list of Custom Column definitions with specified column_ids

Delete a list of Custom Column definitions with specified column_ids

DELETE /v3/reference_data/custom_columns

Request

Response

RDS custom columns delete response list

Status Code

  • List of Custom Column definitions has been deleted successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The Custom Column definition with given {column_id} does not exist.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "id": "a98edac9-4953-431e-9f8e-d9f1507454d8",
          "name": "Custom_Column_Name",
          "description": "This is a Custom Column",
          "type": "TEXT"
        }
      ]
    }

Retrieve Custom Column definitions

Fetches Custom Column definitions.
Use filter_by_name to provide search criteria and sort_order=asc/desc to order result.By default order will be asc.

GET /v3/reference_data/custom_columns

Request

Query Parameters

  • Filter the Custom Column definitions by name.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • Sort direction for Custom Column names.

    Allowable values: [ASC,DESC]

    Default: ASC

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

Paginated Reference Data Set custom columns response list

Status Code

  • List of Custom Column definitions has been retrieved successfully.

  • Unauthorized

  • The Custom Column definition with given {column_id} does not exist.

  • Internal Server Error

Example responses
  • {
      "offset": 90,
      "last": {
        "href": "string",
        "offset": 270
      },
      "prev": {
        "href": "string",
        "offset": 60
      },
      "set_uri": true,
      "limit": 30,
      "count": 300,
      "first": {
        "href": "string",
        "offset": 0
      },
      "next": {
        "href": "string",
        "offset": 120
      },
      "resources": [
        {
          "metadata": {
            "id": "8b047b17-8e31-4382-be19-e873d46d32a8",
            "modified_by": "IBMid-1234567ABC",
            "modified_at": "2017-02-15T02:30:32.000Z",
            "created_at": "2017-02-15T02:30:32.000Z",
            "created_by": "IBMid-1234567ABC",
            "revision": "0"
          },
          "entity": {
            "id": "a98edac9-4953-431e-9f8e-d9f1507454d8",
            "revision": "0",
            "name": "Custom_Column_Name",
            "description": "This is a Custom Column",
            "type": "TEXT",
            "max_character_count": 2000,
            "mandatory": true,
            "composite_key": true,
            "owner_rds_id": "9ec35f22-db7f-56c9-8a05-25983e485adc",
            "validator_rds_id": "d58b8247-8f94-4c1f-8ea1-48f1cb55122a",
            "hidden": false
          }
        }
      ]
    }

Create Custom Column definitions

Create Custom Column definitions

  • Allowed Custom Column definitions types: NUMBER, TEXT, DATE.
  • If a column is a composite key, it must be mandatory.
  • For NUMBER and TEXT types the default values for max_characters_count:
    • for a composite key column: 200,
    • for a normal column: 2000.
  • validator_rds_id must be an artifact id of a published RDS.
POST /v3/reference_data/custom_columns

Request

RDS custom columns create request

Response

Custom column create response

Status Code

  • The Custom Column(s) have been created successfully.

  • Bad Request

  • Unauthorized

  • UniqueConstraintViolation - Custom Column definition with given name already exists.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "id": "a98edac9-4953-431e-9f8e-d9f1507454d8",
          "revision": "0",
          "name": "Custom_Column_Name",
          "description": "This is a Custom Column",
          "type": "TEXT",
          "max_character_count": 2000,
          "mandatory": true,
          "composite_key": true,
          "owner_rds_id": "9ec35f22-db7f-56c9-8a05-25983e485adc",
          "validator_rds_id": "d58b8247-8f94-4c1f-8ea1-48f1cb55122a",
          "hidden": false
        }
      ]
    }

Delete a Custom Column definition by column_id

Delete a Custom Column definition by column_id

DELETE /v3/reference_data/custom_columns/{column_id}

Request

Path Parameters

  • The column id associated with Custom Column definition.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: 83a7a25a-4a51-4053-a6e7-4e374d26fe1a

Response

resources of custom columns.

Status Code

  • The Custom Column definition has been deleted successfully with specified column_id.

  • Bad Request

  • Unauthorized

  • Internal Server Error

Example responses
  • {
      "id": "a98edac9-4953-431e-9f8e-d9f1507454d8",
      "name": "Custom_Column_Name",
      "description": "This is a Custom Column",
      "type": "TEXT"
    }

Retrieve a Custom Column definition with given column_id

Retrieve a Custom Column definition with given column_id

GET /v3/reference_data/custom_columns/{column_id}

Request

Path Parameters

  • The guid of the Custom Column definition.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

Response

RDS Custom Columns Get Response

Status Code

  • Custom Column definition with given column_id has been retrieved successfully.

  • Unauthorized

  • The Custom Column definition with given {column_id} does not exist.

  • Internal Server Error

Example responses
  • {
      "metadata": {
        "id": "8b047b17-8e31-4382-be19-e873d46d32a8",
        "modified_by": "IBMid-1234567ABC",
        "modified_at": "2017-02-15T02:30:32.000Z",
        "created_at": "2017-02-15T02:30:32.000Z",
        "created_by": "IBMid-1234567ABC",
        "revision": "0"
      },
      "entity": {
        "id": "a98edac9-4953-431e-9f8e-d9f1507454d8",
        "revision": "0",
        "name": "Custom_Column_Name",
        "description": "This is a Custom Column",
        "type": "TEXT",
        "max_character_count": 2000,
        "mandatory": true,
        "composite_key": true,
        "owner_rds_id": "9ec35f22-db7f-56c9-8a05-25983e485adc",
        "validator_rds_id": "d58b8247-8f94-4c1f-8ea1-48f1cb55122a",
        "hidden": false
      }
    }

Update Custom Column properties with given column_id

Update Custom Column properties with given column_id

PATCH /v3/reference_data/custom_columns/{column_id}

Request

Path Parameters

  • The column id associated with Custom Column definition.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

Custom Column name/description to be updated.

Response

List of composite key members

Status Code

  • The Custom Column definition has been updated successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The Custom Column definition with given {column_id} does not exist.

  • The Custom Column was modified by another user.

  • Internal Server Error

Example responses
  • {
      "id": "a98edac9-4953-431e-9f8e-d9f1507454d8",
      "revision": "0",
      "name": "Custom_Column_Name",
      "description": "This is a Custom Column",
      "type": "TEXT",
      "max_character_count": 2000,
      "mandatory": true,
      "composite_key": true,
      "owner_rds_id": "9ec35f22-db7f-56c9-8a05-25983e485adc",
      "validator_rds_id": "d58b8247-8f94-4c1f-8ea1-48f1cb55122a",
      "hidden": false
    }

Retrieve a reference data set with given artifact_id and status

This method can be used for retrieving details of an ACTIVE, PUBLISHED or DRAFT reference data set.

GET /v3/reference_data/{artifact_id}/versions

Request

Path Parameters

  • Artifact ID or global ID of the artifact

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • Filter by reference data set status.

    Available statuses:
    DRAFTartifacts which are being created or modified and not in use
    PUBLISHEDartifacts which are in published state (does not takes effective dates into account)
    ACTIVEartifacts which are published, and which effective date period includes current datetime

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Default: PUBLISHED

  • Comma-separated list of relationship types.

    Available types:
    parent_category
    categories
    terms
    classifications
    data_classes
    rules
    child
    parent
    custom
    all

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.

    Default: true

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

Response

List of paginated artifacts

Status Code

  • The reference data set has been retrieved successfully.

  • Bad Request

  • Unauthorized

  • The reference data set with given {guid} does not exist.

  • Internal Server Error

Example responses
  • {
      "offset": 90,
      "last": {
        "href": "string",
        "offset": 270
      },
      "prev": {
        "href": "string",
        "offset": 60
      },
      "set_uri": true,
      "limit": 30,
      "count": 300,
      "first": {
        "href": "string",
        "offset": 0
      },
      "next": {
        "href": "string",
        "offset": 120
      },
      "resources": [
        {
          "metadata": {
            "artifact_type": "glossary_term",
            "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
            "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
            "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
            "source_repository_name": "string",
            "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
            "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
            "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
            "effective_start_date": "2021-07-26T12:37:03.919Z",
            "effective_end_date": "2021-07-29T10:37:03.919Z",
            "created_by": "IBMid-1234567ABC",
            "created_at": "2017-02-15T02:30:32.000Z",
            "modified_by": "IBMid-1234567ABC",
            "modified_at": "2017-02-15T02:30:32.000Z",
            "revision": "0",
            "name": "string",
            "state": "PUBLISHED",
            "tags": [],
            "steward_ids": [],
            "workflow_state": "string",
            "read_only": false,
            "remove_start_date": false,
            "remove_end_date": false
          },
          "entity": {
            "type, rule_type, etc": "TEXT, Governance, etc",
            "long_description": "string",
            "is_removed_long_description": false,
            "state": "PUBLISHED",
            "default_locale_id": "en-US",
            "reference_copy": false,
            "custom_attributes": []
          }
        }
      ]
    }

Delete a reference data set with given artifact_id and version_id

Delete the reference data set with a given artifact_id and version_id. If the artifact is published then a workflow will be started with a draft created with label marked for deletion which on approval will result in a actual delete. If the artifact is a draft copy then the draft copy will be deleted from the system.

DELETE /v3/reference_data/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

  • specify parent/root/code

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • A draft version has been successfully created for deleting the published artifact.

  • The reference data set has been deleted successfully.

  • Bad Request

  • Unauthorized

  • The reference data set with given {guid} does not exist.

  • The reference data set is currently used in catalog assets, catalog asset columns, data governance rules or data governance policies.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "href": "v3/reference_data/0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6/versions/4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

Retrieve a reference data set with given artifact_id and version_id

This method will retrieve details of the specified reference data set.

GET /v3/reference_data/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Fetch reference data value by code or text value fragment

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • sort direction for code

    Allowable values: [ASC,DESC]

    Default: ASC

  • fetch children of specific code

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • fetch reference data value as flat list of values or in hierarchical manner one level at a time. Level is determined by the parameter parent_code which indicate root value of the level.

    Allowable values: [FLAT,HIERARCHICAL]

    Default: FLAT

  • Comma-separated list of relationship types for reference data value.

    Available types:
    terms
    parent_hierarchy
    child
    parent
    single_value_mappings
    multi_value_mappings
    value_mappings
    all

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

  • Fetch reference data value with given exact code

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • Comma-separated list of relationship types.

    Available types:
    parent_category
    categories
    terms
    classifications
    data_classes
    rules
    child
    parent
    custom
    all

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • Fetch Custom Column definition for reference dataset.

    Default: true

  • Fetch custom column values for reference data set values.

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.

    Default: true

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • The maximum number of relationships to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • The index of the first matching relationship to include in the result.

  • The maximum number of reference data values to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • The index of the first matching value to include in the result.

Response

Response Reference Data Set

Status Code

  • The reference data set has been retrieved successfully.

  • Unauthorized

  • The reference data set with given {guid} does not exist.

  • Internal Server Error

Example responses
  • {
      "metadata": {
        "artifact_type": "glossary_term",
        "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
        "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
        "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
        "source_repository_name": "string",
        "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
        "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
        "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
        "effective_start_date": "2021-07-26T12:37:03.919Z",
        "effective_end_date": "2021-07-29T10:37:03.919Z",
        "created_by": "IBMid-1234567ABC",
        "created_at": "2017-02-15T02:30:32.000Z",
        "modified_by": "IBMid-1234567ABC",
        "modified_at": "2017-02-15T02:30:32.000Z",
        "revision": "0",
        "name": "string",
        "state": "PUBLISHED",
        "tags": [],
        "steward_ids": [],
        "workflow_state": "string",
        "read_only": false,
        "remove_start_date": false,
        "remove_end_date": false
      },
      "entity": {
        "terms": {
          "offset": 90,
          "last": {
            "href": "string",
            "offset": 270
          },
          "prev": {
            "href": "string",
            "offset": 60
          },
          "set_uri": true,
          "limit": 30,
          "count": 300,
          "first": {
            "href": "string",
            "offset": 0
          },
          "next": {
            "href": "string",
            "offset": 120
          },
          "resources": [
            {
              "metadata": {
                "artifact_type": "glossary_term",
                "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
                "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
                "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
                "source_repository_name": "string",
                "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
                "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
                "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
                "effective_start_date": "2021-07-26T12:37:03.919Z",
                "effective_end_date": "2021-07-29T10:37:03.919Z",
                "created_by": "IBMid-1234567ABC",
                "created_at": "2017-02-15T02:30:32.000Z",
                "modified_by": "IBMid-1234567ABC",
                "modified_at": "2017-02-15T02:30:32.000Z",
                "revision": "0",
                "name": "string",
                "state": "PUBLISHED",
                "tags": [],
                "steward_ids": [],
                "workflow_state": "string",
                "read_only": false,
                "remove_start_date": false,
                "remove_end_date": false
              },
              "entity": {
                "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
                "target_global_id": "867907bd-4c80-458d-9e75-c5683e013533_6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
                "target_parent_category_id": "e39ada11-8338-3704-90e3-681a71e7c839",
                "target_parent_category_name": "parent_category_name_example",
                "target_name": "name_example",
                "target_effective_start_date": "2022-02-14T13:16:49.355Z",
                "target_effective_end_date": "2022-02-15T14:16:49.355Z",
                "source_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
                "source_global_id": "867907bd-4c80-458d-9e75-c5683e013533_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
                "source_type": "reference_data,reference_data_value, etc",
                "target_type": "glossary_term, reference_data, category, etc",
                "description": "string",
                "relationship_type": "related, value_to_term, etc",
                "reference_copy": false
              }
            }
          ]
        },
        "classifications": {
          "offset": 90,
          "last": {
            "href": "string",
            "offset": 270
          },
          "prev": {
            "href": "string",
            "offset": 60
          },
          "set_uri": true,
          "limit": 30,
          "count": 300,
          "first": {
            "href": "string",
            "offset": 0
          },
          "next": {
            "href": "string",
            "offset": 120
          },
          "resources": [
            {
              "metadata": {
                "artifact_type": "glossary_term",
                "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
                "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
                "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
                "source_repository_name": "string",
                "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
                "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
                "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
                "effective_start_date": "2021-07-26T12:37:03.919Z",
                "effective_end_date": "2021-07-29T10:37:03.919Z",
                "created_by": "IBMid-1234567ABC",
                "created_at": "2017-02-15T02:30:32.000Z",
                "modified_by": "IBMid-1234567ABC",
                "modified_at": "2017-02-15T02:30:32.000Z",
                "revision": "0",
                "name": "string",
                "state": "PUBLISHED",
                "tags": [],
                "steward_ids": [],
                "workflow_state": "string",
                "read_only": false,
                "remove_start_date": false,
                "remove_end_date": false
              },
              "entity": {
                "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
                "target_global_id": "867907bd-4c80-458d-9e75-c5683e013533_6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
                "target_parent_category_id": "e39ada11-8338-3704-90e3-681a71e7c839",
                "target_parent_category_name": "parent_category_name_example",
                "target_name": "name_example",
                "target_effective_start_date": "2022-02-14T13:16:49.355Z",
                "target_effective_end_date": "2022-02-15T14:16:49.355Z",
                "source_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
                "source_global_id": "867907bd-4c80-458d-9e75-c5683e013533_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
                "source_type": "reference_data,reference_data_value, etc",
                "target_type": "glossary_term, reference_data, category, etc",
                "description": "string",
                "relationship_type": "related, value_to_term, etc",
                "reference_copy": false
              }
            }
          ]
        },
        "parent_category": {
          "offset": 90,
          "last": {
            "href": "string",
            "offset": 270
          },
          "prev": {
            "href": "string",
            "offset": 60
          },
          "set_uri": true,
          "limit": 30,
          "count": 300,
          "first": {
            "href": "string",
            "offset": 0
          },
          "next": {
            "href": "string",
            "offset": 120
          },
          "resources": [
            {
              "metadata": {
                "artifact_type": "glossary_term",
                "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
                "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
                "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
                "source_repository_name": "string",
                "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
                "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
                "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
                "effective_start_date": "2021-07-26T12:37:03.919Z",
                "effective_end_date": "2021-07-29T10:37:03.919Z",
                "created_by": "IBMid-1234567ABC",
                "created_at": "2017-02-15T02:30:32.000Z",
                "modified_by": "IBMid-1234567ABC",
                "modified_at": "2017-02-15T02:30:32.000Z",
                "revision": "0",
                "name": "string",
                "state": "PUBLISHED",
                "tags": [],
                "steward_ids": [],
                "workflow_state": "string",
                "read_only": false,
                "remove_start_date": false,
                "remove_end_date": false
              },
              "entity": {
                "parent_id": "303ed1d2-0885-473e-9050-40f9223549d5",
                "parent_global_id": "TEMPLATE_303ed1d2-0885-473e-9050-40f9223549d5",
                "parent_name": "name_example",
                "parent_href": "/v3/categories/303ed1d2-0885-473e-9050-40f9223549d5",
                "parent_enabled": true,
                "child_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
                "child_global_id": "TEMPLATE_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
                "child_category_id": "303ed1d2-0885-473e-9050-40f9223549d5",
                "child_name": "rds_name1",
                "child_href": "/v3/reference_data/0d6412d5-fce8-4bb7-90c9-891bc3de5c4b/versions?status=ACTIVE",
                "relationship_type": "parent_category",
                "source_type": "reference_data",
                "target_type": "category",
                "description": "parent example",
                "reference_copy": false
              }
            }
          ]
        },
        "categories": {
          "offset": 90,
          "last": {
            "href": "string",
            "offset": 270
          },
          "prev": {
            "href": "string",
            "offset": 60
          },
          "set_uri": true,
          "limit": 30,
          "count": 300,
          "first": {
            "href": "string",
            "offset": 0
          },
          "next": {
            "href": "string",
            "offset": 120
          },
          "resources": [
            {
              "metadata": {
                "artifact_type": "glossary_term",
                "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
                "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
                "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
                "source_repository_name": "string",
                "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
                "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
                "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
                "effective_start_date": "2021-07-26T12:37:03.919Z",
                "effective_end_date": "2021-07-29T10:37:03.919Z",
                "created_by": "IBMid-1234567ABC",
                "created_at": "2017-02-15T02:30:32.000Z",
                "modified_by": "IBMid-1234567ABC",
                "modified_at": "2017-02-15T02:30:32.000Z",
                "revision": "0",
                "name": "string",
                "state": "PUBLISHED",
                "tags": [],
                "steward_ids": [],
                "workflow_state": "string",
                "read_only": false,
                "remove_start_date": false,
                "remove_end_date": false
              },
              "entity": {
                "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
                "target_global_id": "867907bd-4c80-458d-9e75-c5683e013533_6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
                "target_parent_category_id": "e39ada11-8338-3704-90e3-681a71e7c839",
                "target_parent_category_name": "parent_category_name_example",
                "target_name": "name_example",
                "target_effective_start_date": "2022-02-14T13:16:49.355Z",
                "target_effective_end_date": "2022-02-15T14:16:49.355Z",
                "source_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
                "source_global_id": "867907bd-4c80-458d-9e75-c5683e013533_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
                "source_type": "reference_data,reference_data_value, etc",
                "target_type": "glossary_term, reference_data, category, etc",
                "description": "string",
                "relationship_type": "related, value_to_term, etc",
                "reference_copy": false
              }
            }
          ]
        },
        "parent": {
          "offset": 90,
          "last": {
            "href": "string",
            "offset": 270
          },
          "prev": {
            "href": "string",
            "offset": 60
          },
          "set_uri": true,
          "limit": 30,
          "count": 300,
          "first": {
            "href": "string",
            "offset": 0
          },
          "next": {
            "href": "string",
            "offset": 120
          },
          "resources": [
            {
              "metadata": {
                "artifact_type": "glossary_term",
                "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
                "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
                "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
                "source_repository_name": "string",
                "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
                "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
                "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
                "effective_start_date": "2021-07-26T12:37:03.919Z",
                "effective_end_date": "2021-07-29T10:37:03.919Z",
                "created_by": "IBMid-1234567ABC",
                "created_at": "2017-02-15T02:30:32.000Z",
                "modified_by": "IBMid-1234567ABC",
                "modified_at": "2017-02-15T02:30:32.000Z",
                "revision": "0",
                "name": "string",
                "state": "PUBLISHED",
                "tags": [],
                "steward_ids": [],
                "workflow_state": "string",
                "read_only": false,
                "remove_start_date": false,
                "remove_end_date": false
              },
              "entity": {
                "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
                "target_global_id": "867907bd-4c80-458d-9e75-c5683e013533_6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
                "target_parent_category_id": "e39ada11-8338-3704-90e3-681a71e7c839",
                "target_parent_category_name": "parent_category_name_example",
                "target_name": "name_example",
                "target_effective_start_date": "2022-02-14T13:16:49.355Z",
                "target_effective_end_date": "2022-02-15T14:16:49.355Z",
                "source_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
                "source_global_id": "867907bd-4c80-458d-9e75-c5683e013533_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
                "source_type": "reference_data,reference_data_value, etc",
                "target_type": "glossary_term, reference_data, category, etc",
                "description": "string",
                "relationship_type": "related, value_to_term, etc",
                "reference_copy": false
              }
            }
          ]
        },
        "child": {
          "offset": 90,
          "last": {
            "href": "string",
            "offset": 270
          },
          "prev": {
            "href": "string",
            "offset": 60
          },
          "set_uri": true,
          "limit": 30,
          "count": 300,
          "first": {
            "href": "string",
            "offset": 0
          },
          "next": {
            "href": "string",
            "offset": 120
          },
          "resources": [
            {
              "metadata": {
                "artifact_type": "glossary_term",
                "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
                "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
                "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
                "source_repository_name": "string",
                "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
                "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
                "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
                "effective_start_date": "2021-07-26T12:37:03.919Z",
                "effective_end_date": "2021-07-29T10:37:03.919Z",
                "created_by": "IBMid-1234567ABC",
                "created_at": "2017-02-15T02:30:32.000Z",
                "modified_by": "IBMid-1234567ABC",
                "modified_at": "2017-02-15T02:30:32.000Z",
                "revision": "0",
                "name": "string",
                "state": "PUBLISHED",
                "tags": [],
                "steward_ids": [],
                "workflow_state": "string",
                "read_only": false,
                "remove_start_date": false,
                "remove_end_date": false
              },
              "entity": {
                "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
                "target_global_id": "867907bd-4c80-458d-9e75-c5683e013533_6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
                "target_parent_category_id": "e39ada11-8338-3704-90e3-681a71e7c839",
                "target_parent_category_name": "parent_category_name_example",
                "target_name": "name_example",
                "target_effective_start_date": "2022-02-14T13:16:49.355Z",
                "target_effective_end_date": "2022-02-15T14:16:49.355Z",
                "source_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
                "source_global_id": "867907bd-4c80-458d-9e75-c5683e013533_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
                "source_type": "reference_data,reference_data_value, etc",
                "target_type": "glossary_term, reference_data, category, etc",
                "description": "string",
                "relationship_type": "related, value_to_term, etc",
                "reference_copy": false
              }
            }
          ]
        },
        "rds_values": {
          "offset": 90,
          "last": {
            "href": "string",
            "offset": 270
          },
          "prev": {
            "href": "string",
            "offset": 60
          },
          "set_uri": true,
          "limit": 30,
          "count": 300,
          "first": {
            "href": "string",
            "offset": 0
          },
          "next": {
            "href": "string",
            "offset": 120
          },
          "resources": [
            {
              "code": "CODE_EXAMPLE",
              "value": "string",
              "description": "This is an RDS Value example",
              "revision": "0"
            }
          ]
        },
        "custom_columns": [
          {
            "id": "a98edac9-4953-431e-9f8e-d9f1507454d8",
            "revision": "0",
            "name": "Custom_Column_Name",
            "description": "This is a Custom Column",
            "type": "TEXT",
            "max_character_count": 2000,
            "mandatory": true,
            "composite_key": true,
            "owner_rds_id": "9ec35f22-db7f-56c9-8a05-25983e485adc",
            "validator_rds_id": "d58b8247-8f94-4c1f-8ea1-48f1cb55122a",
            "hidden": false
          }
        ],
        "rds_values_total_counts": 1,
        "type, rule_type, etc": "TEXT, Governance, etc",
        "long_description": "string",
        "is_removed_long_description": false,
        "state": "PUBLISHED",
        "default_locale_id": "en-US",
        "reference_copy": false,
        "custom_attributes": []
      }
    }

Update a reference data set with given artifact id and version id

Update a reference data set with given artifact id and version id

PATCH /v3/reference_data/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

The reference data set to be updated.
Fields omitted will be unchanged. For multi-valued attributes, like values and relationships, use the respective endpoints.

Response

Response Reference Data Set

Status Code

  • The reference data set has been updated successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The reference data set with given {guid} does not exist.

  • The reference data set was modified by another user.

  • Internal Server Error

Example responses
  • {
      "metadata": {
        "artifact_type": "glossary_term",
        "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
        "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
        "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
        "source_repository_name": "string",
        "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
        "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
        "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
        "effective_start_date": "2021-07-26T12:37:03.919Z",
        "effective_end_date": "2021-07-29T10:37:03.919Z",
        "created_by": "IBMid-1234567ABC",
        "created_at": "2017-02-15T02:30:32.000Z",
        "modified_by": "IBMid-1234567ABC",
        "modified_at": "2017-02-15T02:30:32.000Z",
        "revision": "0",
        "name": "string",
        "state": "PUBLISHED",
        "tags": [],
        "steward_ids": [],
        "workflow_state": "string",
        "read_only": false,
        "remove_start_date": false,
        "remove_end_date": false
      },
      "entity": {
        "rds_values": {
          "offset": 90,
          "last": {
            "href": "string",
            "offset": 270
          },
          "prev": {
            "href": "string",
            "offset": 60
          },
          "set_uri": true,
          "limit": 30,
          "count": 300,
          "first": {
            "href": "string",
            "offset": 0
          },
          "next": {
            "href": "string",
            "offset": 120
          },
          "resources": [
            {
              "code": "CODE_EXAMPLE",
              "value": "string",
              "description": "This is an RDS Value example",
              "revision": "0"
            }
          ]
        },
        "type, rule_type, etc": "TEXT, Governance, etc",
        "long_description": "string",
        "is_removed_long_description": false,
        "state": "PUBLISHED",
        "default_locale_id": "en-US",
        "reference_copy": false,
        "custom_attributes": []
      }
    }

Delete Custom Column definitions with specified column_ids associated with a reference data set

Delete Custom Column definitions with specified column_ids associated with a reference data set

DELETE /v3/reference_data/{artifact_id}/versions/{version_id}/custom_columns

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify ACTIVE (it represents a current active published version) or PUBLISHED (it represents a published version that is active now or will be active in the future).

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

The list of column_ids to be removed.

Response

Response Reference Data Set

Status Code

  • The Custom Column definition has been deleted successfully with specified column_id.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The Custom Column definition with given {column_id} does not exist.

  • The Custom Column was modified by another user.

  • Internal Server Error

Example responses
  • {
      "metadata": {
        "artifact_type": "glossary_term",
        "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
        "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
        "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
        "source_repository_name": "string",
        "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
        "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
        "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
        "effective_start_date": "2021-07-26T12:37:03.919Z",
        "effective_end_date": "2021-07-29T10:37:03.919Z",
        "created_by": "IBMid-1234567ABC",
        "created_at": "2017-02-15T02:30:32.000Z",
        "modified_by": "IBMid-1234567ABC",
        "modified_at": "2017-02-15T02:30:32.000Z",
        "revision": "0",
        "name": "string",
        "state": "PUBLISHED",
        "tags": [],
        "steward_ids": [],
        "workflow_state": "string",
        "read_only": false,
        "remove_start_date": false,
        "remove_end_date": false
      },
      "entity": {
        "rds_values": {
          "offset": 90,
          "last": {
            "href": "string",
            "offset": 270
          },
          "prev": {
            "href": "string",
            "offset": 60
          },
          "set_uri": true,
          "limit": 30,
          "count": 300,
          "first": {
            "href": "string",
            "offset": 0
          },
          "next": {
            "href": "string",
            "offset": 120
          },
          "resources": [
            {
              "code": "CODE_EXAMPLE",
              "value": "string",
              "description": "This is an RDS Value example",
              "revision": "0"
            }
          ]
        },
        "custom_columns": [
          {
            "id": "a98edac9-4953-431e-9f8e-d9f1507454d8",
            "revision": "0",
            "name": "Custom_Column_Name",
            "description": "This is a Custom Column",
            "type": "TEXT",
            "max_character_count": 2000,
            "mandatory": true,
            "composite_key": true,
            "owner_rds_id": "9ec35f22-db7f-56c9-8a05-25983e485adc",
            "validator_rds_id": "d58b8247-8f94-4c1f-8ea1-48f1cb55122a",
            "hidden": false
          }
        ],
        "type, rule_type, etc": "TEXT, Governance, etc",
        "long_description": "string",
        "is_removed_long_description": false,
        "state": "PUBLISHED",
        "default_locale_id": "en-US",
        "reference_copy": false,
        "custom_attributes": []
      }
    }

Associate Custom Column definitions to a reference data set

Associate Custom Column definitions to a reference data set

PUT /v3/reference_data/{artifact_id}/versions/{version_id}/custom_columns

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify ACTIVE (it represents a current active published version) or PUBLISHED (it represents a published version that is active now or will be active in the future).

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Custom Column name/description to be updated.

Response

Response Reference Data Set

Status Code

  • The Custom Column definition has been updated successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The Custom Column definition with given {column_id} does not exist.

  • The Custom Column was modified by another user.

  • Internal Server Error

Example responses
  • {
      "metadata": {
        "artifact_type": "glossary_term",
        "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
        "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
        "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
        "source_repository_name": "string",
        "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
        "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
        "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
        "effective_start_date": "2021-07-26T12:37:03.919Z",
        "effective_end_date": "2021-07-29T10:37:03.919Z",
        "created_by": "IBMid-1234567ABC",
        "created_at": "2017-02-15T02:30:32.000Z",
        "modified_by": "IBMid-1234567ABC",
        "modified_at": "2017-02-15T02:30:32.000Z",
        "revision": "0",
        "name": "string",
        "state": "PUBLISHED",
        "tags": [],
        "steward_ids": [],
        "workflow_state": "string",
        "read_only": false,
        "remove_start_date": false,
        "remove_end_date": false
      },
      "entity": {
        "rds_values": {
          "offset": 90,
          "last": {
            "href": "string",
            "offset": 270
          },
          "prev": {
            "href": "string",
            "offset": 60
          },
          "set_uri": true,
          "limit": 30,
          "count": 300,
          "first": {
            "href": "string",
            "offset": 0
          },
          "next": {
            "href": "string",
            "offset": 120
          },
          "resources": [
            {
              "code": "CODE_EXAMPLE",
              "value": "string",
              "description": "This is an RDS Value example",
              "revision": "0"
            }
          ]
        },
        "custom_columns": [
          {
            "id": "a98edac9-4953-431e-9f8e-d9f1507454d8",
            "revision": "0",
            "name": "Custom_Column_Name",
            "description": "This is a Custom Column",
            "type": "TEXT",
            "max_character_count": 2000,
            "mandatory": true,
            "composite_key": true,
            "owner_rds_id": "9ec35f22-db7f-56c9-8a05-25983e485adc",
            "validator_rds_id": "d58b8247-8f94-4c1f-8ea1-48f1cb55122a",
            "hidden": false
          }
        ],
        "type, rule_type, etc": "TEXT, Governance, etc",
        "long_description": "string",
        "is_removed_long_description": false,
        "state": "PUBLISHED",
        "default_locale_id": "en-US",
        "reference_copy": false,
        "custom_attributes": []
      }
    }

List the relationships of the given type for the specified reference data set

If the result set is larger than the limit parameter, it returns the first limit number of relationships.
To retrieve the next set of relationships, call the method again by using the URI in the property next returned by this method.

GET /v3/reference_data/{artifact_id}/versions/{version_id}/relationships

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Comma-separated list of relationship types.

    Available types:
    parent_category
    categories
    terms
    classifications
    data_classes
    rules
    child
    parent
    custom
    all

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

  • Custom relationship definition Id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

  • Is custom relationship reversed?

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • Retrieves target parent category name of the relationship entity.

Response

Response that includes relationships to a managed object, like business term, data class, classification

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Internal Server Error

Example responses
  • {
      "terms": {
        "offset": 90,
        "last": {
          "href": "string",
          "offset": 270
        },
        "prev": {
          "href": "string",
          "offset": 60
        },
        "set_uri": true,
        "limit": 30,
        "count": 300,
        "first": {
          "href": "string",
          "offset": 0
        },
        "next": {
          "href": "string",
          "offset": 120
        },
        "resources": [
          {
            "metadata": {
              "artifact_type": "glossary_term",
              "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
              "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
              "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
              "source_repository_name": "string",
              "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
              "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
              "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
              "effective_start_date": "2021-07-26T12:37:03.919Z",
              "effective_end_date": "2021-07-29T10:37:03.919Z",
              "created_by": "IBMid-1234567ABC",
              "created_at": "2017-02-15T02:30:32.000Z",
              "modified_by": "IBMid-1234567ABC",
              "modified_at": "2017-02-15T02:30:32.000Z",
              "revision": "0",
              "name": "string",
              "state": "PUBLISHED",
              "tags": [],
              "steward_ids": [],
              "workflow_state": "string",
              "read_only": false,
              "remove_start_date": false,
              "remove_end_date": false
            },
            "entity": {
              "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "target_global_id": "867907bd-4c80-458d-9e75-c5683e013533_6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "target_parent_category_id": "e39ada11-8338-3704-90e3-681a71e7c839",
              "target_parent_category_name": "parent_category_name_example",
              "target_name": "name_example",
              "target_effective_start_date": "2022-02-14T13:16:49.355Z",
              "target_effective_end_date": "2022-02-15T14:16:49.355Z",
              "source_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "source_global_id": "867907bd-4c80-458d-9e75-c5683e013533_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "source_type": "reference_data,reference_data_value, etc",
              "target_type": "glossary_term, reference_data, category, etc",
              "description": "string",
              "relationship_type": "related, value_to_term, etc",
              "reference_copy": false
            }
          }
        ]
      },
      "classifications": {
        "offset": 90,
        "last": {
          "href": "string",
          "offset": 270
        },
        "prev": {
          "href": "string",
          "offset": 60
        },
        "set_uri": true,
        "limit": 30,
        "count": 300,
        "first": {
          "href": "string",
          "offset": 0
        },
        "next": {
          "href": "string",
          "offset": 120
        },
        "resources": [
          {
            "metadata": {
              "artifact_type": "glossary_term",
              "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
              "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
              "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
              "source_repository_name": "string",
              "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
              "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
              "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
              "effective_start_date": "2021-07-26T12:37:03.919Z",
              "effective_end_date": "2021-07-29T10:37:03.919Z",
              "created_by": "IBMid-1234567ABC",
              "created_at": "2017-02-15T02:30:32.000Z",
              "modified_by": "IBMid-1234567ABC",
              "modified_at": "2017-02-15T02:30:32.000Z",
              "revision": "0",
              "name": "string",
              "state": "PUBLISHED",
              "tags": [],
              "steward_ids": [],
              "workflow_state": "string",
              "read_only": false,
              "remove_start_date": false,
              "remove_end_date": false
            },
            "entity": {
              "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "target_global_id": "867907bd-4c80-458d-9e75-c5683e013533_6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "target_parent_category_id": "e39ada11-8338-3704-90e3-681a71e7c839",
              "target_parent_category_name": "parent_category_name_example",
              "target_name": "name_example",
              "target_effective_start_date": "2022-02-14T13:16:49.355Z",
              "target_effective_end_date": "2022-02-15T14:16:49.355Z",
              "source_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "source_global_id": "867907bd-4c80-458d-9e75-c5683e013533_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "source_type": "reference_data,reference_data_value, etc",
              "target_type": "glossary_term, reference_data, category, etc",
              "description": "string",
              "relationship_type": "related, value_to_term, etc",
              "reference_copy": false
            }
          }
        ]
      },
      "parent_category": {
        "offset": 90,
        "last": {
          "href": "string",
          "offset": 270
        },
        "prev": {
          "href": "string",
          "offset": 60
        },
        "set_uri": true,
        "limit": 30,
        "count": 300,
        "first": {
          "href": "string",
          "offset": 0
        },
        "next": {
          "href": "string",
          "offset": 120
        },
        "resources": [
          {
            "metadata": {
              "artifact_type": "glossary_term",
              "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
              "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
              "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
              "source_repository_name": "string",
              "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
              "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
              "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
              "effective_start_date": "2021-07-26T12:37:03.919Z",
              "effective_end_date": "2021-07-29T10:37:03.919Z",
              "created_by": "IBMid-1234567ABC",
              "created_at": "2017-02-15T02:30:32.000Z",
              "modified_by": "IBMid-1234567ABC",
              "modified_at": "2017-02-15T02:30:32.000Z",
              "revision": "0",
              "name": "string",
              "state": "PUBLISHED",
              "tags": [],
              "steward_ids": [],
              "workflow_state": "string",
              "read_only": false,
              "remove_start_date": false,
              "remove_end_date": false
            },
            "entity": {
              "parent_id": "303ed1d2-0885-473e-9050-40f9223549d5",
              "parent_global_id": "TEMPLATE_303ed1d2-0885-473e-9050-40f9223549d5",
              "parent_name": "name_example",
              "parent_href": "/v3/categories/303ed1d2-0885-473e-9050-40f9223549d5",
              "parent_enabled": true,
              "child_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "child_global_id": "TEMPLATE_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "child_category_id": "303ed1d2-0885-473e-9050-40f9223549d5",
              "child_name": "rds_name1",
              "child_href": "/v3/reference_data/0d6412d5-fce8-4bb7-90c9-891bc3de5c4b/versions?status=ACTIVE",
              "relationship_type": "parent_category",
              "source_type": "reference_data",
              "target_type": "category",
              "description": "parent example",
              "reference_copy": false
            }
          }
        ]
      },
      "categories": {
        "offset": 90,
        "last": {
          "href": "string",
          "offset": 270
        },
        "prev": {
          "href": "string",
          "offset": 60
        },
        "set_uri": true,
        "limit": 30,
        "count": 300,
        "first": {
          "href": "string",
          "offset": 0
        },
        "next": {
          "href": "string",
          "offset": 120
        },
        "resources": [
          {
            "metadata": {
              "artifact_type": "glossary_term",
              "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
              "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
              "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
              "source_repository_name": "string",
              "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
              "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
              "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
              "effective_start_date": "2021-07-26T12:37:03.919Z",
              "effective_end_date": "2021-07-29T10:37:03.919Z",
              "created_by": "IBMid-1234567ABC",
              "created_at": "2017-02-15T02:30:32.000Z",
              "modified_by": "IBMid-1234567ABC",
              "modified_at": "2017-02-15T02:30:32.000Z",
              "revision": "0",
              "name": "string",
              "state": "PUBLISHED",
              "tags": [],
              "steward_ids": [],
              "workflow_state": "string",
              "read_only": false,
              "remove_start_date": false,
              "remove_end_date": false
            },
            "entity": {
              "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "target_global_id": "867907bd-4c80-458d-9e75-c5683e013533_6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "target_parent_category_id": "e39ada11-8338-3704-90e3-681a71e7c839",
              "target_parent_category_name": "parent_category_name_example",
              "target_name": "name_example",
              "target_effective_start_date": "2022-02-14T13:16:49.355Z",
              "target_effective_end_date": "2022-02-15T14:16:49.355Z",
              "source_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "source_global_id": "867907bd-4c80-458d-9e75-c5683e013533_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "source_type": "reference_data,reference_data_value, etc",
              "target_type": "glossary_term, reference_data, category, etc",
              "description": "string",
              "relationship_type": "related, value_to_term, etc",
              "reference_copy": false
            }
          }
        ]
      },
      "parent": {
        "offset": 90,
        "last": {
          "href": "string",
          "offset": 270
        },
        "prev": {
          "href": "string",
          "offset": 60
        },
        "set_uri": true,
        "limit": 30,
        "count": 300,
        "first": {
          "href": "string",
          "offset": 0
        },
        "next": {
          "href": "string",
          "offset": 120
        },
        "resources": [
          {
            "metadata": {
              "artifact_type": "glossary_term",
              "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
              "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
              "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
              "source_repository_name": "string",
              "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
              "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
              "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
              "effective_start_date": "2021-07-26T12:37:03.919Z",
              "effective_end_date": "2021-07-29T10:37:03.919Z",
              "created_by": "IBMid-1234567ABC",
              "created_at": "2017-02-15T02:30:32.000Z",
              "modified_by": "IBMid-1234567ABC",
              "modified_at": "2017-02-15T02:30:32.000Z",
              "revision": "0",
              "name": "string",
              "state": "PUBLISHED",
              "tags": [],
              "steward_ids": [],
              "workflow_state": "string",
              "read_only": false,
              "remove_start_date": false,
              "remove_end_date": false
            },
            "entity": {
              "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "target_global_id": "867907bd-4c80-458d-9e75-c5683e013533_6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "target_parent_category_id": "e39ada11-8338-3704-90e3-681a71e7c839",
              "target_parent_category_name": "parent_category_name_example",
              "target_name": "name_example",
              "target_effective_start_date": "2022-02-14T13:16:49.355Z",
              "target_effective_end_date": "2022-02-15T14:16:49.355Z",
              "source_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "source_global_id": "867907bd-4c80-458d-9e75-c5683e013533_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "source_type": "reference_data,reference_data_value, etc",
              "target_type": "glossary_term, reference_data, category, etc",
              "description": "string",
              "relationship_type": "related, value_to_term, etc",
              "reference_copy": false
            }
          }
        ]
      },
      "child": {
        "offset": 90,
        "last": {
          "href": "string",
          "offset": 270
        },
        "prev": {
          "href": "string",
          "offset": 60
        },
        "set_uri": true,
        "limit": 30,
        "count": 300,
        "first": {
          "href": "string",
          "offset": 0
        },
        "next": {
          "href": "string",
          "offset": 120
        },
        "resources": [
          {
            "metadata": {
              "artifact_type": "glossary_term",
              "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
              "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
              "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
              "source_repository_name": "string",
              "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
              "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
              "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
              "effective_start_date": "2021-07-26T12:37:03.919Z",
              "effective_end_date": "2021-07-29T10:37:03.919Z",
              "created_by": "IBMid-1234567ABC",
              "created_at": "2017-02-15T02:30:32.000Z",
              "modified_by": "IBMid-1234567ABC",
              "modified_at": "2017-02-15T02:30:32.000Z",
              "revision": "0",
              "name": "string",
              "state": "PUBLISHED",
              "tags": [],
              "steward_ids": [],
              "workflow_state": "string",
              "read_only": false,
              "remove_start_date": false,
              "remove_end_date": false
            },
            "entity": {
              "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "target_global_id": "867907bd-4c80-458d-9e75-c5683e013533_6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "target_parent_category_id": "e39ada11-8338-3704-90e3-681a71e7c839",
              "target_parent_category_name": "parent_category_name_example",
              "target_name": "name_example",
              "target_effective_start_date": "2022-02-14T13:16:49.355Z",
              "target_effective_end_date": "2022-02-15T14:16:49.355Z",
              "source_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "source_global_id": "867907bd-4c80-458d-9e75-c5683e013533_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "source_type": "reference_data,reference_data_value, etc",
              "target_type": "glossary_term, reference_data, category, etc",
              "description": "string",
              "relationship_type": "related, value_to_term, etc",
              "reference_copy": false
            }
          }
        ]
      }
    }

Associate Reference data set identified by artifact_id and version_id with other governance artifacts

Associate Reference data set identified by artifact_id and version_id with other governance artifacts

POST /v3/reference_data/{artifact_id}/versions/{version_id}/relationships

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

list of relationships that need to created for reference data set

Response

Create relationship response

Status Code

  • Relationships created for reference data set

  • Bad Request

  • Unauthorized

  • Relationships conflicting for reference data set

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "terms": [
            {
              "relationship_id": "fdbf64ed-8d72-43b8-8752-8b765db51e01",
              "target_id": "4ce5b4d5-611e-4607-8e18-e2a7d9abbfe7"
            }
          ],
          "classifications": [],
          "categories": [
            {
              "relationship_id": "eca11f9e-ff14-4692-ad93-35eb364f9f23",
              "target_id": "166a5f6b-3f42-4706-b868-92f622d5094a"
            }
          ],
          "child": [
            {
              "relationship_id": "382c8bfa-5c2f-4daf-ac6e-b625119b1c6f",
              "target_id": "eec1c2a4-8bc1-40a6-a557-49af6ab2675d"
            }
          ],
          "parent": [],
          "parent_category": {
            "relationship_id": "18d9732c-f1b9-4325-bbf6-7d318e093263",
            "target_id": "4cdd7c5f-bc32-4d94-bb75-0344a6f93052"
          },
          "href": "string",
          "artifact_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
          "version_id": "cf6243fb-7d5c-4aba-9f50-887919bf08be",
          "workflow_id": "52f149f8-c15c-40a9-a7ec-7e1d2635a1a1",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
          "entity_type": "reference_data"
        }
      ]
    }

Delete the relationship associated to reference data set with specified artifact_id and version_id

Delete the relationship associated to reference data set with specified artifact_id and version_id

DELETE /v3/reference_data/{artifact_id}/versions/{version_id}/relationships/{relationship_id}

Request

Path Parameters

  • The guid of the reference data set from which relationship is to be deleted.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • The artifact ID of the relationship to be deleted.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: 990e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • Deleted the relationship

  • Bad Request

  • Unauthorized

  • relationship not found

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "href": "v3/reference_data/0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6/versions/4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

Delete the reference data value identified by code in the Reference Data Set with specified artifact_id and version_id

Delete the reference data value identified by code in the Reference Data Set with specified artifact_id and version_id. If the reference data set is published then a workflow will be started with a draft created from which the value will be deleted. If the artifact is a draft copy then the value from the draft copy will be removed.

DELETE /v3/reference_data/{artifact_id}/versions/{version_id}/values

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • specify parent/root/code

    Allowable values: [immediate_parent,root,code]

  • specify to_code

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • The reference data value has been deleted successfully.

  • Bad Request

  • Unauthorized

  • The reference data value with given {guid} and {code} does not exist.

  • The reference data value is currently used in catalog assets, catalog asset columns, data governance rules or data governance policies.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "href": "v3/reference_data/0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6/versions/4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

Exports values of a specified reference data set with specified artifact_id and version_id to a csv file along with their term associations and value mappings

Exports values of a specified reference data set with specified artifact_id and version_id to a csv file along with their term associations and value mappings.To verify a successful download, user need to cross verify the csv file by comparing number of rows with the response header "total-values-count" which contains number of values present in the Reference DataSet.

GET /v3/reference_data/{artifact_id}/versions/{version_id}/values

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Specify if only RDS code needs to be exported.

  • Include associated terms to a reference data value.

  • Include column mappings to a reference data value.

    Default: true

Response

Status Code

  • The reference data set has been retrieved successfully.

  • Unauthorized

  • The reference data set with given {guid} does not exist.

  • Internal Server Error

Example responses

Update the reference data values identified by code in the Reference Data Set with specified artifact_id and version_id

Update the reference data values identified by code in the Reference Data Set with specified artifact_id and version_id

PATCH /v3/reference_data/{artifact_id}/versions/{version_id}/values

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

Reference data values to be updated.
Note: Precision will be lost if long value has more than 15-16 digits as JSON parser will map to double type regardless of whether it is used for integer, long or floating-point numbers. To Preserve all digits pass the value as a string.

Response

Create RDV response

Status Code

  • The reference data set has been updated successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The reference data set with given {guid} does not exist.

  • The reference data set was modified by another user.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "rds_values": [
            {
              "code": "CODE_EXAMPLE",
              "value": "string",
              "description": "This is an RDS Value example",
              "revision": "0"
            }
          ],
          "href": "string",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

Add reference data values to the specified reference data set

Add reference data values to the specified reference data set

PUT /v3/reference_data/{artifact_id}/versions/{version_id}/values

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

Reference Data Values List

Response

Create RDV response

Status Code

  • The reference data value(s) have been added successfully.

  • Bad Request

  • Unauthorized

  • Reference data value with given code already exists.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "rds_values": [
            {
              "code": "CODE_EXAMPLE",
              "value": "string",
              "description": "This is an RDS Value example",
              "revision": "0"
            }
          ],
          "href": "string",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

Retrieves all reference data value codes for given set version_id

This method will retrieve all reference data value codes for specific reference data set

GET /v3/reference_data/{artifact_id}/versions/{version_id}/values/codes

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify ACTIVE (it represents a current active published version) or PUBLISHED (it represents a published version that is active now or will be active in the future).

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • The maximum number of reference data codes to return - must be at least 1 and cannot exceed 25000. The default value is 1000.

    Possible values: 1 ≤ value ≤ 25000

    Default: 1000

  • Last fetched CODE.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

Response

Status Code

  • The reference data value codes have been retrieved successfully.

  • Unauthorized

  • The reference data set with given {versionId} does not exist.

  • Internal Server Error

Example responses
  • { 
      "set_uri": false,
      "limit": 100,
      "count": 2,
      "first": {
        "href": "string",
      },
      "next": {
        "href": "string",
        "offset": Argentina
      }, 
      "resources": [ 
        "Brasil", "Chile" 
      ] 
    }

Import reference data values from csv file to the reference data set with specified artifact_id and version_id

Import reference data values from csv file to the reference data set with specified artifact_id and version_id
To check the current status of the import please use the endpoint GET /v4/reference_data_sets/{artifact_id}/versions/{version_id}/value_imports/{import_id}.

PUT /v3/reference_data/{artifact_id}/versions/{version_id}/values/import

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Column name(number if is_first_row_header is false) of the code field in CSV file.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • Does the csv file have header as first record

    Default: true

  • Column name(number if is_first_row_header is false) of the value field in CSV file.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • Column name(number if is_first_row_header is false) of the description field in CSV file.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • Column name(number if is_first_row_header is false) of the parent field in CSV file.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • Associate terms to a reference data value.

  • Import value mappings only to a reference data value.

  • Import parent relationship only to a reference data value.

  • Column name(number if is_first_row_header is false) of the related terms field in CSV file.
    If column name not provided, default column name related terms or related_terms either case will pick from the CSV file

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

  • IGNORE/OVERWRITE/REJECT if a value already exists. default is OVERWRITE

    Allowable values: [OVERWRITE,IGNORE,REJECT]

    Default: OVERWRITE

  • Specify if to trim leading and trailing spaces for code, value & description.

Form Parameters

  • File name

    Possible values: 1 ≤ length ≤ 2147483647

  • Custom columns mappings as json {"custom_columns_map":[{"csv_column_name":"cc-from-csv","custom_column_name":"cc-name"}]}

    Possible values: 1 ≤ length ≤ 2147483647

Response

Create RDS Response

Status Code

  • The reference data values import has been initiated successfully.

  • Bad Request

  • Unauthorized

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "log": {
            "href": "string",
            "import_id": "39719288-2dd7-426e-be8b-f41bde3fbd3c",
            "import_state": "IN_PROGRESS",
            "import_message": "Import in progress",
            "values_count": 100,
            "values_processed": 0
          },
          "href": "string",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

Request cancellation of a ongoing reference data values import process with specified import_id

Request cancellation of a ongoing reference data values import process with specified import_id

DELETE /v3/reference_data/{artifact_id}/versions/{version_id}/values/import/{import_id}

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • The import id for the reference data values import process.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: 83a7a25a-4a51-4053-a6e7-4e374d26fe1a

Response

RDV Import Info Response

Status Code

  • Cancel Request Accepted

  • Bad Request

  • Unauthorized

  • Internal Server Error

Example responses
  • {
      "import_info": {
        "href": "string",
        "import_id": "d3516e0e-3775-498c-ba32-ce8fb0863376",
        "import_state": "SUCCEEDED, CANCELLED, IN_PROGRESS, etc",
        "import_message": "Import Completed, Import Cancelled, Import in progress, etc",
        "values_count": 1000,
        "values_processed": 1000,
        "values_skipped": 0,
        "values_inserted": 1000,
        "rels_values_processed": 1000,
        "rels_processed": 412,
        "rels_inserted": 400,
        "rels_skipped": 2,
        "rels_deleted": 10,
        "started_by": "IBMid-1234567ABC",
        "start_time": "2021-02-18T02:30:32.000Z",
        "warnings_count": 2,
        "warnings": [
          {
            "row": 3,
            "info": [
              "WKCBG3092E: Cannot create a relationship between reference data value with code IT that is associated with reference data set           with id e4256b89-dfc6-4b53-bffa-ee72f4c4a93d and reference data value represented by CAN that is associated with reference data           set with versionId e378b0cb-89cb-4b3b-a9aa-006c914ae427. The latter reference data value does not exist."
            ]
          },
          {
            "row": 4,
            "info": [
              "WKCBG3092E: Cannot create a relationship between reference data value with code AUS that is associated with reference data set           with id e4256b89-dfc6-4b53-bffa-ee72f4c4a93d and reference data value represented by PAK that is associated with reference data           set with versionId e378b0cb-89cb-4b3b-a9aa-006c914ae427. The latter reference data value does not exist."
            ]
          }
        ]
      }
    }

Get current state of reference data values import process with specified import_id

Get current state of reference data values import process with specified import_id

GET /v3/reference_data/{artifact_id}/versions/{version_id}/values/import/{import_id}

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • The import id for the reference data values import process.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: 83a7a25a-4a51-4053-a6e7-4e374d26fe1a

Response

RDV Import Info Response

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Internal Server Error

Example responses
  • {
      "import_info": {
        "href": "string",
        "import_id": "d3516e0e-3775-498c-ba32-ce8fb0863376",
        "import_state": "SUCCEEDED, CANCELLED, IN_PROGRESS, etc",
        "import_message": "Import Completed, Import Cancelled, Import in progress, etc",
        "values_count": 1000,
        "values_processed": 1000,
        "values_skipped": 0,
        "values_inserted": 1000,
        "rels_values_processed": 1000,
        "rels_processed": 412,
        "rels_inserted": 400,
        "rels_skipped": 2,
        "rels_deleted": 10,
        "started_by": "IBMid-1234567ABC",
        "start_time": "2021-02-18T02:30:32.000Z",
        "warnings_count": 2,
        "warnings": [
          {
            "row": 3,
            "info": [
              "WKCBG3092E: Cannot create a relationship between reference data value with code IT that is associated with reference data set           with id e4256b89-dfc6-4b53-bffa-ee72f4c4a93d and reference data value represented by CAN that is associated with reference data           set with versionId e378b0cb-89cb-4b3b-a9aa-006c914ae427. The latter reference data value does not exist."
            ]
          },
          {
            "row": 4,
            "info": [
              "WKCBG3092E: Cannot create a relationship between reference data value with code AUS that is associated with reference data set           with id e4256b89-dfc6-4b53-bffa-ee72f4c4a93d and reference data value represented by PAK that is associated with reference data           set with versionId e378b0cb-89cb-4b3b-a9aa-006c914ae427. The latter reference data value does not exist."
            ]
          }
        ]
      }
    }

Restart reference data values import process which was previously cancelled

Restart reference data values import process which was previously cancelled

POST /v3/reference_data/{artifact_id}/versions/{version_id}/values/import/{import_id}

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify ACTIVE (it represents a current active published version) or PUBLISHED (it represents a published version that is active now or will be active in the future).

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • Import id to for the specific import action

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: 990e33f5-3108-4d45-a530-0307458362d4

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • Import of values for given import Id is started

  • Bad Request

  • Unauthorized

  • Reference data set with given name already exists.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "href": "v3/reference_data/0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6/versions/4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

Delete Custom Column values associated with a reference data value

Delete Custom Column values associated with a reference data value

DELETE /v3/reference_data/{artifact_id}/versions/{version_id}/values/{code}/custom_columns

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify ACTIVE (it represents a current active published version) or PUBLISHED (it represents a published version that is active now or will be active in the future).

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • Code of reference data value

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

The list of column_ids to be removed.

Response

Create RDV response

Status Code

  • The Custom Column definition has been deleted successfully with specified column_id.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The Custom Column definition with given {column_id} does not exist.

  • The Custom Column was modified by another user.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "rds_values": [
            {
              "code": "CODE_EXAMPLE",
              "value": "string",
              "description": "This is an RDS Value example",
              "revision": "0"
            }
          ],
          "href": "string",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

List Custom Column values associated with a reference data value

If the result set is larger than the limit parameter, it returns the first limit number of Custom Column values.
To retrieve the next set of Custom Column values, call the method again by using the URI in PaginatedRDSCustomColumnsGetResponseList.next returned by this method.

GET /v3/reference_data/{artifact_id}/versions/{version_id}/values/{code}/custom_columns

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify ACTIVE (it represents a current active published version) or PUBLISHED (it represents a published version that is active now or will be active in the future).

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • Code of reference data value

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

Query Parameters

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

Reference Data Value custom column response list

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Internal Server Error

Example responses
  • {
      "revision": "0",
      "offset": 90,
      "last": {
        "href": "string",
        "offset": 270
      },
      "prev": {
        "href": "string",
        "offset": 60
      },
      "set_uri": true,
      "limit": 30,
      "count": 300,
      "first": {
        "href": "string",
        "offset": 0
      },
      "next": {
        "href": "string",
        "offset": 120
      },
      "resources": [
        {
          "metadata": {
            "id": "64ca5e02-5887-4e33-81ef-da48fe34afd4",
            "name": "COLUMN_EXAMPLE_NAME",
            "type": "TEXT"
          },
          "entity": {
            "value": "string"
          }
        }
      ]
    }

Update Custom Column values associated with a reference data value

Update Custom Column values associated with a reference data value

PATCH /v3/reference_data/{artifact_id}/versions/{version_id}/values/{code}/custom_columns

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify ACTIVE (it represents a current active published version) or PUBLISHED (it represents a published version that is active now or will be active in the future).

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • Code of reference data value

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

Custom Column name/description to be updated.

Response

Create RDV response

Status Code

  • The Custom Column definition has been updated successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The Custom Column definition with given {column_id} does not exist.

  • The Custom Column was modified by another user.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "rds_values": [
            {
              "code": "CODE_EXAMPLE",
              "value": "string",
              "description": "This is an RDS Value example",
              "revision": "0"
            }
          ],
          "href": "string",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

List the relationships of the given type for the specified reference data value

If the result set is larger than the limit parameter, it returns the first limit number of relationships.
To retrieve the next set of relationships, call the method again by using the URI in the property next returned by this method.

GET /v3/reference_data/{artifact_id}/versions/{version_id}/values/{code}/relationships

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • Code of reference data value

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

Query Parameters

  • Comma-separated list of relationship types for reference data value.

    Available types:
    terms
    parent_hierarchy
    child
    parent
    single_value_mappings
    multi_value_mappings
    value_mappings
    all

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

Reference Data Value Relationship Response

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Internal Server Error

Example responses
  • {
      "value_mappings": {
        "offset": 90,
        "last": {
          "href": "string",
          "offset": 270
        },
        "prev": {
          "href": "string",
          "offset": 60
        },
        "set_uri": true,
        "limit": 30,
        "count": 300,
        "first": {
          "href": "string",
          "offset": 0
        },
        "next": {
          "href": "string",
          "offset": 120
        },
        "resources": [
          {
            "rds_id": "1a4db093-9305-433b-bc22-ca2373131acc",
            "rds_version_id": "86e9513a-c8ed-40a1-93d5-d6bbd32b1291",
            "rds_name": "rds_name_example",
            "codes": [
              {
                "metadata": {
                  "artifact_type": "glossary_term",
                  "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
                  "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
                  "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
                  "source_repository_name": "string",
                  "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
                  "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
                  "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
                  "effective_start_date": "2021-07-26T12:37:03.919Z",
                  "effective_end_date": "2021-07-29T10:37:03.919Z",
                  "created_by": "IBMid-1234567ABC",
                  "created_at": "2017-02-15T02:30:32.000Z",
                  "modified_by": "IBMid-1234567ABC",
                  "modified_at": "2017-02-15T02:30:32.000Z",
                  "revision": "0",
                  "name": "string",
                  "state": "PUBLISHED",
                  "tags": [],
                  "steward_ids": [],
                  "workflow_state": "string",
                  "read_only": false,
                  "remove_start_date": false,
                  "remove_end_date": false
                },
                "entity": {
                  "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
                  "additional_info": {
                    "rds_id": "1a4db093-9305-433b-bc22-ca2373131acc",
                    "rds_value": "{string}",
                    "rds_version_id": "ac0543b3-4fd6-4480-8885-64471811ee1e",
                    "rds_value_description": "string"
                  },
                  "source_id": "b710c60f-4c29-5f48-bb99-431aad664cc3",
                  "relationship_type": "is_multi_mapped_to, is_single_mapped_to, is_child_of",
                  "source_type": "reference_data_value",
                  "target_type": "reference_data_value",
                  "reference_copy": false
                }
              }
            ]
          }
        ]
      },
      "parent": {
        "offset": 90,
        "last": {
          "href": "string",
          "offset": 270
        },
        "prev": {
          "href": "string",
          "offset": 60
        },
        "set_uri": true,
        "limit": 30,
        "count": 300,
        "first": {
          "href": "string",
          "offset": 0
        },
        "next": {
          "href": "string",
          "offset": 120
        },
        "resources": [
          {
            "metadata": {
              "artifact_type": "glossary_term",
              "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
              "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
              "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
              "source_repository_name": "string",
              "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
              "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
              "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
              "effective_start_date": "2021-07-26T12:37:03.919Z",
              "effective_end_date": "2021-07-29T10:37:03.919Z",
              "created_by": "IBMid-1234567ABC",
              "created_at": "2017-02-15T02:30:32.000Z",
              "modified_by": "IBMid-1234567ABC",
              "modified_at": "2017-02-15T02:30:32.000Z",
              "revision": "0",
              "name": "string",
              "state": "PUBLISHED",
              "tags": [],
              "steward_ids": [],
              "workflow_state": "string",
              "read_only": false,
              "remove_start_date": false,
              "remove_end_date": false
            },
            "entity": {
              "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "additional_info": {
                "rds_id": "1a4db093-9305-433b-bc22-ca2373131acc",
                "rds_value": "{string}",
                "rds_version_id": "ac0543b3-4fd6-4480-8885-64471811ee1e",
                "rds_value_description": "string"
              },
              "source_id": "b710c60f-4c29-5f48-bb99-431aad664cc3",
              "relationship_type": "is_multi_mapped_to, is_single_mapped_to, is_child_of",
              "source_type": "reference_data_value",
              "target_type": "reference_data_value",
              "reference_copy": false
            }
          }
        ]
      },
      "child": {
        "offset": 90,
        "last": {
          "href": "string",
          "offset": 270
        },
        "prev": {
          "href": "string",
          "offset": 60
        },
        "set_uri": true,
        "limit": 30,
        "count": 300,
        "first": {
          "href": "string",
          "offset": 0
        },
        "next": {
          "href": "string",
          "offset": 120
        },
        "resources": [
          {
            "metadata": {
              "artifact_type": "glossary_term",
              "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
              "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
              "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
              "source_repository_name": "string",
              "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
              "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
              "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
              "effective_start_date": "2021-07-26T12:37:03.919Z",
              "effective_end_date": "2021-07-29T10:37:03.919Z",
              "created_by": "IBMid-1234567ABC",
              "created_at": "2017-02-15T02:30:32.000Z",
              "modified_by": "IBMid-1234567ABC",
              "modified_at": "2017-02-15T02:30:32.000Z",
              "revision": "0",
              "name": "string",
              "state": "PUBLISHED",
              "tags": [],
              "steward_ids": [],
              "workflow_state": "string",
              "read_only": false,
              "remove_start_date": false,
              "remove_end_date": false
            },
            "entity": {
              "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "additional_info": {
                "rds_id": "1a4db093-9305-433b-bc22-ca2373131acc",
                "rds_value": "{string}",
                "rds_version_id": "ac0543b3-4fd6-4480-8885-64471811ee1e",
                "rds_value_description": "string"
              },
              "source_id": "b710c60f-4c29-5f48-bb99-431aad664cc3",
              "relationship_type": "is_multi_mapped_to, is_single_mapped_to, is_child_of",
              "source_type": "reference_data_value",
              "target_type": "reference_data_value",
              "reference_copy": false
            }
          }
        ]
      },
      "parent_hierarchy": {
        "offset": 90,
        "last": {
          "href": "string",
          "offset": 270
        },
        "prev": {
          "href": "string",
          "offset": 60
        },
        "set_uri": true,
        "limit": 30,
        "count": 300,
        "first": {
          "href": "string",
          "offset": 0
        },
        "next": {
          "href": "string",
          "offset": 120
        },
        "resources": [
          {
            "metadata": {
              "artifact_type": "glossary_term",
              "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
              "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
              "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
              "source_repository_name": "string",
              "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
              "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
              "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
              "effective_start_date": "2021-07-26T12:37:03.919Z",
              "effective_end_date": "2021-07-29T10:37:03.919Z",
              "created_by": "IBMid-1234567ABC",
              "created_at": "2017-02-15T02:30:32.000Z",
              "modified_by": "IBMid-1234567ABC",
              "modified_at": "2017-02-15T02:30:32.000Z",
              "revision": "0",
              "name": "string",
              "state": "PUBLISHED",
              "tags": [],
              "steward_ids": [],
              "workflow_state": "string",
              "read_only": false,
              "remove_start_date": false,
              "remove_end_date": false
            },
            "entity": {
              "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "additional_info": {
                "rds_id": "1a4db093-9305-433b-bc22-ca2373131acc",
                "rds_value": "{string}",
                "rds_version_id": "ac0543b3-4fd6-4480-8885-64471811ee1e",
                "rds_value_description": "string"
              },
              "source_id": "b710c60f-4c29-5f48-bb99-431aad664cc3",
              "relationship_type": "is_multi_mapped_to, is_single_mapped_to, is_child_of",
              "source_type": "reference_data_value",
              "target_type": "reference_data_value",
              "reference_copy": false
            }
          }
        ]
      },
      "terms": {
        "offset": 90,
        "last": {
          "href": "string",
          "offset": 270
        },
        "prev": {
          "href": "string",
          "offset": 60
        },
        "set_uri": true,
        "limit": 30,
        "count": 300,
        "first": {
          "href": "string",
          "offset": 0
        },
        "next": {
          "href": "string",
          "offset": 120
        },
        "resources": [
          {
            "metadata": {
              "artifact_type": "glossary_term",
              "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
              "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
              "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
              "source_repository_name": "string",
              "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
              "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
              "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
              "effective_start_date": "2021-07-26T12:37:03.919Z",
              "effective_end_date": "2021-07-29T10:37:03.919Z",
              "created_by": "IBMid-1234567ABC",
              "created_at": "2017-02-15T02:30:32.000Z",
              "modified_by": "IBMid-1234567ABC",
              "modified_at": "2017-02-15T02:30:32.000Z",
              "revision": "0",
              "name": "string",
              "state": "PUBLISHED",
              "tags": [],
              "steward_ids": [],
              "workflow_state": "string",
              "read_only": false,
              "remove_start_date": false,
              "remove_end_date": false
            },
            "entity": {
              "target_id": "6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "target_global_id": "867907bd-4c80-458d-9e75-c5683e013533_6d5b4c71-18f5-416f-bb4f-4929d2d48c4f",
              "target_parent_category_id": "e39ada11-8338-3704-90e3-681a71e7c839",
              "target_parent_category_name": "parent_category_name_example",
              "target_name": "name_example",
              "target_effective_start_date": "2022-02-14T13:16:49.355Z",
              "target_effective_end_date": "2022-02-15T14:16:49.355Z",
              "source_id": "0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "source_global_id": "867907bd-4c80-458d-9e75-c5683e013533_0d6412d5-fce8-4bb7-90c9-891bc3de5c4b",
              "source_type": "reference_data,reference_data_value, etc",
              "target_type": "glossary_term, reference_data, category, etc",
              "description": "string",
              "relationship_type": "related, value_to_term, etc",
              "reference_copy": false
            }
          }
        ]
      }
    }

Creates relationships for reference data value

Creates relationships for reference data value

POST /v3/reference_data/{artifact_id}/versions/{version_id}/values/{code}/relationships

Request

Path Parameters

  • The artifact id of the reference data set.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • Code of reference data value for which terms are to be assigned

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

Query Parameters

  • If configuration permits, the artifact will be created in the published state by skipping the workflow. For details refer to documentation.

Reference Data Value Relationships

Response

create value relationship response

Status Code

  • Relationships created for reference data set

  • Bad Request

  • Unauthorized

  • Relationships conflicting for reference data set

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "rds_values": [
            {
              "code": "CODE_EXAMPLE",
              "terms": [
                {
                  "relationship_id": "d5e5ba23-ee69-47f1-beb3-b09d29374455",
                  "target_id": "6a8f8630-5cff-4c42-a8f9-1f24371ad80c"
                }
              ],
              "child": [
                {
                  "relationship_id": "c2a28f38-6a96-4aca-8daf-c1e09cd402ad",
                  "target_id": "b710c60f-4c29-5f48-bb99-431aad664cc3"
                }
              ],
              "parent": {
                "relationship_id": "ab8efc36-ddaf-4d81-8fcb-819d63cbdcea",
                "target_id": "b710c60f-4c29-5f48-bb99-431aad664cc3"
              }
            }
          ],
          "href": "string",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

Delete the relationship associated to reference data value identified by code in the Reference Data Set with specified artifact_id and version_id

Delete the relationship associated to reference data value identified by code in the Reference Data Set with specified artifact_id and version_id

DELETE /v3/reference_data/{artifact_id}/versions/{version_id}/values/{code}/relationships/{relationship_id}

Request

Path Parameters

  • The artifact_id of the reference data set from which relationship is to be deleted.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the reference data set or specify CURRENT to fetch from published active version.
    CURRENT is to be deprecated in next major release, please use /v3/governance_artifact_types/reference_data/{artifact_id} as a replacement.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • The code of data value from which to delete relationship.

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • The artifact ID of the relationship to be deleted.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • Deleted the relationship

  • Bad Request

  • Unauthorized

  • relationship not found

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "href": "v3/reference_data/0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6/versions/4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

Retrieves relationships for a given artifact type, artifact_id and artifact version_id

For a given artifact type, a set of predefined relationship attributes with associated artifacts are included for every relationship.

GET /v3/relationships

Request

Query Parameters

  • The artifact type. Allowed values are category, glossary_term, classification, data_class, reference_data, policy, rule

    Example: glossary_term

  • The id of artifact that is a part of the requested relationship.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of artifact that is a part of the requested relationship.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • Comma-separated list of relationship types.

    Relationship TypesArtifact Types
    categoryclassificationdata_classglossary_termpolicyreference_datarule
    all+++++++
    categories-++++++
    child-----+-
    classifications+-+++++
    custom+++++++
    data_classes-+-++++
    data_location_rules----+--
    data_protection_rules----+--
    grouped_assets+------
    has_terms---+---
    has_type_terms---+---
    has_types_category+------
    has_types_classifications-+-----
    has_types_classifications_hierarchy-+-----
    has_types_data_class_hierarchy--+----
    has_types_data_classes--+----
    has_types_term_hierarchy---+---
    is_a_parent_category_for+------
    is_a_type_of_category+------
    is_a_type_of_classification-+-----
    is_a_type_of_data_class--+----
    is_a_type_of_terms---+---
    is_of_terms---+---
    multi_value_mappings-----+-
    owned_by+------
    parent-----+-
    parent_category-++++++
    parent_hierarchy-----+-
    parent_policy----+--
    policies-+++--+
    reference_data-+++--+
    reference_data_values---+---
    related_categories-+-----
    related_terms---+---
    replaced_by_terms---+---
    replaces_terms---+---
    rules-++++++
    single_value_mappings-----+-
    sub_policies----+--
    synonym_terms---+---
    terms-++-+++
    value_mappings-----+-

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • A filter to artifacts that have been created / updated / deleted since the given timestamp in this format: [yyyy-MM-ddTHH:mm:ss.SSSZ]

    Possible values: length = 24, Value must match regular expression ^\d{4}(-\d\d(-\d\d(T\d\d:\d\d(:\d\d)?(\.\d+)?(([+-]\d\d:\d\d)|Z)?)?)?)?$

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

Paginated lightweight search artifact list

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Creates a rule in the glossary

This method is used to create a new rule.

POST /v3/rules

Request

Query Parameters

  • If configuration permits, the artifact will be created in the published state by skipping the workflow. For details refer to documentation.

Rule to be created.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • The rule has been created successfully.

  • Bad Request

  • Unauthorized

  • UniqueConstraintViolation - rule with given name already exists.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "href": "v3/reference_data/0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6/versions/4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

Retrieves rule with given artifact_id and status

This method can be used for retrieving details of an ACTIVE, PUBLISHED or DRAFT rule.

GET /v3/rules/{artifact_id}/versions

Request

Path Parameters

  • Artifact ID or global ID of the artifact

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • Filter by rule status.

    Available statuses:
    DRAFTartifacts which are being created or modified and not in use
    PUBLISHEDartifacts which are in published state (does not takes effective dates into account)
    ACTIVEartifacts which are published, and which effective date period includes current datetime

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

    Default: PUBLISHED

  • Comma-separated list of relationship types.

    Available types:
    parent_category
    categories
    terms
    rules
    reference_data
    policies
    classifications
    data_classes
    custom
    all

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression .*

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.

    Default: true

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

List of paginated artifacts

Status Code

  • The rule has been retrieved successfully.

  • Bad Request

  • Unauthorized

  • The rule with given {guid} does not exist in the glossary.

  • Internal Server Error

Example responses
  • {
      "offset": 90,
      "last": {
        "href": "string",
        "offset": 270
      },
      "prev": {
        "href": "string",
        "offset": 60
      },
      "set_uri": true,
      "limit": 30,
      "count": 300,
      "first": {
        "href": "string",
        "offset": 0
      },
      "next": {
        "href": "string",
        "offset": 120
      },
      "resources": [
        {
          "metadata": {
            "artifact_type": "glossary_term",
            "artifact_id": "d109503d-06c3-46b2-b1e7-95482a143d0a",
            "version_id": "58cfecc6-7182-4665-9dc5-4f030238c106_0",
            "source_repository_id": "867907bd-4c80-458d-9e75-c5683e013533",
            "source_repository_name": "string",
            "global_id": "867907bd-4c80-458d-9e75-c5683e013533_d109503d-06c3-46b2-b1e7-95482a143d0a",
            "workflow_id": "d3a36017-f4b3-4488-b49c-85b08fdce499",
            "draft_ancestor_id": "971798d5-7d11-4b4f-833c-f1dbac63b126",
            "effective_start_date": "2021-07-26T12:37:03.919Z",
            "effective_end_date": "2021-07-29T10:37:03.919Z",
            "created_by": "IBMid-1234567ABC",
            "created_at": "2017-02-15T02:30:32.000Z",
            "modified_by": "IBMid-1234567ABC",
            "modified_at": "2017-02-15T02:30:32.000Z",
            "revision": "0",
            "name": "string",
            "state": "PUBLISHED",
            "tags": [],
            "steward_ids": [],
            "workflow_state": "string",
            "read_only": false,
            "remove_start_date": false,
            "remove_end_date": false
          },
          "entity": {
            "type, rule_type, etc": "TEXT, Governance, etc",
            "long_description": "string",
            "is_removed_long_description": false,
            "state": "PUBLISHED",
            "default_locale_id": "en-US",
            "reference_copy": false,
            "custom_attributes": []
          }
        }
      ]
    }

Deletes a draft or published version of an artifact

If the artifact state is DRAFT, then the draft version is deleted.

If the artifact state is PUBLISHED, a draft version with marked_for_deletion is created .

If the artifact state is PUBLISHED and workflow is skipped, then the published version is deleted.

If a draft artifact already exists for deletion for a published artifact, then the draft artifact is simply skipped.

Administrator role is required.

DELETE /v3/rules/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact id of the rule to delete.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the rule to delete.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • A draft version has been successfully created for deleting the published artifact.

  • The artifact has been deleted successfully.

  • Bad Request

  • Unauthorized

  • Draft version for the given version ID does not exist in the glossary.

  • Internal Server Error

Example responses
  • {
      "resources": [
        {
          "href": "v3/reference_data/0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6/versions/4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "artifact_id": "0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "version_id": "4fb86a70-7035-4b3e-8825-137c7b9b1687",
          "workflow_id": "56b82aa1-0f3c-4e2c-84bf-bee619c84c7f",
          "global_id": "867907bd-4c80-458d-9e75-c5683e013533_0da59a9d-3a5a-4e1d-aa0c-e67ac8bfbbb6",
          "entity_type": "reference_data"
        }
      ]
    }

Retrieves rule with given guid

This method can be used for retrieving details of an PUBLISHED or DRAFT rule.

GET /v3/rules/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact ID of the rule to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version ID of the rule to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Comma-separated list of relationship types.

    Available types:
    parent_category
    categories
    terms
    rules
    reference_data
    policies
    classifications
    data_classes
    custom
    all

    Possible values: 1 ≤ length ≤ 255, Value must match regular expression ^(parent_category|categories|terms|classifications|data_classes|reference_data|policies|rules|custom|all)(,(parent_category|categories|terms|classifications|data_classes|reference_data|policies|rules|custom|all))*$

  • If this parameter is set to true, then all artifact custom attributes are returned. If parameter is not set its default value is 'true'. This is deprecated and default will be change to 'false' in first major 2022 release.

    Default: true

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

Response

Rule returned by REST GET method that includes the relationships as paginated list.

Status Code

  • The rule has been retrieved successfully.

  • Unauthorized

  • The rule with given {guid} does not exist in the glossary.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Updates rule with given id

This method is used to update rule with given id.

PATCH /v3/rules/{artifact_id}/versions/{version_id}

Request

Path Parameters

  • The artifact id of the rule to be updated.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version id of the rule to be updated.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

The rule to be updated.
Fields omitted will be unchanged, and fields set to null explicitly will be nulled out.
For multi-valued attributes & relationships, the complete list will be replaced by the given list of values.
Additional Example:

{"description" : "description updated"}

Response

Rule returned by REST GET method that includes the relationships as paginated list.

Status Code

  • The rule has been updated successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • The rule with given {guid} does not exist in the glossary.

  • The rule was modified by another user.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

List the relationships of the given type for the specified rule

If the result set is larger than the limit parameter, it returns the first limit number of relationships.
To retrieve the next set of relationships, call the method again by using the URI in the property next returned by this method.

GET /v3/rules/{artifact_id}/versions/{version_id}/relationships

Request

Path Parameters

  • The artifact ID of the rule to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version ID of the rule to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • Comma-separated list of relationship types.

    Available types:
    parent_category
    categories
    terms
    rules
    reference_data
    policies
    classifications
    data_classes
    custom
    all

    Possible values: 1 ≤ length ≤ 32, Value must match regular expression .*

  • Custom relationship definition Id.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • Is custom relationship reversed?

  • If this parameter is set, then all ancestors in the hierarchy are returned. You can use this parameter to build complete ancestor path.

  • Retrieves target parent category name of the relationship entity.

  • The maximum number of relationship to return - must be at least 1 and cannot exceed 200. The default value is 10.

    Possible values: 1 ≤ value ≤ 200

    Default: 10

  • Index of the beginning of the page. At present, the offset value can be 0 (zero) or a multiple of limit value.

Response

Response that includes relationships to a managed object, like business term, data class, classification

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create relationships for an artifact in the glossary

If it is a published version, it creates a draft from the published version and adds the relationship to the draft version. And, it returns the details of the draft version.

POST /v3/rules/{artifact_id}/versions/{version_id}/relationships

Request

Path Parameters

  • The artifact ID of the rule to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version ID of the rule to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

Query Parameters

  • If configuration permits, the published artifact will be updated by skipping the workflow. For details refer to documentation.

Relationships to be created.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • The relationship(s) have been created successfully.

  • Bad Request

  • Unauthorized

  • UniqueConstraintViolation - This Relationships is already exist

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Deletes a relationship of a rule artifact

This method can be used for deleting a relationship of a rule artifact.

DELETE /v3/rules/{artifact_id}/versions/{version_id}/relationships/{relationship_id}

Request

Path Parameters

  • The artifact ID of the rule to fetch.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

  • The version ID of the rule to fetch.

    Possible values: 1 ≤ length ≤ 56, Value must match regular expression .*

    Example: 990e33f5-3108-4d45-a530-0307458362d4_0

  • The artifact ID of the relationship to be deleted.

    Possible values: length = 36, Value must match regular expression ([A-Za-z0-9]{8}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{4}-[A-Za-z0-9]{12})

    Example: aa0e33f5-3108-4d45-a530-0307458362d4

Query Parameters

  • If configuration permits, the published artifact will be deleted by skipping the workflow. For details refer to documentation.

Response

Create response object returned on creating a resource such as a Term, Category, Classification, DataClass, Policy.

Status Code

  • The relationship of the rule artifact was successfully deleted.

  • Bad Request

  • Unauthorized

  • The relationship for the given GUID does not exist in the glossary.

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get list of jobs under a project or a space.

Lists the jobs in the specified project or space (either project_id or space_id must be set).

GET /v2/jobs

Request

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

  • The ID of the project to use. project_id or space_id is required.

  • The ID of the space to use. project_id or space_id is required.

  • Optionally get all jobs associated with a particular asset.

  • Optionally get all jobs associated with the particular asset ref type.

  • The ID of the job run. Can be used to search parent job of a job run

  • The limit of the number of items to return, for example limit=50. If not specified a default of 100 will be used.

    Default: 100

  • The optional 'next' field from the response in string format, can be used to get the next batch. The response can contain up to 200 results in a batch, if there are more results, a 'next' field is returned in the response which can be used to get the next batch.

Response

Status Code

  • Success.

  • Bad request. See the error message for details.

  • You are not authorized to access the service. See response for more information.

  • You are not permitted to perform this action. See response for more information.

  • The resources you specified cannot be found.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Create a new job.

Creates a new job in the specified project or space (either project_id or space_id must be set).

POST /v2/jobs

Request

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

  • The ID of the project to use. project_id or space_id is required.

  • The ID of the space to use. project_id or space_id is required.

The job to be created. Note: either asset_ref or asset_ref_type must be provided, not both.

Response

Status Code

  • Created.

  • Bad request. See the error message for details.

  • You are not authorized to access the service. See response for more information.

  • You are not permitted to perform this action. See response for more information.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Get the information of job identified by the ID.

Gets the info for a single job associated from the specified project or space (either project_id or space_id must be set).

GET /v2/jobs/{job_id}

Request

Path Parameters

  • The ID of the job to use. Each job has a unique ID. Alternatively, the serving_name value can be used.

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

  • The ID of the project to use. project_id or space_id is required.

  • The ID of the space to use. project_id or space_id is required.

Response

Status Code

  • Success.

  • Bad request. See the error message for details.

  • You are not authorized to access the service. See response for more information.

  • You are not permitted to perform this action. See response for more information.

  • The resources you specified cannot be found.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Delete a specific job.

Deletes a specific job in a project or space (either project_id or space_id must be set). If the deletion of the job and its runs will take some time to finish, then a 202 response will be returned and the deletion will continue asynchronously. All the jobs runs associated with the job will also be deleted. If the job is still running, it will not be deleted.

DELETE /v2/jobs/{job_id}

Request

Path Parameters

  • The ID of the job to use. Each job has a unique ID. Alternatively, the serving_name value can be used.

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

  • The ID of the project to use. project_id or space_id is required.

  • The ID of the space to use. project_id or space_id is required.

Response

Status Code

  • The requested operation completed successfully.

  • Bad request. See the error message for details.

  • You are not authorized to access the service. See response for more information.

  • You are not permitted to perform this action. See response for more information.

  • The resources you specified cannot be found.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Update information of a job.

Updates specific attributes of a job in the specified project or space (either project_id or space_id must be set). You must specify the updates by using the JSON patch format, described in RFC 6902.

PATCH /v2/jobs/{job_id}

Request

Path Parameters

  • The ID of the job to use. Each job has a unique ID. Alternatively, the serving_name value can be used.

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

  • The ID of the project to use. project_id or space_id is required.

  • The ID of the space to use. project_id or space_id is required.

Updates to make to the job run.

Response

Status Code

  • Success.

  • You are not authorized to access the service. See response for more information.

  • You are not permitted to perform this action. See response for more information.

  • The resources you specified cannot be found.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Get the availability of a given serving_name

Gets the availability of a given serving_name, as serving_name must be globally unique. serving_name must be a combination of alphanumeric and underscore characters, and must be between 1 and 36 characters.

GET /v2/jobs/serving_name/{serving_name}

Request

Path Parameters

  • The serving_name value of the job to be used in place of the job ID.

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

Response

Status Code

  • Success.

  • Bad request. See the error message for details.

  • You are not authorized to access the service. See response for more information.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Get list of runs of a job.

Lists the job runs for a specific job in the specified project or space (either project_id or space_id must be set). Only the metadata and certain elements of the entity component of each run are returned.

GET /v2/jobs/{job_id}/runs

Request

Path Parameters

  • The ID of the job to use. Each job has a unique ID. Alternatively, the serving_name value can be used.

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

  • The ID of the project to use. project_id or space_id is required.

  • The ID of the space to use. project_id or space_id is required.

  • The optional 'next' field from the response in string format, can be used to get the next batch. The response can contain up to 200 results in a batch, if there are more results, a 'next' field is returned in the response which can be used to get the next batch.

  • The limit of the number of items to return, for example limit=50. If not specified a default of 100 will be used.

    Default: 100

  • A list of comma-separated job run states. Availble values: Completed, Failed, Canceled, Starting, Running, Queued, Canceling, Paused, Resuming, CompletedWithWarnings, CompletedWithErrors

    Allowable values: [Queued,Starting,Running,Paused,Resuming,Canceling,Canceled,Failed,Completed,CompletedWithErrors,CompletedWithWarnings]

Response

Status Code

  • Success.

  • You are not authorized to access the service. See response for more information.

  • You are not permitted to perform this action. See response for more information.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Start a run for a job.

Starts the specified job contained in a project or space (either project_id or space_id must be set).

POST /v2/jobs/{job_id}/runs

Request

Path Parameters

  • The ID of the job to use. Each job has a unique ID. Alternatively, the serving_name value can be used.

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

  • The ID of the project to use. project_id or space_id is required.

  • The ID of the space to use. project_id or space_id is required.

The configuration of the job run to use. If not provided, use the configuration of the associated job.

Response

Status Code

  • The requested operation completed successfully.

  • You are not authorized to access the service. See response for more information.

  • You are not permitted to perform this action. See response for more information.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Get a specific run of a job.

Gets the info for a single job run from the specified project or space (either project_id or space_id must be set).

GET /v2/jobs/{job_id}/runs/{run_id}

Request

Path Parameters

  • The ID of the job to use. Each job has a unique ID. Alternatively, the serving_name value can be used.

  • The ID of the job run.

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

  • The ID of the project to use. project_id or space_id is required.

  • The ID of the space to use. project_id or space_id is required.

Response

Status Code

  • Success.

  • You are not authorized to access the service. See response for more information.

  • You are not permitted to perform this action. See response for more information.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Delete a run.

Delete the specified job run in a project or space (either project_id or space_id must be set).

DELETE /v2/jobs/{job_id}/runs/{run_id}

Request

Path Parameters

  • The ID of the job to use. Each job has a unique ID. Alternatively, the serving_name value can be used.

  • The ID of the job run.

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

  • The ID of the project to use. project_id or space_id is required.

  • The ID of the space to use. project_id or space_id is required.

Response

Status Code

  • The requested operation is in progress.

  • The requested operation completed successfully.

  • You are not authorized to access the service. See response for more information.

  • You are not permitted to perform this action. See response for more information.

  • The resources you specified cannot be found.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Retrieve runtime log of a run.

Gets the logs for a job run in the specified project or space (either project_id or space_id must be set)

GET /v2/jobs/{job_id}/runs/{run_id}/logs

Request

Path Parameters

  • The ID of the job to use. Each job has a unique ID. Alternatively, the serving_name value can be used.

  • The ID of the job run.

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

  • The ID of the project to use. project_id or space_id is required.

  • The ID of the space to use. project_id or space_id is required.

  • The limit of the number of lines to return, for example limit=50. If not specified, all log will be returned.

Response

Response of get job run log

Status Code

  • Success.

  • You are not authorized to access the service. See response for more information.

  • You are not permitted to perform this action. See response for more information.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Cancel a run.

Cancels a job run that is in the running state.

POST /v2/jobs/{job_id}/runs/{run_id}/cancel

Request

Path Parameters

  • The ID of the job to use. Each job has a unique ID. Alternatively, the serving_name value can be used.

  • The ID of the job run.

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

  • The ID of the project to use. project_id or space_id is required.

  • The ID of the space to use. project_id or space_id is required.

An empty body.

Example: {}

Response

Status Code

  • The requested operation completed successfully.

  • You are not authorized to access the service. See response for more information.

  • You are not permitted to perform this action. See response for more information.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Pause a run.

Pauses a job run that is in the running state.

POST /v2/jobs/{job_id}/runs/{run_id}/pause

Request

Path Parameters

  • The ID of the job to use. Each job has a unique ID. Alternatively, the serving_name value can be used.

  • The ID of the job run.

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

  • The ID of the project to use. project_id or space_id is required.

  • The ID of the space to use. project_id or space_id is required.

An empty body.

Example: {}

Response

Status Code

  • The requested operation completed successfully.

  • You are not authorized to access the service. See response for more information.

  • You are not permitted to perform this action. See response for more information.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Resume a run.

Resumes a job run that is in the paused state.

POST /v2/jobs/{job_id}/runs/{run_id}/resume

Request

Path Parameters

  • The ID of the job to use. Each job has a unique ID. Alternatively, the serving_name value can be used.

  • The ID of the job run.

Query Parameters

  • Set to true for calls in git-based projects.

    Default: false

  • The ID of the project to use. project_id or space_id is required.

  • The ID of the space to use. project_id or space_id is required.

An empty body.

Example: {}

Response

Status Code

  • The requested operation completed successfully.

  • You are not authorized to access the service. See response for more information.

  • You are not permitted to perform this action. See response for more information.

  • An error occurred. See response for more information.

No Sample Response

This method does not specify any sample responses.

Copy Knowledge Accelerator items into project

Copy the specified Knowledge Accelerator items into specified IKC project.

POST /v1/knowledge_accelerators/{ka_id}/copy_items

Request

Path Parameters

  • The Knowledge Accelerator id

    Possible values: 4 ≤ length ≤ 7

Query Parameters

  • A comma separated list of the item ids of the Knowledge Accelerator to copy.

    Possible values: 2 ≤ length ≤ 200

  • The id of the project where the items are copied to

    Possible values: 10 ≤ length ≤ 100

  • curl -k -X POST 'https://{cpd_cluster_host}/v1/knowledge_accelerators/{ka_id}/copy_items?ids={ids}&project_id={project_id}' -H 'accept: application/json' -H 'Authorization: Bearer {token}' -d ''

Response

Response information related to copying Knowledge Accelerator items into a project.

Status Code

  • Success

  • Bad Request

  • Unauthorized

  • Not found

Example responses
  • {"message":"The copy has been executed, please check details below for status","knowledge_accelerator":"https://api.dataplatform.cloud.ibm.com/v1/knowledge_accelerators/kaeu20","items":[{"item_id":"base","data_assets":[{"name":"kaeu20-base-2.0.20230726.zip","url":"https://api.dataplatform.cloud.ibm.com/v2/data_assets/b43ddf6d-bb52-4df2-9d55-c7713a2bbadd?project_id=e304ce63-8e2a-4597-8251-0876d20c2a24","status":"copied"}]}]}

Get a specific Knowledge Accelerator

Supply a Knowledge Accelerator id, in order to get detailed information, including contained items that can be imported, statistics and dependencies

GET /v1/knowledge_accelerators/{id}

Request

Path Parameters

  • The Knowledge Accelerator id

    Possible values: 4 ≤ length ≤ 7

  • curl -k -X GET 'https://{cpd_cluster_host}/v1/knowledge_accelerators/{ka_id}' -H 'accept: application/json' -H 'Authorization: Bearer {token}'

Response

A KAArtifact can represent a Knowledge Accelerator or a Knowledge Accelerator item. A knowledge accelerator can contain many knowledge accelerator items, which can be for example, many sub parts of a large IKC glossary. A knowledge accelerator item can depend on other items.

Status Code

  • Success

  • Unauthorized

  • Not found

Example responses
  • {"id":"kaeu20","name":"Knowledge Accelerators","definition":"A category that ..etc.","type":"knowledge_accelerator","format":"wkc_glossary","version":"2.0.20231004","stats":{"terms":11425,"categories":502,"policy":57,"rule":30,"reference_data":297,"reference_data_value":2292,"data_class":284}}

Import specified Knowledge Accelerator items into the glossary

Import the specified Knowledge Accelerator items into glossary. By default this will import all dependent items

POST /v1/knowledge_accelerators/{ka_id}/import_items

Request

Path Parameters

  • The Knowledge Accelerator id

    Possible values: 4 ≤ length ≤ 7

Query Parameters

  • The ids of the Knowledge Accelerator items to import, for example 'base'. Use the comma delimiter when listing multiple item ids, for example 'ccpa,gdpr'. Only one item allowed if item is of type glossary_scope

    Possible values: 2 ≤ length ≤ 12

  • The merge option to be used when importing into the glossary, valid values:

    all - imported values will replace existing values in catalog
    specified - imported values that are not empty replace existing values in catalog
    empty - imported values replace only empty values in catalog

    Possible values: 4 ≤ length ≤ 12

  • Indicates which dependencies of the item ids specified should also be imported, valid values:

    all - imports the specified items that the user selects, imports all the items that the selected item depends on, irrespective of whether they already exist in glossary (Note, this may overwrite user made changes in the glossary).
    necessary - imports specified items that the user selects, imports items that are considered mandatory for the specified item, and imports other related items the specified items depend on that are not already imported.
    mandatory - imports the specified items that the user selects, and items that are considered mandatory for the specified item.

    Possible values: 4 ≤ length ≤ 12

    Default: necessary

  • Indicates whether the import should be done, valid values:

    false - will do all the logic checking and indicate what is going to be imported, useful for checking in advance of actually doing the import
    true - at the end of logic checking will trigger the import and return a process id to the user

    Default: false

  • curl -k -X POST 'https://{cpd_cluster_host}/v1/knowledge_accelerators/{ka_id}/import_items?ids={ids}&merge_option={merge_option}&dependencies={dependencies}&do_import={do_import}' -H 'accept: application/json' -H 'Authorization: Bearer {token}' -d ''

Response

An import response holds information related to an attempted or dry run of import of Knowledge Accelerator content. In a dry run scenario there will be no process id, as the import was not actually triggered.

Status Code

  • Accepted

  • Bad Request

  • Unauthorized

  • Not found

Example responses
  • {"message":"The import has been submitted. To check the status ...","process_id":"b3ae3db2-6da1-447d-aaf7-4dde46dcbd1d","import_evaluation":{"knowledge_accelerator":"kain20","items":[{"id":"base","evaluation":"import","reason":"user_selected"}]}}

Get what Knowledge Accelerator items are currently imported into glossary

Information on what Knowledge Accelerator items are imported into glossary if any; this will include information as to whether imported version is current

GET /v1/knowledge_accelerators/import_items

Request

No Request Parameters

This method does not accept any request parameters.

  • curl -k -X GET 'https://{cpd_cluster_host}/v1/knowledge_accelerators/import_items' -H 'accept: application/json' -H 'Authorization: Bearer {token}'

Response

Represents information as to what Knowledge Accelerators and associated items are installed in the IKC glossary.

Status Code

  • Success

  • Unauthorized

Example responses
  • {"message":"KA008I: The following knowledge accelerator items are imported","import_evaluation":[{"knowledge_accelerator":"kain20","items":[{"id":"base","evaluation":"imported"}]}]}

Get all Knowledge Accelerators

Detailed information on each Knowledge Accelerator, including contained items that can be imported, statistics and dependencies

GET /v1/knowledge_accelerators

Request

No Request Parameters

This method does not accept any request parameters.

  • curl -k -X GET 'https://{cpd_cluster_host}/v1/knowledge_accelerators' -H 'accept: application/json' -H 'Authorization: Bearer {token}'

Response

A listing of the Knowledge Accelerators

Status Code

  • Success

  • Unauthorized

Example responses
  • {"count":1,"knowledge_accelerators":[{"id":"kahc20","name":"Knowledge Accelerator for Healthcare","definition":"IBM Knowledge Accelerator for ...etc..","type":"knowledge_accelerator","format":"wkc_glossary","version":"2.0.20230726","stats":{"terms":22385,"categories":1071,"policy":32,"rule":10,"reference_data":1169,"reference_data_value":22624,"data_class":208}}]}

Get asset lineage

Returns lineage of the asset identified by asset_id. The lineage includes a list of events associated with the asset. A different list of events are returned based on the value of lineage_type query parameter.

  • lineage_type = default | partial - The event generating the asset, the events happening on the asset and the events using the asset to generate other assets.
  • lineage_type = forward - The event generating the asset and the events using the asset directly or indirectly to generate other assets.
  • lineage_type = forward_hop - The event generating the asset and the events using the asset directly or indirectly to generate other assets. The number of events returned is controlled by hop_count and event_count parameters.
  • lineage_type = backward - All the direct and indirect events responsible for generating the asset.
GET /asset_lineages/{asset_id}

Request

Path Parameters

  • Asset ID

Query Parameters

  • The type of the asset. The value can be one of dataset, model. If the seed asset ID is supplied, then the value supplied should be the type of the seed asset.

  • The maximum number of events returned. The default value is 50.

  • The index of the first matching event to be included in the result. The default value is 0.

  • The type of lineage to be returned. The default value is partial

    Allowable values: [forward,forward_hop,backward,partial]

  • The type of event classification. By default, the events are not classfied.

    Allowable values: [timelines]

  • If the asset is a catalog-asset, specify the ID of the catalog. If the seed asset ID is supplied, then the value supplied should be the catalog ID of the seed asset.

  • If the asset is a project-asset, specify the ID of the project. If the seed asset ID is supplied, then the value supplied should be the project ID of the seed asset.

  • If the asset is a space-asset, specify the ID of the space. If the seed asset ID is supplied, then the value supplied should be the project ID of the seed asset.

  • If the asset is a model, specify the ID of the associated WML service instance. If the seed asset ID is supplied, then the value supplied should be the WML service instance ID of the seed asset.

  • The time after which the events have to be fetched. The format should be yyyy-MM-dd'T'HH:mm:ss.SSSX. The default value is 1970-01-01T00:00:00.000Z.

  • Used to control the number of events returned when lineage_type is forward_hop. The events returned will belong to a maximum of N other assets directly or indirectly generated using the asset where N is equal to hop_count. The default value is 4.

  • Used to control the number of events returned when lineage_type is forward_hop. The maxiumum number of events of each other asset generated directly or indirectly using the asset. The default value is 10.

  • The seed asset ID. The request will not be authorized if the lineage of the asset is not part of the lineage of the seed asset.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get asset lineage summary

Returns lineage summary of the asset identified by asset_id.

GET /asset_lineages/{asset_id}/summary

Request

Path Parameters

  • Asset ID

Query Parameters

  • The type of the asset. The value can be one of dataset, model.

  • If the asset is a catalog-asset, specify the ID of the catalog.

  • If the asset is a project-asset, specify the ID of the project.

  • If the asset is a space-asset, specify the ID of the space.

  • If the asset is a model, specify the ID of the associated WML service instance.

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Returns the event identified by event_id.

Get lineage event

GET /lineage_events/{event_id}

Request

Path Parameters

  • Event ID

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Publishes lineage event.

Publish lineage event

POST /lineage_events

Request

Response

Status Code

  • Accepted

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Get summary statistics of activities on a project/catalog/space asset

Returns summary statistics of the asset identified by asset_id and request type.

GET /asset_statistics/{asset_id}/statistics

Request

Path Parameters

  • Asset ID

Query Parameters

  • The type of the request. The value can be one of edits, downloads, publish_to_catalog or clone_to_project.

    Allowable values: [EDITS,DOWNLOADS,PUBLISH_TO_CATALOG,CLONE_TO_PROJECT,PROMOTE_TO_SPACE]

  • If the asset is a catalog-asset, specify the ID of the catalog.

  • If the asset is a project-asset, specify the ID of the project.

  • If the asset is a space-asset, specify the ID of the space

Response

Response for the /v2/asset_statistics/{asset_id}/statistics API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create a new notebook.

Create a new notebook

  • either from scratch
  • or by copying another notebook.

To create a notebook from scratch, you need to first upload the notebook content(ipynb format) to the project Cloud Object Storage (COS) and then reference it with the attribute file_reference. The other required attributes are name, project and runtime. The attribute runtime is used to specify the environment on which the notebook runs.

To copy a notebook, you only need to provide name and source_guid in the request body.

POST /v2/notebooks

Request

Specification of the notebook to be created.

Example:
createNewNotebook

Response

Notebook information in a project as returned by a GET request.

Status Code

  • Success. Created and returned a new notebook asset. Format follows v2/assets.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

  • The number of requests has exceeded the rate limit.

Example responses
  • {
      "metadata": {
        "name": "my notebook",
        "description": "this is my notebook",
        "asset_type": "notebook",
        "created": 1540471021134,
        "created_at": "2021-07-01T12:37:01.000Z",
        "owner_id": "IBMid-310000SG2Y",
        "catalog_id": "463cb8d8-8480-4a98-b75a-f7443b7d0af9",
        "asset_id": "41d09a9a-f771-48a2-9534-50c0c622356d",
        "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf"
      },
      "entity": {
        "notebook": {
          "kernel": {
            "display_name": "Python 3.9 with Spark",
            "name": "python3",
            "language": "python3"
          },
          "originates_from": {
            "type": "blank"
          }
        },
        "runtime": {
          "environment": "spark33py39-b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
          "spark_monitoring_enabled": true
        },
        "href": "/v2/assets/41d09a9a-f771-48a2-9534-50c0c622356d?project_id=b275be5f-10ff-47ee-bfc9-63f1ce5addbf"
      }
    }
  • {
      "metadata": {
        "name": "my notebook",
        "description": "this is my notebook",
        "asset_type": "notebook",
        "created": 1540471021134,
        "created_at": "2021-07-01T12:37:01.000Z",
        "owner_id": "IBMid-310000SG2Y",
        "catalog_id": "463cb8d8-8480-4a98-b75a-f7443b7d0af9",
        "asset_id": "41d09a9a-f771-48a2-9534-50c0c622356d",
        "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf"
      },
      "entity": {
        "notebook": {
          "kernel": {
            "display_name": "Python 3.9 with Spark",
            "name": "python3",
            "language": "python3"
          },
          "originates_from": {
            "type": "notebook",
            "guid": "ca3c0e27-46ca-83d4-a646-d49b11c14de9"
          }
        },
        "runtime": {
          "environment": "spark33py39-b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
          "spark_monitoring_enabled": true
        },
        "href": "/v2/assets/41d09a9a-f771-48a2-9534-50c0c622356d?project_id=b275be5f-10ff-47ee-bfc9-63f1ce5addbf"
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "rate_limit",
          "message": "The requests from IBMid-310000A00A exceeds rate limit. Please try again later."
        }
      ]
    }

Retrieve the details of a large number of notebooks inside a project.

Retrieve the details of a large number of notebooks inside a project.

POST /v2/notebooks/list

Request

Query Parameters

  • The guid of the project.

  • Additional info that will be included into the notebook details. Possible values are:

    • runtime

Payload for a notebook list request.

Examples:
listNotebooks

Response

A list of notebook info as returned by a list query.

Status Code

  • Success. Returned a list of notebook assets. Format follows v2/assets.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "total_results": 1,
      "resources": [
        {
          "metadata": {
            "guid": "41d09a9a-f771-48a2-9534-50c0c622356d",
            "url": "/v2/notebooks/41d09a9a-f771-48a2-9534-50c0c622356d"
          },
          "entity": {
            "runtime": {
              "environment": "spark33py39-b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
              "spark_monitoring_enabled": true
            },
            "asset": {
              "asset_id": "41d09a9a-f771-48a2-9534-50c0c622356d",
              "asset_type": "notebook",
              "created_at": "2021-07-01T12:37:01.000Z",
              "catalog_id": "463cb8d8-8480-4a98-b75a-f7443b7d0af9",
              "version": 2,
              "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
              "href": "/v2/assets/41d09a9a-f771-48a2-9534-50c0c622356d?project_id=b275be5f-10ff-47ee-bfc9-63f1ce5addbf"
            }
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Delete a particular notebook, including the notebook asset.

Delete a particular notebook, including the notebook asset.

DELETE /v2/notebooks/{notebook_guid}

Request

Path Parameters

  • The guid of the notebook.

Response

Status Code

  • Successful request. Notebook is deleted.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Revert the main notebook to a version.

Revert the main notebook to a version.

PUT /v2/notebooks/{notebook_guid}

Request

Path Parameters

  • The guid of the main notebook.

Payload for a request to revert to a specific notebook version.

Examples:
revertNotebooks

Response

Notebook information in a project as returned by a GET request.

Status Code

  • Success. Reverted the main notebook to a version. Format follows v2/assets.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "metadata": {
        "name": "my notebook v4.2",
        "description": "this is my notebook v4.2",
        "asset_type": "notebook",
        "created": 1540471021134,
        "created_at": "2021-07-01T12:37:01.000Z",
        "owner_id": "IBMid-310000SG2Y",
        "catalog_id": "463cb8d8-8480-4a98-b75a-f7443b7d0af9",
        "asset_id": "41d09a9a-f771-48a2-9534-50c0c622356d",
        "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf"
      },
      "entity": {
        "notebook": {
          "kernel": {
            "display_name": "Python 3.9 with Spark",
            "name": "python39",
            "language": "python3"
          },
          "originates_from": {
            "type": "blank"
          }
        },
        "runtime": {
          "environment": "spark33py39-b275be5f-10ff-47ee-bfc9-63f1ce5addbf",
          "spark_monitoring_enabled": true
        },
        "href": "/v2/assets/41d09a9a-f771-48a2-9534-50c0c622356d?project_id=b275be5f-10ff-47ee-bfc9-63f1ce5addbf"
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Update a particular notebook.

Update a particular notebook.

PATCH /v2/notebooks/{notebook_guid}

Request

Path Parameters

  • The guid of the notebook.

Payload for a notebook update request.

Examples:
updateNotebook

Response

Notebook information as returned by a GET request.

Status Code

  • Success. Updated the notebook. Format follows v2/assets.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "metadata": {
        "name": "my notebook",
        "description": "this is my notebook",
        "asset_type": "notebook",
        "created": 1540471021134,
        "created_at": "2021-07-01T12:37:01.000Z",
        "owner_id": "IBMid-310000SG2Y",
        "catalog_id": "463cb8d8-8480-4a98-b75a-f7443b7d0af9",
        "asset_id": "41d09a9a-f771-48a2-9534-50c0c622356d",
        "project_id": "b275be5f-10ff-47ee-bfc9-63f1ce5addbf"
      },
      "entity": {
        "notebook": {
          "kernel": {
            "display_name": "Python 3.9 with Spark",
            "name": "python39",
            "language": "python3"
          },
          "originates_from": {
            "type": "blank"
          }
        },
        "runtime": {
          "environment": "d46ca0e27-a646-4de9-a646-9b113c183d4",
          "spark_monitoring_enabled": false
        },
        "href": "/v2/assets/41d09a9a-f771-48a2-9534-50c0c622356d?project_id=b275be5f-10ff-47ee-bfc9-63f1ce5addbf"
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Create a new version.

Create a version of a given notebook.

POST /v2/notebooks/{notebook_guid}/versions

Request

Path Parameters

  • The guid of the notebook.

Response

A notebook version in a project.

Status Code

  • Success. Returned the notebook version definition.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "metadata": {
        "guid": "19d63b6b-81a1-4c05-bad2-36a2957bd6d0",
        "url": "v2/notebooks/a528b427-d1cd-4039-8ddc-04203c2521e2/versions/1a1329e0-fd05-409a-8411-52db106e2142",
        "created_at": 1543681714106
      },
      "entity": {
        "master_notebook_guid": "a528b427-d1cd-4039-8ddc-04203c2521e2",
        "project_id": "0f7c1111-a79d-45b2-9699-d4950e742964",
        "created_by_iui": "IBMid-123456ABCD",
        "file_reference": "myproject-donotdelete-pr-6p65nym92j1bv0/notebooks/GPU_ENVIRONMENT_DEFAULT_GBUXVKHH_version_1543781324804.ipynb",
        "rev_id": 1
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

List the versions of a notebook.

List all versions of a particular notebook.

GET /v2/notebooks/{notebook_guid}/versions

Request

Path Parameters

  • The guid of the notebook.

Response

A list of notebook versions in a project.

Status Code

  • Success. Returned a list of versions of the notebook.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "total_results": 1,
      "resources": [
        {
          "metadata": {
            "guid": "19d63b6b-81a1-4c05-bad2-36a2957bd6d0",
            "url": "v2/notebooks/a528b427-d1cd-4039-8ddc-04203c2521e2/versions/1a1329e0-fd05-409a-8411-52db106e2142",
            "created_at": 1543681714106
          },
          "entity": {
            "master_notebook_guid": "a528b427-d1cd-4039-8ddc-04203c2521e2",
            "project_id": "0f7c1111-a79d-45b2-9699-d4950e742964",
            "created_by_iui": "IBMid-123456ABCD",
            "file_reference": "myproject-donotdelete-pr-6p65nym92j1bv0/notebooks/GPU_ENVIRONMENT_DEFAULT_GBUXVKHH_version_1543781324804.ipynb",
            "rev_id": 1
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Retrieve a notebook version.

Retrieve a particular version of a notebook.

GET /v2/notebooks/{notebook_guid}/versions/{version_guid}

Request

Path Parameters

  • The guid of the notebook.

  • The guid of the version.

Response

A notebook version in a project.

Status Code

  • Success. Returned the version definition.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "metadata": {
        "guid": "19d63b6b-81a1-4c05-bad2-36a2957bd6d0",
        "url": "v2/notebooks/a528b427-d1cd-4039-8ddc-04203c2521e2/versions/1a1329e0-fd05-409a-8411-52db106e2142",
        "created_at": 1543681714106
      },
      "entity": {
        "master_notebook_guid": "a528b427-d1cd-4039-8ddc-04203c2521e2",
        "project_id": "0f7c1111-a79d-45b2-9699-d4950e742964",
        "created_by_iui": "IBMid-123456ABCD",
        "file_reference": "myproject-donotdelete-pr-6p65nym92j1bv0/notebooks/GPU_ENVIRONMENT_DEFAULT_GBUXVKHH_version_1543781324804.ipynb",
        "rev_id": 1
      }
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

Delete a notebook version.

Delete a particular version of a given notebook.

DELETE /v2/notebooks/{notebook_guid}/versions/{version_guid}

Request

Path Parameters

  • The guid of the notebook.

  • The guid of the version.

Response

Status Code

  • Success. The version is deleted.

  • Bad request. One of the fields has invalid format/content.

  • Unauthorized. No/Malformed authentication provided.

  • Forbidden. User is not allowed to perform the target operation.

Example responses
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_type",
          "message": "The `project` field needs to be a uuid v4, but is 12345.",
          "target": {
            "type": "field",
            "name": "project"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "invalid_auth_token",
          "message": "The IAM bearer token is not valid.",
          "target": {
            "type": "header",
            "name": "Authentication"
          }
        }
      ]
    }
  • {
      "trace": "b12692e1-8582-4628-88ca-7a13fefb73e2",
      "errors": [
        {
          "code": "endpoint_access_forbidden",
          "message": "max.mustermann@ibm.com is neither editor/admin of project b275be5f-10ff-47ee-bfc9-63f1ce5addbf nor allowlisted Service ID."
        }
      ]
    }

list all governance types

Lists all governance types. A governance type groups like operations together. For example, the Access governance type groups operations related to access of assets.

GET /v3/enforcement/governance_types

Request

No Request Parameters

This method does not accept any request parameters.

Response

Response for the /v3/enforcement/governance_types API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

retrieve a governanceType

Retrieves detailed information on a governance type. This includes all of the operations defined for the governance type and the allowed and default outcomes of each operation.

GET /v3/enforcement/governance_types/{governance_type_name}

Request

Path Parameters

  • the name of the governance type

Response

Response for the /v3/enforcement/governance_types/{governanceTypeId} API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

list user defined rule predicate terms

List all user defined left hand side terms defined in the policy engine.

GET /v3/enforcement/lhs/udp

Request

No Request Parameters

This method does not accept any request parameters.

Response

Response for the /v3/enforcement/udp API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

create user defined left hand side term

Create a left hand side term to be used in rules defined in the policy engine.

POST /v3/enforcement/lhs/udp

Request

LHS RuleTerm JSON

Response

Response for the /v3/enforcement/udp/{termName} API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

get a user defined left hand side term

Get the user defined left hand side term in the term cache of the policy engine.

GET /v3/enforcement/lhs/udp/{lhsTermId}

Request

Path Parameters

  • ID of the LHS term to get

Response

Response for the /v3/enforcement/udp/{termName} API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

delete a user defined left hand side term

Delete a left hand side term in the term cache of the policy engine. This cache is maintained for performance and is used for evaluating policies. It is refreshed periodically from technical terms maintained in the glossary.

DELETE /v3/enforcement/lhs/udp/{lhsTermId}

Request

Path Parameters

  • ID of the custom LHS to delete

Response

Status Code

  • No Content (OK)

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

retrieve and aggregate policy related metrics

This API retrieves policy enforcement metrics based on query parameters, which include metric type, date range, policy, user, rule, governanceType, outcome, host type, cached, context operation, context location, asset type and asset location. It then sums these metrics according to a specified aggregation type.

GET /v3/enforcement/policy_metrics/analysis/3d

Request

Query Parameters

  • The type of metrics to return

    Allowable values: [enforcements,denials,operational_policies,operational_rules]

  • The type of aggregation to perform on the selected metrics (days, months, years, policies, rules, users, governanceTypes, outcomes)

    Allowable values: [days,months,years,policies,rules,users,outcomes,governance_type,pep_host_types,is_pep_cache,context_operations,context_locations,asset_types,asset_locations]

  • The type of aggregation to perform on the selected metrics (days, months, years, policies, rules, users, governanceTypes, outcomes)

    Allowable values: [days,months,years,policies,rules,users,outcomes,governance_type,pep_host_types,is_pep_cache,context_operations,context_locations,asset_types,asset_locations]

  • ISO 8601 date/time specifying the starting time to return metrics data

  • ISO 8601 date/time specifying the ending time to return metrics data

  • The policy to return metrics of, or all policies if not specified

  • The rule to return metrics of, or all rules if not specified

  • The user to return metrics about, or all users if not specified

  • The governanceType to return metrics about, or all governanceTypes if not specified

    Allowable values: [Access,Classification,Curation,Lifecycle,ResourceControl,DMR,AIGovernance,DLR]

  • The enforcement outcome to return metrics about, or all outcomes if not specified

  • The PEP host type to return metrics about, or all PEP host types if not specified

  • Metrics on decisions retrieved from cache versus from server, or both if not specified

  • The context operation to return metrics about, or all context operations if not specified

  • The context location to return metrics about, or all context locations if not specified

  • The asset type to return metrics about, or all asset types if not specified

  • The asset location to return metrics about, or all asset locations if not specified

  • The order to sort the metrics. The following values are allowed:

    • aggregate, -aggregate -- ascending or descending order by the aggregate
    • count, -count -- ascending or descending order by enforcement count

Response

Response for the /v3/enforcement/policy_metrics API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

retrieve and aggregate policy related metrics

This API retrieves policy enforcement metrics based on query parameters, which include metric type, date range, policy, user, rule, governanceType, outcome, host type, cached, context operation, context location, asset type and asset location. It then sums these metrics according to a specified aggregation type.

GET /v3/enforcement/policy_metrics

Request

Query Parameters

  • The type of metrics to return

    Allowable values: [enforcements,denials,operational_policies,operational_rules]

  • The type of aggregation to perform on the selected metrics (days, months, years, policies, rules, users, governanceTypes, outcomes)

    Allowable values: [days,months,years,policies,rules,users,outcomes,governance_type,pep_host_types,is_pep_cache,context_operations,context_locations,asset_types,asset_locations]

  • ISO 8601 date/time specifying the starting time to return metrics data

  • ISO 8601 date/time specifying the ending time to return metrics data

  • The policy to return metrics of, or all policies if not specified

  • The rule to return metrics of, or all rules if not specified

  • The user to return metrics about, or all users if not specified

  • The governanceType to return metrics about, or all governanceTypes if not specified

    Allowable values: [Access,Classification,Curation,Lifecycle,ResourceControl,DMR,AIGovernance,DLR]

  • The enforcement outcome to return metrics about, or all outcomes if not specified

  • The PEP host type to return metrics about, or all PEP host types if not specified

  • Metrics on decisions retrieved from cache versus from server, or both if not specified

  • The context operation to return metrics about, or all context operations if not specified

  • The context location to return metrics about, or all context locations if not specified

  • The asset type to return metrics about, or all asset types if not specified

  • The asset location to return metrics about, or all asset locations if not specified

  • The order to sort the metrics. The following values are allowed:

    • aggregate, -aggregate -- ascending or descending order by the aggregate
    • count, -count -- ascending or descending order by enforcement count

Response

Response for the /v3/enforcement/policy_metrics API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

list all roles in policy engine.

Lists all roles of the policy engine.

GET /v3/enforcement/roles

Request

No Request Parameters

This method does not accept any request parameters.

Response

Response for the /v3/enforcement/roles API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

create a custom role

Creates a cusotm role. This will include a list of existing permissions to be associated with the role. Maximum length allowed for 'name' parameter: 80 characters, maximum length allowed for 'description' parameter: 1000 characters. Allowed characters for the 'name' parameter: letters from any language, numbers in any script, space, dot, underscore, hyphen. Strings with characters other than these are rejected (only for the name parameter).

POST /v3/enforcement/roles

Request

Role Permission Request json

Response

Response for the POST and PUT /v3/enforcement/roles APIs and GET /enforcement/roles/role_id API

Status Code

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

retrieve a role

Retrieves detailed information on a role given the role's identifier. This includes a list of permissions associated with this role.

GET /v3/enforcement/roles/{role_id}

Request

Path Parameters

  • role ID

Response

Response for the POST and PUT /v3/enforcement/roles APIs and GET /enforcement/roles/role_id API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

update a custom category role

Updates a custom category role. This API is also used to add and remove permissions from the custom category role. The permissions should be passed as an array of string that has permissions ids.Maximum length allowed for 'name' parameter: 80 characters, maximum length allowed for 'description' parameter: 1000 characters. If the parameter 'name' is modified, allowed characters for the 'name' parameter: letters from any language, numbers in any script, space, dot, underscore, hyphen. Strings with characters other than these are rejected (only for the name parameter).

PUT /v3/enforcement/roles/{role_id}

Request

Path Parameters

  • role ID

role json

Response

Response for the POST and PUT /v3/enforcement/roles APIs and GET /enforcement/roles/role_id API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

delete a custom category role

Deletes a cusotm category role.

DELETE /v3/enforcement/roles/{role_id}

Request

Path Parameters

  • role ID

Response

Status Code

  • No Content (OK)

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

list all permissions in policy engine.

Lists all permissions of the policy engine.

GET /v3/enforcement/roles/permissions

Request

No Request Parameters

This method does not accept any request parameters.

Response

Response for the /v3/enforcement/roles/permissions API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Sync a rule

Syncs a rule in DPS with its global search index. If rule is found in DPS, its global search index is updated. If rule is not found in DPS, its global search index is removed.

PUT /v3/enforcement/rules/sync/{rule_id}

Request

Path Parameters

  • Rule ID

Response

Response for the /v3/enforcement/rules/{ruleId} API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

retrieve a rule

Retrieves detailed information on a rule given the rule's identifier.

GET /v3/enforcement/rules/{rule_id}

Request

Path Parameters

  • Rule ID

Response

Response for the /v3/enforcement/rules/{ruleId} API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

update a rule

Updates a rule. Maximum length allowed for 'name' parameter: 80 characters, maximum length allowed for 'description' parameter: 1000 characters. If the parameter 'name' is modified, allowed characters for the 'name' parameter: letters from any language, numbers in any script, space, dot, underscore, hyphen. Strings with characters other than these are rejected (only for the name parameter). The governance_type_id cannot be modified.

PUT /v3/enforcement/rules/{rule_id}

Request

Path Parameters

  • Rule ID

Rule json

Response

Response for the /v3/enforcement/rules/{ruleId} API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

delete a rule

Deletes a rule. A rule can only be deleted if it is not currently associated with any policy (in any state).

DELETE /v3/enforcement/rules/{rule_id}

Request

Path Parameters

  • Rule ID

Response

Status Code

  • No Content (OK)

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

list all rules

Lists all defined rules. This includes all rules associated with policies and rules not associated with any policy. When more than one filter criteria is specified, the resulting collection satisfies all the criteria.

GET /v3/enforcement/rules

Request

Query Parameters

  • Specify name of the rule to search for or use filter of the form 'contains:xx' to search for rules containing provided phrase as part of name or use filter of the form 'exact:xx' to search for rules with exact name.

  • Specify description of the rule to search for or use filter of the form 'contains:xx' to search for rules containing provided phrase as part of description.

  • If specified, only rules with a matching trigger expression will be returned.

  • If specified, only rules with a matching action will be returned.

  • If specified, only rules in the matching state will be returned.

    Allowable values: [draft,active,archived]

  • If speficied, only rules with the matching governance type/types will be returned.

  • The order to sort the rules. The following values are allowed:

    • name, -name -- ascending or descending order by the name
    • modified_date, -modified_date -- ascending or descending order by modified date

    Allowable values: [name,-name,modified_date,-modified_date]

  • The maximum number of Rules to return. The default value is 50.

    Default: 50

  • The index of the first matching Rule to include in the result. The default value is 0.

    Default: 0

Response

Response for the /v3/enforcement/rules API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

create a rule

Creates a rule. A rule has two key properties:

  1. a trigger defining when the rule should be enforced, and
  2. an action describing what operations to perform or outcome to enforce.

Trigger

A trigger is a boolean expression represented using nested arrays. The following describes the syntax:

 Expression: 
 [ -conditions- ] 
 
 Conditions: 
 -predicate- 
 "NOT", -predicate- 
 -predicate-, "AND"|"OR", -conditions- 
 "NOT", -predicate-, "AND"|"OR", -conditions- 
 
 Predicate: 
 [ "$-term-", "EXISTS" ] 
 [ "$-term-", "EQUALS"|"LESS_THAN"|"GREATER_THAN"|"CONTAINS", "#-literal-"|"$-term-" ] 
 -expression- 

where:

  • -term- is a technical term defined in the term glossary.
  • -literal- is a literal. For numerics a string representation of the number should be specified. For times, milliseconds are used (from Unix epoch). For boolean, #true and #false are used.

The definition of the operators in a predicate:

  • EXISTS -- means that the term has a value of some kind.
  • EQUALS -- evaluates to true if the left and right sides are equal.
  • LESS_THAN -- evaluates to true if the left is less in numeric value than the right.
  • GREATER_THAN -- evaluates to true if the left is greater in numeric value than the right.
  • CONTAINS -- is meant to test an array term (such as Asset.Tags) with a single value. It evaluates to true if the value on the right side equals one of the values on the array on the left side.
    However it will also supports a single value on the left, in which case it behaves just like EQUALS -- regular expressions or wildcards are not supported.

For all of the operators (except EXISTS), if the right hand side evaluates to an array, each value of the array is compared to the left side, according to the operator definition, and if any comparison is true then the result of the evaluation is true.

Examples:

 [["$Asset.Type", "EQUALS", "#Project"]] 
 ["NOT", ["$Asset.Tags", "CONTAINS", "#sensitive"], "AND", ["NOT", "$Asset.Tags", "CONTAINS", "#confidential"]] 
 [["$User.Name", "EQUALS", "$Asset.Owner"]] 

Action

The action is an name with optional parameters or subaction describing an operation to perform. For simple actions like Deny, only the action name will be provided. For actions such as Transform, a subaction with parameters describing the type of transform is also provided. The allowed actions depends on the governance type.

Examples:

 {"name": "Deny"} 
 {"name": "Transform", "subaction": {"name": "anonymizeColumns", "parameters": [{"name": "column_name", "value": "CCN"}]}} 

The maximum length allowed for 'name' parameter is 80 characters, maximum length allowed for 'description' parameter: 1000 characters. Allowed characters for the 'name' parameter: letters from any language, numbers in any script, space, dot, underscore, hyphen. Strings with characters other than these are rejected (only for the name parameter).

POST /v3/enforcement/rules

Request

Rule json

Response

Response for the /v3/enforcement/rules/{ruleId} API

Status Code

  • Merged with an existing 'ResourceControl' rule.

  • Created

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

export all rules

Export all defined rules as JSON.This includes all rules associated with policies and rules not associated with any policy.

GET /v3/enforcement/rules/export

Request

Query Parameters

  • The maximum number of Rules to return. The default value is 50.

    Default: 50

  • The index of the first matching Rule to include in the result. The default value is 0.

    Default: 0

  • For export between two different systems. If specified as true, the ids in rules will be converted to names and added as export_components in the exported file

    Default: false

Response

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

retrieve terms used in a rule

Retrieves the names of all terms used in a rule.

GET /v3/enforcement/rules/{rule_id}/terms

Request

Path Parameters

  • Rule ID

Response

Response for the /v3/policy_rules/{ruleId}/terms API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

import rules

Imports rules using content recieved as application/octet-stream media type. Assumes content to be in UTF-8 charset. Expects "rules" JSON array contained in a JSON objects. Ignores other fields. Rule GUID is prerserved. Retruns JSON array containing GUIDs of newly imported rules.

POST /v3/enforcement/rules/import

Request

Query Parameters

  • For import between two different systems. If specified as true, the names in export_components of the import file will be matched and converted to the target system's ids.

    Default: false

  • For external imports, if specified as true, the whole import will fail if there are any rules that fail to match ids in the target system. If specified as false, an analysis report will be returned.

    Default: false

The input stream for reading imported terms

Response

Response for the /v3/enforcement/rules/export API and /v3/enforcement/rules/import

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Content cannot be more than 1MB

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

retrieve tenant settings

Retrieves governance information and settings about a particular tenant given the tenant identifier.

GET /v3/enforcement/settings

Request

No Request Parameters

This method does not accept any request parameters.

Response

Response for the /v3/enforcement/settings/{tenantId} API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

update tenant settings

Updates governance information and settings for the given tenant.

PUT /v3/enforcement/settings

Request

governedTenant json

Response

Response for the /v3/enforcement/settings/{tenantId} API

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

List projects

Returns a list of projects filtered by the specified query parameters. By default, only projects that the authenticated user is a member of are returned. In IBM Cloud Pak for Data (CPD), all projects in the cluster are returned (regardless of project membership) if the authenticated user is assigned either the "Manage projects" or "Monitor project workloads" CPD permission. In IBM Cloud Pak for Data (CPDaaS), all projects associated with an IBM Cloud Account are returned (regardless of project membership) if the authenticated user is added to the IBM Cloud Account and assigned the IAM "Manager" role.

GET /v2/projects

Request

Custom Headers

  • A CPDaaS specific flag indicating whether to fetch IAM permissions for the authenticated user as part of the request. Used to determine superuser access via the "manage_project" permission.

    Default: false

Query Parameters

  • The BSS Account ID.

    Possible values: Value must match regular expression ^[0-9a-f]{32}$

    Example: 0821fa9f9ebcc7b7c9a0d6e9bfa72aa4

  • The project type.

    Allowable values: [cpd,wx,wca]

  • A project member to use to filter the query results.

    Possible values: 1 ≤ length ≤ 100

    Example: zapp.brannigan@ibm.com

  • A list of comma-separated project roles to use to filter the query results. Must be used in conjunction with the "member" query parameter.

    Allowable values: [admin,editor,viewer]

    Default: []

  • A full or partial project name to use to filter the query results. This query parameter must be used in conjunction with the 'bss_account_id' query parameter. Use the 'match' query parameter to control they type of text matching performed. Project names are not unique and should not be used in place of project IDs.

    Possible values: 1 ≤ length ≤ 100

    Example: Sentiment Analysis

  • The type of text matching to perform. This query parameter must be used in conjunction with the 'name' query parameter. The 'exact' value will match projects if the specified text matches the exact project name. The 'keyword' value will match projects if the specified text matches any keyword parsed from the project name.

    Allowable values: [exact,keyword]

    Default: exact

  • A list of comma-separated project IDs to use to filter the query results. This query parameter only works in conjunction with the 'member' query parameter.

    Possible values: Value must match regular expression ^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$

  • A list of comma-separated project metadata sections to include in the query results.

    Allowable values: [name,fields,members,settings,everything,nothing]

    Default: ["fields"]

  • The limit used to specify the maximum number of projects returned in the query results. Used for pagination in conjunction with the "bookmark" query parameter.

    Possible values: 0 ≤ value ≤ 100

    Default: 10

  • The bookmark is an opaque key returned in the query results set that serves as a reference to the next page of query results. Specify the bookmark on subsquent query requests to retrieve the next page of query results. Used for pagination in conjunction with the "limit" query parameter.

    Possible values: Value must match regular expression ^[0-9A-Za-z_-]{1,1000}$

    Example: g1AAAAE6eJzLYWBgYMlgTmHQTElKzi9KdUhJMtdLytVNTtYtLdYtzi8tydA1MNVLzskvTUnMK9HLSy3JAWphSnIAkkn-____z8pgcrP_afo-ASiQyIhqlAlRRoF0JuXDjPrBf0cBZBQzGa7KYwGSDAeAFNC082DjvnclHgAZx4RqnAXxxl2AGHcfxaNMWQBvIGVg

  • Deprecated. Use of this query parameter exhibits poor performance characteristics. Use the more efficient "bookmark" query parameter instead. The offset to use to define the starting index of projects to return in the query results. Used for pagination in conjunction with the "limit" query parameter.

    Possible values: value ≥ 0

    Default: 0

Response

A list of projects.

Status Code

  • OK

  • Unauthorized

  • Forbidden

  • Too Many Requests

Example responses
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Permission Denied: Authenticated user is not a member of the project: zapp.brannigan@ibm.com.",
      "message": "The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "429",
      "error": "Too Many Requests",
      "reason": "The number of requests has exceeded the rate limit. Requests: 61. Limit: 60. Category: query. Subject: zapp.brannigan@ibm.com (IBMid-55000353XF).",
      "message": "The client has sent too many requests in a given amount of time."
    }

Get project total

Returns the total number of projects associated with the authenticated user in a BSS account. In IBM Cloud Pak for Data (CPDaaS), specifying the BSS account ID is required. In IBM Cloud Pak for Data (CPD), specifying the BSS account ID is optional. Default is "999". The maximum total number of projects returned will be capped at 2,000 projects (for database performance reasons).

GET /v2/projects/total

Request

Custom Headers

  • A CPDaaS specific flag indicating whether to fetch IAM permissions for the authenticated user as part of the request. Used to determine superuser access via the "manage_project" permission.

    Default: false

Query Parameters

  • The BSS Account ID.

    Possible values: Value must match regular expression ^[0-9a-f]{32}$

    Example: 0821fa9f9ebcc7b7c9a0d6e9bfa72aa4

  • The project type.

    Allowable values: [cpd,wx,wca]

  • A project member to use to filter the query results.

    Possible values: 1 ≤ length ≤ 100

    Example: zapp.brannigan@ibm.com

Response

The project total.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Too Many Requests

Example responses
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Entity body.name contains invalid characters.",
      "message": "The server cannot or will not process the request due to an apparent client error."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Permission Denied: Authenticated user is not a member of the project: zapp.brannigan@ibm.com.",
      "message": "The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "429",
      "error": "Too Many Requests",
      "reason": "The number of requests has exceeded the rate limit. Requests: 601. Limit: 600. Category: read. Subject: zapp.brannigan@ibm.com (IBMid-55000353XF).",
      "message": "The client has sent too many requests in a given amount of time."
    }

Get project

Returns the metadata for a target project specified by ID.

GET /v2/projects/{project_id}

Request

Path Parameters

  • The project ID.

    Possible values: Value must match regular expression ^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$

    Example: 46a19524-bfbf-4810-a1f0-b131f12bc773

Query Parameters

  • A list of comma-separated project metadata sections to include in the query results.

    Allowable values: [name,fields,members,settings,integrations,storage,credentials,everything,nothing]

    Default: ["fields"]

Response

A project object.

Status Code

  • OK

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Too Many Requests

Example responses
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Entity body.name contains invalid characters.",
      "message": "The server cannot or will not process the request due to an apparent client error."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Permission Denied: Authenticated user is not a member of the project: zapp.brannigan@ibm.com.",
      "message": "The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "404",
      "error": "Not Found",
      "reason": "Failed to retrieve project: 47f11f98-1fc2-4478-ba38-d037094e761f.",
      "message": "The requested resource could not be found."
    }
  • {
      "code": "429",
      "error": "Too Many Requests",
      "reason": "The number of requests has exceeded the rate limit. Requests: 601. Limit: 600. Category: read. Subject: zapp.brannigan@ibm.com (IBMid-55000353XF).",
      "message": "The client has sent too many requests in a given amount of time."
    }

Update project

Partially updates the project with only a subset of properties.

PATCH /v2/projects/{project_id}

Request

Path Parameters

  • The project ID.

    Possible values: Value must match regular expression ^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$

    Example: 46a19524-bfbf-4810-a1f0-b131f12bc773

The request body for updating an existing project.

Response

A project object.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Too Many Requests

Example responses
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Entity body.name contains invalid characters.",
      "message": "The server cannot or will not process the request due to an apparent client error."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Permission Denied: Authenticated user is not a member of the project: zapp.brannigan@ibm.com.",
      "message": "The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "404",
      "error": "Not Found",
      "reason": "Failed to retrieve project: 47f11f98-1fc2-4478-ba38-d037094e761f.",
      "message": "The requested resource could not be found."
    }
  • {
      "code": "429",
      "error": "Too Many Requests",
      "reason": "The number of requests has exceeded the rate limit. Requests: 451. Limit: 450. Category: write. Subject: zapp.brannigan@ibm.com (IBMid-55000353XF).",
      "message": "The client has sent too many requests in a given amount of time."
    }

List members

Returns the list of project members.

GET /v2/projects/{project_id}/members

Request

Path Parameters

  • The project ID.

    Possible values: Value must match regular expression ^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$

    Example: 46a19524-bfbf-4810-a1f0-b131f12bc773

Query Parameters

  • A list of comma-separated project roles to use to filter the query results.

    Allowable values: [admin,editor,viewer]

    Default: []

  • A list of comma-separated usernames corresponding to project members that are used to filter the query results.

    Possible values: 1 ≤ length ≤ 100

Response

A list of project members.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Too Many Requests

Example responses
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Entity body.name contains invalid characters.",
      "message": "The server cannot or will not process the request due to an apparent client error."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Permission Denied: Authenticated user is not a member of the project: zapp.brannigan@ibm.com.",
      "message": "The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "404",
      "error": "Not Found",
      "reason": "Failed to retrieve project: 47f11f98-1fc2-4478-ba38-d037094e761f.",
      "message": "The requested resource could not be found."
    }
  • {
      "code": "429",
      "error": "Too Many Requests",
      "reason": "The number of requests has exceeded the rate limit. Requests: 601. Limit: 600. Category: read. Subject: zapp.brannigan@ibm.com (IBMid-55000353XF).",
      "message": "The client has sent too many requests in a given amount of time."
    }

Create members

Adds new project members with the provided roles. A project must always have at least one admin.

POST /v2/projects/{project_id}/members

Request

Custom Headers

  • A CPDaaS specific flag indicating whether to fetch IAM permissions for the authenticated user as part of the request. Used to determine superuser access via the "manage_project" permission.

    Default: false

Path Parameters

  • The project ID.

    Possible values: Value must match regular expression ^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$

    Example: 46a19524-bfbf-4810-a1f0-b131f12bc773

A list of project members.

Response

A list of project members.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Too Many Requests

Example responses
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Entity body.name contains invalid characters.",
      "message": "The server cannot or will not process the request due to an apparent client error."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Permission Denied: Authenticated user is not a member of the project: zapp.brannigan@ibm.com.",
      "message": "The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "404",
      "error": "Not Found",
      "reason": "Failed to retrieve project: 47f11f98-1fc2-4478-ba38-d037094e761f.",
      "message": "The requested resource could not be found."
    }
  • {
      "code": "429",
      "error": "Too Many Requests",
      "reason": "The number of requests has exceeded the rate limit. Requests: 451. Limit: 450. Category: write. Subject: zapp.brannigan@ibm.com (IBMid-55000353XF).",
      "message": "The client has sent too many requests in a given amount of time."
    }

Delete members

Deletes members from the project that match the provided usernames.

DELETE /v2/projects/{project_id}/members

Request

Path Parameters

  • The project ID.

    Possible values: Value must match regular expression ^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$

    Example: 46a19524-bfbf-4810-a1f0-b131f12bc773

Query Parameters

  • A list of comma-separated usernames corresponding to project members to remove from the project.

    Possible values: 1 ≤ length ≤ 100

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Too Many Requests

Example responses
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Entity body.name contains invalid characters.",
      "message": "The server cannot or will not process the request due to an apparent client error."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Permission Denied: Authenticated user is not a member of the project: zapp.brannigan@ibm.com.",
      "message": "The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "404",
      "error": "Not Found",
      "reason": "Failed to retrieve project: 47f11f98-1fc2-4478-ba38-d037094e761f.",
      "message": "The requested resource could not be found."
    }
  • {
      "code": "429",
      "error": "Too Many Requests",
      "reason": "The number of requests has exceeded the rate limit. Requests: 451. Limit: 450. Category: write. Subject: zapp.brannigan@ibm.com (IBMid-55000353XF).",
      "message": "The client has sent too many requests in a given amount of time."
    }

Update members

Change project member roles in a batch.

PATCH /v2/projects/{project_id}/members

Request

Custom Headers

  • A CPDaaS specific flag indicating whether to fetch IAM permissions for the authenticated user as part of the request. Used to determine superuser access via the "manage_project" permission.

    Default: false

Path Parameters

  • The project ID.

    Possible values: Value must match regular expression ^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$

    Example: 46a19524-bfbf-4810-a1f0-b131f12bc773

The request body for updating project members.

Response

A list of project members.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Too Many Requests

Example responses
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Entity body.name contains invalid characters.",
      "message": "The server cannot or will not process the request due to an apparent client error."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Permission Denied: Authenticated user is not a member of the project: zapp.brannigan@ibm.com.",
      "message": "The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "404",
      "error": "Not Found",
      "reason": "Failed to retrieve project: 47f11f98-1fc2-4478-ba38-d037094e761f.",
      "message": "The requested resource could not be found."
    }
  • {
      "code": "429",
      "error": "Too Many Requests",
      "reason": "The number of requests has exceeded the rate limit. Requests: 451. Limit: 450. Category: write. Subject: zapp.brannigan@ibm.com (IBMid-55000353XF).",
      "message": "The client has sent too many requests in a given amount of time."
    }

Get member

Returns the project member with the specified 'user_name' if any.

GET /v2/projects/{project_id}/members/{user_name}

Request

Path Parameters

  • The project ID.

    Possible values: Value must match regular expression ^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$

    Example: 46a19524-bfbf-4810-a1f0-b131f12bc773

  • The username of the project member.

    Possible values: 1 ≤ length ≤ 100

    Example: zapp.brannigan@ibm.com

Query Parameters

  • A flag indicating whether to return a derived project member based on resolving user groups.

    Default: true

Response

A project member.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Too Many Requests

Example responses
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Entity body.name contains invalid characters.",
      "message": "The server cannot or will not process the request due to an apparent client error."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Permission Denied: Authenticated user is not a member of the project: zapp.brannigan@ibm.com.",
      "message": "The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "404",
      "error": "Not Found",
      "reason": "Failed to retrieve project: 47f11f98-1fc2-4478-ba38-d037094e761f.",
      "message": "The requested resource could not be found."
    }
  • {
      "code": "429",
      "error": "Too Many Requests",
      "reason": "The number of requests has exceeded the rate limit. Requests: 601. Limit: 600. Category: read. Subject: zapp.brannigan@ibm.com (IBMid-55000353XF).",
      "message": "The client has sent too many requests in a given amount of time."
    }

Delete member

Deletes a member with a given user name from a project with the given username.

DELETE /v2/projects/{project_id}/members/{user_name}

Request

Path Parameters

  • The project ID.

    Possible values: Value must match regular expression ^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$

    Example: 46a19524-bfbf-4810-a1f0-b131f12bc773

  • The username of the project member.

    Possible values: 1 ≤ length ≤ 100

    Example: zapp.brannigan@ibm.com

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Too Many Requests

Example responses
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Entity body.name contains invalid characters.",
      "message": "The server cannot or will not process the request due to an apparent client error."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Permission Denied: Authenticated user is not a member of the project: zapp.brannigan@ibm.com.",
      "message": "The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "404",
      "error": "Not Found",
      "reason": "Failed to retrieve project: 47f11f98-1fc2-4478-ba38-d037094e761f.",
      "message": "The requested resource could not be found."
    }
  • {
      "code": "429",
      "error": "Too Many Requests",
      "reason": "The number of requests has exceeded the rate limit. Requests: 451. Limit: 450. Category: write. Subject: zapp.brannigan@ibm.com (IBMid-55000353XF).",
      "message": "The client has sent too many requests in a given amount of time."
    }

Get folders settings

Get folders settings.

GET /v2/projects/{project_id}/settings/folders

Request

Path Parameters

  • The project ID.

    Possible values: Value must match regular expression ^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$

    Example: 46a19524-bfbf-4810-a1f0-b131f12bc773

Response

The folders settings group.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Too Many Requests

Example responses
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Entity body.name contains invalid characters.",
      "message": "The server cannot or will not process the request due to an apparent client error."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Permission Denied: Authenticated user is not a member of the project: zapp.brannigan@ibm.com.",
      "message": "The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "404",
      "error": "Not Found",
      "reason": "Failed to retrieve project: 47f11f98-1fc2-4478-ba38-d037094e761f.",
      "message": "The requested resource could not be found."
    }
  • {
      "code": "429",
      "error": "Too Many Requests",
      "reason": "The number of requests has exceeded the rate limit. Requests: 601. Limit: 600. Category: read. Subject: zapp.brannigan@ibm.com (IBMid-55000353XF).",
      "message": "The client has sent too many requests in a given amount of time."
    }

Update folders settings

Update folders settings.

PUT /v2/projects/{project_id}/settings/folders

Request

Path Parameters

  • The project ID.

    Possible values: Value must match regular expression ^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$

    Example: 46a19524-bfbf-4810-a1f0-b131f12bc773

The folders settings group.

Response

The folders settings group.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Too Many Requests

Example responses
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Entity body.name contains invalid characters.",
      "message": "The server cannot or will not process the request due to an apparent client error."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Permission Denied: Authenticated user is not a member of the project: zapp.brannigan@ibm.com.",
      "message": "The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "404",
      "error": "Not Found",
      "reason": "Failed to retrieve project: 47f11f98-1fc2-4478-ba38-d037094e761f.",
      "message": "The requested resource could not be found."
    }
  • {
      "code": "429",
      "error": "Too Many Requests",
      "reason": "The number of requests has exceeded the rate limit. Requests: 451. Limit: 450. Category: write. Subject: zapp.brannigan@ibm.com (IBMid-55000353XF).",
      "message": "The client has sent too many requests in a given amount of time."
    }

Create a new space

Creates a new space to scope other assets. Authorized user must have the following roles (see https://cloud.ibm.com/docs/cloud-object-storage?topic=cloud-object-storage-iams)

  • Platform management role: Administrator
  • Service access role: Manager

On Public Cloud user is required to provide Cloud Object Storage instance details in the 'storage' property. On private CPD installations the default storage is used instead.

POST /v2/spaces

Request

Input payload for the space.

Response

Status Code

  • Accepted

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieve the spaces

Retrieves the space list.

GET /v2/spaces

Request

Query Parameters

  • Token representing first resource.

  • The number of resources returned. Default value is 100. Max value is 200.

  • Include details about total number of resources. This flag is not supported on CPD 3.0.1.

  • Comma-separated list of ids to be returned. This flag is not supported on CPD 3.0.1.

  • A list of comma-separated, user-defined tags to use to filter the query results.

  • A list of comma-separated space sections to include in the query results. Example: '?include=members'.

    Available fields:

    • members (returns up to 100 members)
    • nothing (does not return space entity and metadata)
  • Filters the result list to only include spaces where the user with a matching user id is a member.

  • Must be used in conjunction with the member query parameter. Filters the result set to include only spaces where the specified member has one of the roles specified.

    Values:

    • admin
    • editor
    • viewer
  • Filtering by bss_account_id is allowed only for accredited services.

  • Filters the result list to only include space with specified name.

    Example: name=QA

  • Filters the result list to only include spaces which name contains specified case-insensitive substring

    Example: sub_name=substring

  • Filters the result list to only include spaces with specified compute.crn.

    Example: compute.crn=crn:v1:staging:public:pm-20-devops:us-south:a/eb484b0080c04ee0b0889afd679273bd:a8f87602-b71a-4085-95d2-3027873352b3::

  • Filters the result list to only include space with specified type

    Example: type=cpd

Response

Information for paging when queerying resources.

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieve the space

Retrieves the space with the specified identifier.

GET /v2/spaces/{space_id}

Request

Path Parameters

  • The space identification.

Query Parameters

  • A list of comma-separated space sections to include in the query results. Example: '?include=members'.

    Available fields:

    • members (returns up to 100 members)
    • nothing (does not return space entity and metadata)

Response

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Delete the space

Deletes the space with the specified identifier.

DELETE /v2/spaces/{space_id}

Request

Path Parameters

  • The space identification.

Response

Status Code

  • Accepted.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update the space

Partially update this space. Allowed paths are:

  • /name
  • /description
  • /compute
  • /stage/name
  • /type
PATCH /v2/spaces/{space_id}

Request

Path Parameters

  • The space identification.

Input payload for the space.

Response

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieve the space members

Retrieves the member list for the specified space.

GET /v2/spaces/{space_id}/members

Request

Path Parameters

  • The space identification.

Query Parameters

  • Token representing first resource.

  • The number of resources returned. Default value is 100. Max value is 200.

  • Include details about total number of resources. This flag is not supported on CPD 3.0.1.

  • Find the member by 'type'.

  • Find the member by 'role'.

  • Find the member by 'state'.

Response

Information for paging when queerying resources.

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Add a member to space

Adds a member to the specified space.

POST /v2/spaces/{space_id}/members

Request

Path Parameters

  • The space identification.

Member information.

Response

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieve the space member information

Retrieves the member information for the member and space with the specified identifiers.

GET /v2/spaces/{space_id}/members/{member_id}

Request

Path Parameters

  • The space identification.

  • The member identification.

Response

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Remove the space member

Removes the specified member from the space.

DELETE /v2/spaces/{space_id}/members/{member_id}

Request

Path Parameters

  • The space identification.

  • The member identification.

Response

Status Code

  • Deleted.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Update the space member

Partially update the member selected with the specified identifier. Allowed paths are:

  • /role
  • /state
PATCH /v2/spaces/{space_id}/members/{member_id}

Request

Path Parameters

  • The space identification.

  • The member identification.

The json patch.

Response

Status Code

  • Partially updated a member.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieve the asset exports

Retrieves the asset export list for the specified space, project, or catalog.

GET /v2/asset_exports

Request

Query Parameters

  • Return resources pertaining to this space. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 63dc4cf1-252f-424b-b52d-5cdd9814987f

  • Return resources pertaining to this project. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

  • This parameter is only supported on CPD 3.5. Return resources pertaining to this catalog. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

  • Token representing first resource.

  • The number of resources returned. Default value is 100. Max value is 200.

Response

Information for paging when queerying resources.

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Start the asset export process

Starts the asset export process for the specified space, project, or catalog. On CPD 3.0.1 assets export is supported only in the context of a space.

POST /v2/asset_exports

Request

Query Parameters

  • Return resources pertaining to this space. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 63dc4cf1-252f-424b-b52d-5cdd9814987f

  • Return resources pertaining to this project. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

  • This parameter is only supported on CPD 3.5. Return resources pertaining to this catalog. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

Export information.

Response

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Cancel the asset export process

Cancels the asset export process with the specified identifier.

DELETE /v2/asset_exports/{export_id}

Request

Path Parameters

  • The export identification.

Query Parameters

  • Return resources pertaining to this space. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 63dc4cf1-252f-424b-b52d-5cdd9814987f

  • Return resources pertaining to this project. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

  • This parameter is only supported on CPD 3.5. Return resources pertaining to this catalog. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

  • Default is false.

    Default: false

Response

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieve the asset export

Retrieves the asset export with the specified identifier.

GET /v2/asset_exports/{export_id}

Request

Path Parameters

  • The export identification.

Query Parameters

  • Return resources pertaining to this space. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 63dc4cf1-252f-424b-b52d-5cdd9814987f

  • Return resources pertaining to this project. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

  • This parameter is only supported on CPD 3.5. Return resources pertaining to this catalog. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

Response

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Download the asset export content

Downloads the content for the asset export process with the specified identifier.

GET /v2/asset_exports/{export_id}/content

Request

Path Parameters

  • The export identification.

Query Parameters

  • Return resources pertaining to this space. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 63dc4cf1-252f-424b-b52d-5cdd9814987f

  • Return resources pertaining to this project. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

  • This parameter is only supported on CPD 3.5. Return resources pertaining to this catalog. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

Response

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieve the asset imports

Retrieves the asset import list for the specified space, project, or catalog.

GET /v2/asset_imports

Request

Query Parameters

  • Return resources pertaining to this space. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 63dc4cf1-252f-424b-b52d-5cdd9814987f

  • Return resources pertaining to this project. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

  • This parameter is only supported on CPD 3.5. Return resources pertaining to this catalog. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

  • Token representing first resource.

  • The number of resources returned. Default value is 100. Max value is 200.

Response

Information for paging when queerying resources.

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Start the asset import process

Starts the asset import process for the specified space, project, or catalog. On CPD 3.0.1 assets import is supported only in the context of a space.

POST /v2/asset_imports

Request

Custom Headers

  • Allowable values: [multipart/form-data,application/zip]

Query Parameters

  • Return resources pertaining to this space. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 63dc4cf1-252f-424b-b52d-5cdd9814987f

  • Return resources pertaining to this project. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

  • This parameter is only supported on CPD 3.5. Return resources pertaining to this catalog. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

Form Parameters

  • Archive with assets to be imported.

  • Encryption key used to decrypt the sensitive data during import.

  • Import format type.

    Allowable values: [json,csv]

    Default: json

Response

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Cancel the asset import process

Cancels the asset import process with the specified identifier.

DELETE /v2/asset_imports/{import_id}

Request

Path Parameters

  • The import identification.

Query Parameters

  • Return resources pertaining to this space. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 63dc4cf1-252f-424b-b52d-5cdd9814987f

  • Return resources pertaining to this project. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

  • This parameter is only supported on CPD 3.5. Return resources pertaining to this catalog. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

  • Default is false.

    Default: false

Response

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Retrieve the asset import

Retrieves the asset import with the specified identifier.

GET /v2/asset_imports/{import_id}

Request

Path Parameters

  • The import identification.

Query Parameters

  • Return resources pertaining to this space. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 63dc4cf1-252f-424b-b52d-5cdd9814987f

  • Return resources pertaining to this project. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

  • This parameter is only supported on CPD 3.5. Return resources pertaining to this catalog. Either 'space_id', 'project_id', 'catalog_id' query parameter has to be given and is mandatory.

    Example: 1dd2aaec-781a-4712-a7ff-ae1862cf7a84

Response

Status Code

  • OK.

  • Bad request

  • Unauthorized

  • Forbidden, an authentication error including trying to access a forbidden space.

  • Resource not found

  • Internal Server Error

No Sample Response

This method does not specify any sample responses.

Create project as a transaction

Creates a new project with the provided parameters, including all the storage and credentials in a single transaction. This endpoint will create a new COS bucket using generated unique name, all credentials, asset container and call all the required atomic APIs to fully configure a new project. Attempts to use the duplicate project names will result in an error. NOTE: when creating projects programmatically, always use this endpoint, not /v2/projects.


This endpoint can also be used to create a project from an exported Watson Studio .zip file. In this case, a new transaction is initiated to create assets under the project. A Transaction ID along with a URL is returned as a response of this API. As this transaction can take time, you can view the current status of the transaction using the returned URL.
NOTE: This feature is only available in the private cloud.

POST /transactional/v2/projects

Request

Custom Headers

  • Allowable values: [application/json,multipart/form-data]

Query Parameters

  • If enabled, the transaction fails if the project name is not unique.

    Default: true

Project metadata required to create a project.

Response

Description of create transactional project API response body.

Status Code

  • Created

  • Accepted

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

Example responses
  • {
      "location": "/v2/projects/b2549f22-7565-4193-9434-9b77e15757cc"
    }
  • {
      "location": "/v2/projects/b2549f22-7565-4193-9434-9b77e15757cc",
      "transaction_detail": {
        "id": "dcff12a9-3f9e-4d10-b4c4-f121f681d81b",
        "links": {
          "self": "/transactional/v2/projects/b2549f22-7565-4193-9434-9b77e15757cc/transactions/dcff12a9-3f9e-4d10-b4c4-f121f681d81b"
        }
      }
    }
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Error fetching projects. Status code: 400",
      "message": "The server cannot or will not process the request due to an apparent client error (e.g. malformed request syntax).",
      "description": "[400] Bad Request: Error fetching projects. Status code: 400. The server cannot or will not process the request due to an apparent client error (e.g. malformed request syntax)."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed.",
      "description": "[401] Unauthorized: Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Invalid bearer token: Access token is invalid.",
      "message": "The target operation is strictly forbidden due to schema constraints.",
      "description": "[403] Forbidden: Invalid bearer token: Access token is invalid. The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "404",
      "error": "Not Found",
      "reason": "Transaction 09f5e19b-5a30-428d-95f4-ff93590f3c071 is not associated with project 522d3ffe-0787-4bee-a616-dc12a19c9a76",
      "message": "Resource requested by the client was not found.",
      "description": "[404] Not Found: Transaction 09f5e19b-5a30-428d-95f4-ff93590f3c071 is not associated with project 522d3ffe-0787-4bee-a616-dc12a19c9a76. Resource requested by the client was not found."
    }
  • {
      "code": "500",
      "error": "Internal Server Error",
      "reason": "Error creating project: 522d3ffe-0787-4bee-a616-dc12a19c9a76",
      "message": "The API encountered an unexpected condition which prevented it from fulfilling the request.",
      "description": "[500] Internal Server Error: Error creating project: 522d3ffe-0787-4bee-a616-dc12a19c9a76."
    }

Delete project as a transaction

Deletes a project with a given ID, deletes COS bucket and all the files in it, all credentials and asset container in the order reverse from the project creation transaction. When deleting projects programmatically, always use this endpoint, not /v2/projects/{project_id}.

DELETE /transactional/v2/projects/{project_id}

Request

Path Parameters

  • The ID of the project to be deleted.

    Example: 6ee2c24f-d0a9-4e30-b0fc-5ae36a66c1a8

Response

Status Code

  • No Content

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

Example responses
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Error fetching projects. Status code: 400",
      "message": "The server cannot or will not process the request due to an apparent client error (e.g. malformed request syntax).",
      "description": "[400] Bad Request: Error fetching projects. Status code: 400. The server cannot or will not process the request due to an apparent client error (e.g. malformed request syntax)."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed.",
      "description": "[401] Unauthorized: Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Invalid bearer token: Access token is invalid.",
      "message": "The target operation is strictly forbidden due to schema constraints.",
      "description": "[403] Forbidden: Invalid bearer token: Access token is invalid. The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "404",
      "error": "Not Found",
      "reason": "Transaction 09f5e19b-5a30-428d-95f4-ff93590f3c071 is not associated with project 522d3ffe-0787-4bee-a616-dc12a19c9a76",
      "message": "Resource requested by the client was not found.",
      "description": "[404] Not Found: Transaction 09f5e19b-5a30-428d-95f4-ff93590f3c071 is not associated with project 522d3ffe-0787-4bee-a616-dc12a19c9a76. Resource requested by the client was not found."
    }
  • {
      "code": "500",
      "error": "Internal Server Error",
      "reason": "Error creating project: 522d3ffe-0787-4bee-a616-dc12a19c9a76",
      "message": "The API encountered an unexpected condition which prevented it from fulfilling the request.",
      "description": "[500] Internal Server Error: Error creating project: 522d3ffe-0787-4bee-a616-dc12a19c9a76."
    }

Get status of import transaction

Status of import transaction created using create project as a transaction API

GET /transactional/v2/projects/{project_id}/transactions/{transaction_id}

Request

Path Parameters

  • The ID of the project on which transaction was created.

    Example: 6ee2c24f-d0a9-4e30-b0fc-5ae36a66c1a8

  • The transaction ID provided by create project as a transaction endpoint.

    Example: dcff12a9-3f9e-4d10-b4c4-f121f681d81b

Response

Description of import transactional status API response.

Status Code

  • OK

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Internal Server Error

Example responses
  • {
      "code": "400",
      "error": "Bad Request",
      "reason": "Error fetching projects. Status code: 400",
      "message": "The server cannot or will not process the request due to an apparent client error (e.g. malformed request syntax).",
      "description": "[400] Bad Request: Error fetching projects. Status code: 400. The server cannot or will not process the request due to an apparent client error (e.g. malformed request syntax)."
    }
  • {
      "code": "401",
      "error": "Unauthorized",
      "reason": "Unable to verify token via IAM Auth server.",
      "message": "Authentication failed.",
      "description": "[401] Unauthorized: Authentication failed."
    }
  • {
      "code": "403",
      "error": "Forbidden",
      "reason": "Invalid bearer token: Access token is invalid.",
      "message": "The target operation is strictly forbidden due to schema constraints.",
      "description": "[403] Forbidden: Invalid bearer token: Access token is invalid. The target operation is strictly forbidden due to schema constraints."
    }
  • {
      "code": "404",
      "error": "Not Found",
      "reason": "Transaction 09f5e19b-5a30-428d-95f4-ff93590f3c071 is not associated with project 522d3ffe-0787-4bee-a616-dc12a19c9a76",
      "message": "Resource requested by the client was not found.",
      "description": "[404] Not Found: Transaction 09f5e19b-5a30-428d-95f4-ff93590f3c071 is not associated with project 522d3ffe-0787-4bee-a616-dc12a19c9a76. Resource requested by the client was not found."
    }
  • {
      "code": "500",
      "error": "Internal Server Error",
      "reason": "Error creating project: 522d3ffe-0787-4bee-a616-dc12a19c9a76",
      "message": "The API encountered an unexpected condition which prevented it from fulfilling the request.",
      "description": "[500] Internal Server Error: Error creating project: 522d3ffe-0787-4bee-a616-dc12a19c9a76."
    }