0010-base_model.json 3.95 KB
{
    "enumDefs": [],
    "structDefs": [],
    "classificationDefs": [],
    "entityDefs": [
        {
            "name": "Referenceable",
            "superTypes": [],
            "typeVersion": "1.0",
            "attributeDefs": [
                {
                    "name": "qualifiedName",
                    "typeName": "string",
                    "cardinality": "SINGLE",
                    "isIndexable": true,
                    "isOptional": false,
                    "isUnique": true
                }
            ]
        },
        {
            "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
                }
            ]
        }
    ],
    "relationshipDefs": [
        {
            "name": "dataset_process_inputs",
            "typeVersion": "1.0",
            "relationshipCategory": "AGGREGATION",
            "endDef1": {
                "type": "DataSet",
                "name": "sourceToProcesses",
                "isContainer": false,
                "cardinality": "SET"
            },
            "endDef2": {
                "type": "Process",
                "name": "inputs",
                "isContainer": true,
                "cardinality": "SET",
                "isLegacyAttribute": true
            },
            "propagateTags": "NONE"
        },
        {
          "name": "process_dataset_outputs",
          "typeVersion": "1.0",
          "relationshipCategory": "AGGREGATION",
          "endDef1": {
                "type": "Process",
                "name": "outputs",
                "isContainer": true,
                "cardinality": "SET",
                "isLegacyAttribute": true
          },
          "endDef2": {
                "type": "DataSet",
                "name": "sinkFromProcesses",
                "isContainer": false,
                "cardinality": "SET"
          },
          "propagateTags": "NONE"
        }
    ]
}