{
    "enumDefs": [],
    "structDefs": [],
    "classificationDefs": [],
    "entityDefs": [
        {
            "name": "Referenceable",
            "superTypes": [],
            "typeVersion": "1.0",
            "attributeDefs": [
                {
                    "name": "qualifiedName",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": true,
                    "isOptional": false,
                    "isUnique": true
                }
            ]
        },
        {
            "name": "__internal",
            "superTypes": [],
            "typeVersion": "1.0",
            "attributeDefs": []
        },
        {
            "name": "Asset",
            "superTypes": [
                "Referenceable"
            ],
            "typeVersion": "1.1",
            "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"
            ],
            "typeVersion": "1.1",
            "attributeDefs": []
        },
        {
            "name": "Infrastructure",
            "description":"Infrastructure can be IT infrastructure, which contains hosts and servers. Infrastructure might not be IT orientated, such as 'Car' for IoT applications.",
            "superTypes": [
                "Asset"
            ],
            "typeVersion": "1.1",
            "attributeDefs": []
        },
        {
            "name": "Process",
            "superTypes": [
                "Asset"
            ],
            "typeVersion": "1.1",
            "attributeDefs": [
                {
                    "name": "inputs",
                    "typeName": "array<DataSet>",
                    "cardinality": "SET",
                    "isIndexable": false,
                    "isOptional": true,
                    "isUnique": false
                },
                {
                    "name": "outputs",
                    "typeName": "array<DataSet>",
                    "cardinality": "SET",
                    "isIndexable": false,
                    "isOptional": true,
                    "isUnique": false
                }
            ]
        },
        {
            "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": "SET",
                    "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
                },
                {
                  "name": "searchType",
                  "typeName": "string",
                  "cardinality": "SINGLE",
                  "isIndexable": true,
                  "isOptional": false,
                  "isUnique": false
                },
                {
                    "name": "uniqueName",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": true,
                    "isOptional": false,
                    "isUnique": true
                },
                {
                    "name": "searchParameters",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": false,
                    "isOptional": false,
                    "isUnique": false
                },
                {
                    "name": "uiParameters",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": false,
                    "isOptional": true,
                    "isUnique": false
                }
            ]
        }
    ],
    "relationshipDefs": [
        {
            "name": "dataset_process_inputs",
            "typeVersion": "1.0",
            "relationshipCategory": "AGGREGATION",
            "endDef1": {
                "type": "Process",
                "name": "inputs",
                "isContainer": true,
                "cardinality": "SET",
                "isLegacyAttribute": true
            },
            "endDef2": {
                "type": "DataSet",
                "name": "inputToProcesses",
                "isContainer": false,
                "cardinality": "SET"
            },
            "propagateTags": "TWO_TO_ONE"
        },
        {
          "name": "process_dataset_outputs",
          "typeVersion": "1.0",
          "relationshipCategory": "AGGREGATION",
          "endDef1": {
                "type": "Process",
                "name": "outputs",
                "isContainer": true,
                "cardinality": "SET",
                "isLegacyAttribute": true
          },
          "endDef2": {
                "type": "DataSet",
                "name": "outputFromProcesses",
                "isContainer": false,
                "cardinality": "SET"
          },
          "propagateTags": "ONE_TO_TWO"
        },
        {
          "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"
        }
    ]
}