get http://localhost:9100/api/versioned/v1/projects//taxonomy/categories
Retrieving a taxonomy returns an array of JSON objects, where each object describes one category in the taxonomy.
Response Fields
Key | Value Description |
---|---|
id | The ID of the category. Unique across the entire deployment of Tamr Core. Ends with a numeric ID, which is the id that you can use for other dataset API operations. |
name | The name of the category. |
description | An optional description of the category. |
parent | The ID of the parent category. Only included if the node has a parent. |
path | The path, by name, to the category. If the category has no parent, the list only contains the category itself. |
created | Metadata about the creation of the category, including username, time, and version. |
lastModified | Metadata about the most recent modification of the category, including username, time, and version. |
relativeId | The ID of the project stripped of the instance name. The digits after categories/ in this ID can be used in API calls. |