-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelationTypes.json
More file actions
91 lines (91 loc) · 2.67 KB
/
relationTypes.json
File metadata and controls
91 lines (91 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
//
// REMOVE ALL COMMENTS BEFORE ADDING TO SETTINGS IN THE CONNECTOR CONFIGURATION
//
// NOTE: THIS CAN BE CUSTOMIZED BEFORE EXECUTING THE CONNECTOR
// If it runs with the predefined config, those assets are created with that naming and every occurence will need
// to be deleted in Collibra to change it (i.e., every asset type, domain type, attributes, attribute type, relation, relation type)
// MUST BE CONSISTENT WITH assetTypes.json
//
{
"default": {
"role": "contains",
"coRole": "is part of"
},
"assetTypes": [
{
"name": "Dataiku project",
"head": "Data Asset"
},
{
"name": "Dataiku connection",
"head": "Data Asset"
},
{
"name": "Dataiku dataset",
"head": "Dataiku project",
"input": {
"connection": {
"name": "Dataiku dataset",
"description": "Dataiku dataset connection",
"head": "Dataiku connection",
"role": "connection for",
"coRole": "uses connection"
}
}
},
{
"name": "Dataiku recipe",
"head": "Dataiku project",
"input": {
"dataset": {
"name": "Dataiku recipe",
"description": "Dataiku recipe dataset input",
"head": "Dataiku dataset",
"role": "feeds into",
"coRole": "is target of"
},
"model": {
"name": "Dataiku recipe",
"description": "Dataiku recipe model input",
"head": "Dataiku model",
"role": "feeds into",
"coRole": "is target of"
},
"managedFolder": {
"name": "Dataiku recipe",
"description": "Dataiku recipe managed folder input",
"head": "Dataiku managed folder",
"role": "feeds into",
"coRole": "is target of"
}
},
"output": {
"dataset": {
"name": "Dataiku recipe",
"description": "Dataiku recipe dataset output",
"tail": "Dataiku dataset",
"role": "feeds into",
"coRole": "is target of"
},
"model": {
"name": "Dataiku recipe",
"description": "Dataiku recipe model output",
"tail": "Dataiku model",
"role": "feeds into",
"coRole": "is target of"
},
"managedFolder": {
"name": "Dataiku recipe",
"description": "Dataiku recipe managed folder output",
"tail": "Dataiku managed folder",
"role": "feeds into",
"coRole": "is target of"
}
}
},
{
"name": "Dataiku model",
"head": "Dataiku project"
}
]
}