0010-base_model.json 6.92 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 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 92 93 94 95 96 97 98 99 100
        {
            "name": "Asset",
            "superTypes": [],
            "typeVersion": "1.0",
            "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": [
                "Referenceable",
                "Asset"
            ],
            "typeVersion": "1.0",
            "attributeDefs": []
        },
        {
            "name": "Infrastructure",
            "superTypes": [
                "Referenceable",
                "Asset"
            ],
            "typeVersion": "1.0",
            "attributeDefs": []
        },
        {
            "name": "Process",
            "superTypes": [
                "Referenceable",
                "Asset"
            ],
            "typeVersion": "1.0",
            "attributeDefs": [
                {
                    "name": "inputs",
                    "typeName": "array<DataSet>",
                    "cardinality": "SINGLE",
                    "isIndexable": false,
                    "isOptional": true,
                    "isUnique": false
                },
                {
                    "name": "outputs",
                    "typeName": "array<DataSet>",
                    "cardinality": "SINGLE",
                    "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 128 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
        },
        {
            "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>",
                    "cardinality": "LIST",
                    "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 186 187
                {
                    "name": "uniqueName",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": true,
                    "isOptional": false,
                    "isUnique": true
                },
                {
                    "name": "searchParameters",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": false,
                    "isOptional": false,
                    "isUnique": false
                }
            ]
188
        }
189 190 191 192 193 194 195 196 197
    ],
    "relationshipDefs": [
        {
            "name": "dataset_process_inputs",
            "typeVersion": "1.0",
            "relationshipCategory": "AGGREGATION",
            "endDef1": {
                "type": "DataSet",
                "name": "sourceToProcesses",
198
                "isContainer": false,
199 200 201 202 203
                "cardinality": "SET"
            },
            "endDef2": {
                "type": "Process",
                "name": "inputs",
204
                "isContainer": true,
205
                "cardinality": "SET",
206
                "isLegacyAttribute": true
207 208 209 210 211 212 213 214 215 216
            },
            "propagateTags": "NONE"
        },
        {
          "name": "process_dataset_outputs",
          "typeVersion": "1.0",
          "relationshipCategory": "AGGREGATION",
          "endDef1": {
                "type": "Process",
                "name": "outputs",
217
                "isContainer": true,
218
                "cardinality": "SET",
219
                "isLegacyAttribute": true
220 221 222 223
          },
          "endDef2": {
                "type": "DataSet",
                "name": "sinkFromProcesses",
224
                "isContainer": false,
225 226 227 228
                "cardinality": "SET"
          },
          "propagateTags": "NONE"
        }
229
    ]
230
}