0010-base_model.json 7.94 KB
Newer Older
1 2 3
{
    "enumDefs": [],
    "structDefs": [],
4
    "classificationDefs": [],
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
    "entityDefs": [
        {
            "name": "Referenceable",
            "superTypes": [],
            "typeVersion": "1.0",
            "attributeDefs": [
                {
                    "name": "qualifiedName",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": true,
                    "isOptional": false,
                    "isUnique": true
                }
            ]
        },
21 22 23 24 25 26
        {
            "name": "__internal",
            "superTypes": [],
            "typeVersion": "1.0",
            "attributeDefs": []
        },
27 28
        {
            "name": "Asset",
29 30 31 32
            "superTypes": [
                "Referenceable"
            ],
            "typeVersion": "1.1",
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
            "attributeDefs": [
                {
                    "name": "name",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": true,
                    "isOptional": false,
                    "isUnique": false
                },
                {
                    "name": "description",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": false,
                    "isOptional": true,
                    "isUnique": false
                },
                {
                    "name": "owner",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": true,
                    "isOptional": true,
                    "isUnique": false
                }
            ]
        },
        {
            "name": "DataSet",
            "superTypes": [
                "Asset"
            ],
65
            "typeVersion": "1.1",
66 67 68 69
            "attributeDefs": []
        },
        {
            "name": "Infrastructure",
70
            "description":"Infrastructure can be IT infrastructure, which contains hosts and servers. Infrastructure might not be IT orientated, such as 'Car' for IoT applications.",
71 72 73
            "superTypes": [
                "Asset"
            ],
74
            "typeVersion": "1.1",
75 76 77 78 79 80 81
            "attributeDefs": []
        },
        {
            "name": "Process",
            "superTypes": [
                "Asset"
            ],
82
            "typeVersion": "1.1",
83 84 85 86
            "attributeDefs": [
                {
                    "name": "inputs",
                    "typeName": "array<DataSet>",
87
                    "cardinality": "SET",
88 89 90 91 92 93 94
                    "isIndexable": false,
                    "isOptional": true,
                    "isUnique": false
                },
                {
                    "name": "outputs",
                    "typeName": "array<DataSet>",
95
                    "cardinality": "SET",
96 97 98 99 100
                    "isIndexable": false,
                    "isOptional": true,
                    "isUnique": false
                }
            ]
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
        },
        {
            "name": "__AtlasUserProfile",
            "superTypes": [
                "__internal"
            ],
            "typeVersion": "1.0",
            "attributeDefs": [
                {
                    "name": "name",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": true,
                    "isOptional": false,
                    "isUnique": true
                },
                {
                    "name": "fullName",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": false,
                    "isOptional": true,
                    "isUnique": false
                },
                {
                    "name": "savedSearches",
                    "typeName": "array<__AtlasUserSavedSearch>",
128
                    "cardinality": "SET",
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
                    "isIndexable": false,
                    "isOptional": true,
                    "isUnique": false,
                    "constraints": [
                        {
                            "type": "ownedRef"
                        }
                    ]
                }
            ]
        },
        {
            "name": "__AtlasUserSavedSearch",
            "superTypes": [
                "__internal"
            ],
            "typeVersion": "1.0",
            "attributeDefs": [
                {
                    "name": "name",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": false,
                    "isOptional": false,
                    "isUnique": false
                },
                {
                    "name": "ownerName",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": false,
                    "isOptional": false,
                    "isUnique": false
                },
163 164 165 166 167 168 169 170
                {
                  "name": "searchType",
                  "typeName": "string",
                  "cardinality": "SINGLE",
                  "isIndexable": true,
                  "isOptional": false,
                  "isUnique": false
                },
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
                {
                    "name": "uniqueName",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": true,
                    "isOptional": false,
                    "isUnique": true
                },
                {
                    "name": "searchParameters",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": false,
                    "isOptional": false,
                    "isUnique": false
186 187 188 189 190 191 192 193
                },
                {
                    "name": "uiParameters",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": false,
                    "isOptional": true,
                    "isUnique": false
194 195
                }
            ]
196
        }
197 198 199 200 201 202 203 204 205
    ],
    "relationshipDefs": [
        {
            "name": "dataset_process_inputs",
            "typeVersion": "1.0",
            "relationshipCategory": "AGGREGATION",
            "endDef1": {
                "type": "Process",
                "name": "inputs",
206
                "isContainer": true,
207
                "cardinality": "SET",
208
                "isLegacyAttribute": true
209
            },
210 211 212 213 214 215 216
            "endDef2": {
                "type": "DataSet",
                "name": "inputToProcesses",
                "isContainer": false,
                "cardinality": "SET"
            },
            "propagateTags": "TWO_TO_ONE"
217 218 219 220 221 222 223 224
        },
        {
          "name": "process_dataset_outputs",
          "typeVersion": "1.0",
          "relationshipCategory": "AGGREGATION",
          "endDef1": {
                "type": "Process",
                "name": "outputs",
225
                "isContainer": true,
226
                "cardinality": "SET",
227
                "isLegacyAttribute": true
228 229 230
          },
          "endDef2": {
                "type": "DataSet",
231
                "name": "outputFromProcesses",
232
                "isContainer": false,
233 234
                "cardinality": "SET"
          },
235
          "propagateTags": "ONE_TO_TWO"
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
        },
        {
          "name": "__AtlasUserProfile_savedsearches",
          "typeVersion": "1.0",
          "relationshipCategory": "COMPOSITION",
          "endDef1": {
                "type": "__AtlasUserProfile",
                "name": "savedSearches",
                "isContainer": true,
                "cardinality": "SET",
				"isLegacyAttribute": true
          },
          "endDef2": {
                "type": "__AtlasUserSavedSearch",
                "name": "userProfile",
                "isContainer": false,
                "cardinality": "SINGLE"
          },
          "propagateTags": "NONE"
255
        }
256
    ]
257
}