User GuidesAPI ReferenceRelease Notes
Doc HomeHelp CenterLog In

The Project JSON Object

The JSON key:value pairs that describe projects in call responses.

This JSON object provides data and metadata about a project:

KeyValue DescriptionType
idThe deployment-specific ID for the project. Unique across the Tamr Core deployment.

Example:
unify://unified-data/v1/projects/5

To identify a project in other API calls, you use the numeric value after projects/.
String
nameThe user-defined display name of the project. Must be unique.String
descriptionOptional. The user-defined description of the project.String
typeThe user-specified project type. The type can be:
- SCHEMA_MAPPING_RECOMMENDATIONS
- DEDUP (for a mastering project)
- GOLDEN_RECORDS
- CATEGORIZATION
Project Type
unifiedDatasetNameThe user-defined name for the project's unified dataset.String
createdMetadata about the creation of the project:
- username
- time
- version
Object
lastModifiedMetadata about the most recent update of the project:
- username
- time
- version
Object
relativeIdThe ID of the project stripped of the instance name.

To identify a project in other API calls, you use the numeric value after projects/.
String
externalIdA case-insensitive ID which must be unique across all projects. It can be specified at creation or will be set by default.String

An example follows:

{
    "id": "unify://unified-data/v1/projects/1",
    "name": "Example Mastering Project",
    "description": "Example Mastering Project",
    "type": "DEDUP",
    "unifiedDatasetName": "Example_Mastering_Project_Unified_Dataset",
    "created": {
      "username": "admin",
      "time": "2019-02-07T13:50:07.035Z",
      "version": "21"
    },
    "lastModified": {
      "username": "admin",
      "time": "2019-02-07T13:50:07.035Z",
      "version": "21"
    },
    "relativeId": "projects/1",
    "externalId": "Example Mastering Project"
  }

See List all projects.