diff --git a/src/components/App/index.scss b/src/components/App/index.scss
index 25535ea..075af84 100644
--- a/src/components/App/index.scss
+++ b/src/components/App/index.scss
@@ -12,6 +12,9 @@ html, body {
.container {
display:flex;
+ flex-direction: column;
+ align-items: center;
+ padding-top: 20px;
height:100%;
width:100%;
-}
\ No newline at end of file
+}
diff --git a/src/components/App/index.tsx b/src/components/App/index.tsx
index 8d40b10..6073ea1 100644
--- a/src/components/App/index.tsx
+++ b/src/components/App/index.tsx
@@ -1,32 +1,74 @@
-import React from 'react';
+import React, { useState, useEffect } from 'react';
import {
HappiGraph,
HappiGraphActions
} from '../HappiGraph';
+import { GraphType } from "../HappiGraph/happi-graph.helpers";
+
import './index.scss';
import '../HappiGraph/happi-graph.scss';
-import { mockData } from '../../mockData';
+import { mockData as lineageMockData } from '../../mockData';
+import {texMockData} from '../HappiGraph/Tex/dataRender';
+import { Modal } from '@mantine/core';
-const rawData = {
- ...mockData
-};
export function App() {
+ const [selectedNodeData, setSelectedNodeData] = useState(undefined);
+ const [opened, setOpened] = useState(false);
+ //To switch the graph types displayed between Lineage/Inheritance/Neighbourhood graphs, change the initial graphType state to your preference
+ const [graphType, setGraphType] = useState(GraphType.LINEAGE);
+
+ const selectGraphData = () => {
+ let objectGraphData;
+ switch(graphType) {
+ case GraphType.LINEAGE: {
+ objectGraphData = lineageMockData;
+ break;
+ }
+ case GraphType.TEX_INHERITANCE: {
+ objectGraphData = texMockData;
+ break;
+ }
+ case GraphType.TEX_NEIGHBOURHOOD: {
+ objectGraphData = texMockData;
+ break;
+ }
+ default:
+ objectGraphData = texMockData;
+ console.log('GRAPH_TYPE_NOT_SELECTED');
+ }
+ return objectGraphData;
+ }
+
return <>
-
}
- onNodeClick={(d: any) => console.log(d)}
- onGraphRender={() => { console.log('Graph rendered');}} />
+
+ setOpened(false)}
+ withCloseButton={false}
+ centered
+ size="50%"
+ >
+ { selectedNodeData && JSON.stringify(selectedNodeData) }
+
+
+
+ }
+ onNodeClick={(d: any) => { setSelectedNodeData(d); setOpened(true); }}
+ onGraphRender={() => { console.log('Graph rendered'); }} />
+
>;
-}
+}
\ No newline at end of file
diff --git a/src/components/HappiGraph/Tex/dataRender.ts b/src/components/HappiGraph/Tex/dataRender.ts
new file mode 100644
index 0000000..7ab21a8
--- /dev/null
+++ b/src/components/HappiGraph/Tex/dataRender.ts
@@ -0,0 +1,47 @@
+import { rawTexData } from "./mockTexData";
+
+ export const texMockData = {
+ nodes: [
+ ...Object.keys(rawTexData.typeExplorer.entities).map((e) => {
+ return {
+ id: rawTexData.typeExplorer.entities[e].entityDef.guid,
+ label: e,
+ group: "Port",
+ guid: rawTexData.typeExplorer.entities[e].entityDef.guid,
+ tex: {
+ entityType: "OpenMetadataRoot",
+ desciption: {
+ "Description": "Common root for all open metadata entity types.",
+ "Type Status": "ACTIVE_TYPEDEF",
+ "Attributes": "list is empty",
+ "Relationships": "none",
+ "Classifications ": "",
+ },
+ extras: {
+ "Anchors": "",
+ "Memento": "",
+ },
+ },
+ };
+ }),
+ ],
+ edges: [
+ ...Object.keys(rawTexData.typeExplorer.entities)
+ .filter((e) => {
+ if (rawTexData.typeExplorer.entities[e].entityDef.superType) {
+ return true;
+ } else {
+ return false;
+ }
+ })
+ .map((e) => {
+ return {
+ id: `${rawTexData.typeExplorer.entities[e].entityDef.guid}-${rawTexData.typeExplorer.entities[e].entityDef.superType.guid}`,
+ to: rawTexData.typeExplorer.entities[e].entityDef.guid,
+ from: rawTexData.typeExplorer.entities[e].entityDef.superType.guid,
+ label: "Label",
+ type: null,
+ };
+ }),
+ ],
+ };
\ No newline at end of file
diff --git a/src/components/HappiGraph/Tex/mockTexData.ts b/src/components/HappiGraph/Tex/mockTexData.ts
new file mode 100644
index 0000000..201be45
--- /dev/null
+++ b/src/components/HappiGraph/Tex/mockTexData.ts
@@ -0,0 +1,147156 @@
+export const rawTexData: any = {
+ "class": "TypeExplorerResponse",
+ "relatedHTTPCode": 200,
+ "typeExplorer": {
+ "entities": {
+ "APISchemaType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "b46cddb3-9864-4c5d-8a49-266b3fc95cb8",
+ "name": "APISchemaType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "126962bf-dd26-4fcf-97d8-d0ad1fdd2d50",
+ "name": "RootSchemaType",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Description of an API.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "APIOperations"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "APIResponse",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeDefinition",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "ImplementedBy",
+ "ImplementedBy",
+ "APIRequest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "SolutionPortSchema",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ControlPointDefinition": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "a376a993-5f1c-4926-b74e-a15a38e1d55a",
+ "name": "ControlPointDefinition",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d",
+ "name": "ExecutionPointDefinition",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A decision needs to be made on how to proceed.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short name for display and reports.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the execution point.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "ExecutionPointUse",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GovernancePolicy": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "a7defa41-9cfa-4be5-9059-359022bb016d",
+ "name": "GovernancePolicy",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8",
+ "name": "GovernanceDefinition",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Defines a goal or outcome expected from the organization.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short summary of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "implications",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Impact on the organization, people and services when adopting the recommendation in this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "outcomes",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expected outcomes.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Scope of impact for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Detailed description of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "title",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Title describing the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "priority",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Relative importance of this governance definition compared to its peers.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "results",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Actual results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "GovernanceObligation",
+ "GovernancePrinciple",
+ "GovernanceApproach"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "GovernancePolicyLink",
+ "GovernancePolicyLink",
+ "GovernanceImplementation",
+ "GovernanceResponse"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "GovernanceDefinitionMetric",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "ExecutionPointUse",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DataProfileAnnotation": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "bff1f694-afd0-4829-ab11-50a9fbaf2f5f",
+ "name": "DataProfileAnnotation",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0",
+ "name": "DataFieldAnnotation",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A collection of properties about the values stored in a data field, or number of data fields, in an Asset.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "length",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Length of the data field.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "inferredDataType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Inferred data type based on the data values.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "inferredFormat",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Inferred data format based on the data values.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "inferredLength",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Inferred data field length based on the data values.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "inferredPrecision",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Inferred precision of the data based on the data values.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "inferredScale",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Inferred scale applied to the data based on the data values.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "profileProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional profile properties discovered during the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "profileFlags",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "8fa603dd-c2c5-43fc-8ff4-92141f2414ab",
+ "name": "map",
+ "description": "A map from String to Boolean.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_BOOLEAN"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional flags (booleans) discovered during the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "profileCounts",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "8fa603dd-c2c5-43fc-8ff4-92141f2414ae",
+ "name": "map",
+ "description": "A map from String to long.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_LONG"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional counts discovered during the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "valueList",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of individual values in the data.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "valueCount",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "8fa603dd-c2c5-43fc-8ff4-92141f2414ac",
+ "name": "map",
+ "description": "A map from String to int.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_INT"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Count of individual values in the data.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "valueRangeFrom",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Lowest value in the data.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "valueRangeTo",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Highest value in the data.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "averageValue",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Typical value in the data.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the findings.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "confidenceLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Level of certainty in the accuracy of the results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "analysisStep",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The step in the pipeline that produced the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "expression",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expression used to create the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "jsonProperties",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties used in the specification.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated attribute. Use the Anchors classification instead.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "annotationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the type of annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties discovered during the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "explanation",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Explanation of the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "DataFieldAnalysis",
+ "AnnotationReviewLink",
+ "AnnotationExtension",
+ "AnnotationExtension",
+ "RelatedIntegrationReport",
+ "DiscoveredAnnotation",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "Document": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "b463827c-c0a0-4cfb-a2b2-ddc63746ded4",
+ "name": "Document",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "c5ce5499-9582-42ea-936c-9771fbd475f8",
+ "name": "MediaFile",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A data file containing unstructured text.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "embeddedMetadata",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Metadata properties embedded in the media file.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "fileName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The name of the file with extension.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "fileType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "File type descriptor typically extracted from the file name.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "pathName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The fully qualified physical location of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeUpdateTime attribute to define the last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeCreateTime attribute to describe the creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "GroupedMedia",
+ "NestedFile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "LinkedMedia",
+ "LinkedMedia",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LinkedFile",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "LineageLogFile",
+ "Criticality",
+ "DataStoreEncoding",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "AuditLogFile",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "ExceptionLogFile",
+ "Campaign",
+ "MeteringLogFile",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DeployedSoftwareComponent": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "486af62c-dcfd-4859-ab24-eab2e380ecfd",
+ "name": "DeployedSoftwareComponent",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050",
+ "name": "Process",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A packaged and deployed software component supporting a well-defined function.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "implementationLanguage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the language used to implement this component.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula for the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "DeployedConnector"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "GovernanceRuleImplementation"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "ProcessPort",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "SchemaTypeImplementation",
+ "ImplementedBy",
+ "ImplementedBy",
+ "GovernanceProcessImplementation",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "ProcessHierarchy",
+ "ProcessHierarchy",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "LiteralSchemaType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "520ebb91-c4eb-4d46-a3b1-974875cdcf0d",
+ "name": "LiteralSchemaType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f",
+ "name": "SchemaType",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A fixed simple value.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "dataType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type name for the data stored in this schema element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "fixedValue",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Fixed value for data stored in this schema element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "APIResponse",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeDefinition",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "ImplementedBy",
+ "ImplementedBy",
+ "APIRequest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "SolutionPortSchema",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DataFile": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f",
+ "name": "DataFile",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "30756d0b-362b-4bfa-a0de-fce6a8f47b47",
+ "name": "DataStore",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A description of a file containing data stored in a file system.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "fileName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The name of the file with extension.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "fileType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "File type descriptor typically extracted from the file name.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "pathName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The fully qualified physical location of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeUpdateTime attribute to define the last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeCreateTime attribute to describe the creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "CSVFile",
+ "KeystoreFile",
+ "MediaFile",
+ "JSONFile",
+ "AvroFile",
+ "ParquetFile",
+ "LogFile"
+ ],
+ "classificationNames": [
+ "LineageLogFile",
+ "AuditLogFile",
+ "ExceptionLogFile",
+ "MeteringLogFile"
+ ],
+ "relationshipNames": [
+ "NestedFile",
+ "LinkedFile"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "DataStoreEncoding",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "IntegrationGroup": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "4d7c43ec-983b-40e4-af78-6fb66c4f5136",
+ "name": "IntegrationGroup",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "fe30a033-8f86-4d17-8986-e6166fa24177",
+ "name": "SoftwareServerCapability",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A collection of integration connectors to run together.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "version",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "capabilityVersion",
+ "attributeDescription": "Deprecated attribute. Use the capabilityVersion attribute to define the version number of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "patchLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Patch level of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "source",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Supplier of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "RegisteredIntegrationConnector"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "CloudService",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ProcessingState",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "Referenceable": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d",
+ "name": "OpenMetadataRoot",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An open metadata entity that has a unique identifier.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [],
+ "subTypeNames": [
+ "ContactDetails",
+ "Endpoint",
+ "Actor",
+ "InformationSupplyChainSegment",
+ "ImplementationSnippet",
+ "SubjectAreaDefinition",
+ "GovernanceDomainDescription",
+ "DesignModelScope",
+ "Project",
+ "SolutionBlueprint",
+ "GlossaryCategory",
+ "ConnectorCategory",
+ "IncidentReport",
+ "SchemaElement",
+ "ConnectorType",
+ "GovernanceMetric",
+ "Connection",
+ "MetadataRepositoryCohort",
+ "Agreement",
+ "BusinessCapability",
+ "Port",
+ "GovernanceActionType",
+ "InformationSupplyChain",
+ "ToDo",
+ "DesignModelElement",
+ "Glossary",
+ "ValidValueDefinition",
+ "DesignPattern",
+ "ProjectCharter",
+ "TermsAndConditions",
+ "Community",
+ "Location",
+ "DigitalService",
+ "DataProcessingDescription",
+ "StorageVolume",
+ "ExternalReference",
+ "GovernanceDefinition",
+ "Asset",
+ "ContributionRecord",
+ "GovernanceStatusLevel",
+ "Meeting",
+ "GovernanceAction",
+ "SolutionComponent",
+ "GovernanceClassificationLevel",
+ "ExecutionPointDefinition",
+ "OpenDiscoveryAnalysisReport",
+ "OperatingPlatform",
+ "SoftwareCapability",
+ "SolutionPort",
+ "NoteEntry",
+ "PropertyFacet",
+ "Collection",
+ "GovernanceZone",
+ "GlossaryTerm",
+ "IncidentClassifier",
+ "Comment",
+ "ExternalId",
+ "DataProcessingAction",
+ "NoteLog",
+ "DataClass"
+ ],
+ "classificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Confidentiality"
+ ],
+ "relationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "SourcedFrom",
+ "SourcedFrom",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber"
+ ],
+ "inheritedRelationshipNames": [
+ "RelatedIntegrationReport",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "ContactDetails": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "79296df8-645a-4ef7-a011-912d1cdcf75a",
+ "name": "ContactDetails",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Information on how to send a message to an individual or automated process.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "contactMethodValue",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Details of the contact method.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "contactMethodType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "30e7d8cd-df01-46e8-9247-a24c5650910d",
+ "name": "ContactMethodType",
+ "description": "Mechanism to contact an individual.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Email",
+ "description": "Contact through email."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Phone",
+ "description": "Contact through telephone number."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Chat",
+ "description": "Contact through chat account."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Profile",
+ "description": "Contact through open metadata profile."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "Account",
+ "description": "Contact through social media or similar account."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another usage."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Method to contact an actor.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of contact method.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "contactType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of contact - such as home address, work mobile, emergency contact ...",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ContactThrough"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "Endpoint": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "dbc20663-d705-4ff0-8424-80c262c6b8e7",
+ "name": "Endpoint",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Description of the network address and related information needed to call a software service.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the endpoint.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the endpoint and its capabilities.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "networkAddress",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name used to connect to the endpoint.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "protocol",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the protocol used to connect to the endpoint.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encryptionMethod",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of encryption used at the endpoint (if any).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ServerEndpoint",
+ "APIEndpoint",
+ "VisibleEndpoint",
+ "ConnectionEndpoint"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ValidValuesSet": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "7de10805-7c44-40e3-a410-ffc51306801b",
+ "name": "ValidValuesSet",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "09b2133a-f045-42cc-bb00-ee602b74c618",
+ "name": "ValidValueDefinition",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A collection of valid values for a referenceable.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Indicates that this value is deprecated and all uses should be discontinued as soon as possible.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "preferredValue",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Preferred implementation value.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of how to use the valid value.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Situations where this value can be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the valid value.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of what the value represents.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ValidValueMember"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "ValidValueMember",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "ValidValuesMapping",
+ "ValidValuesMapping",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "VerificationPointDefinition": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "27db26a1-ff66-4042-9932-ddc728b977b9",
+ "name": "VerificationPointDefinition",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d",
+ "name": "ExecutionPointDefinition",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A test is made to ensure the current situation is valid.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short name for display and reports.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the execution point.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "ExecutionPointUse",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "IntegrationReport": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "b8703d3f-8668-4e6a-bf26-27db1607220d",
+ "name": "IntegrationReport",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d",
+ "name": "OpenMetadataRoot",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Details of the metadata changes made by the execution of the refresh() method by an integration connector.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "connectorName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the integration connector for logging purposes.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "connectorId",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier of the integration connector deployment.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "serverName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the integration daemon where the integration connector is/was running.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "refreshStartDate",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Date/time when the refresh() call was made.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "refreshCompletionDate",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Date/time when the integration connector returned from the refresh() call.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createdElements",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of elements that were created.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "updatedElements",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of elements that were updated.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deletedElements",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of elements that were deleted.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties of importance to the integration connector.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "RelatedIntegrationReport"
+ ],
+ "inheritedRelationshipNames": [
+ "RelatedIntegrationReport",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "DataStore": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "30756d0b-362b-4bfa-a0de-fce6a8f47b47",
+ "name": "DataStore",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 3,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "896d14c2-7522-4f6c-8519-757711943fe6",
+ "name": "Asset",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A physical store of data.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "pathName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The fully qualified physical location of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeUpdateTime attribute to define the last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeCreateTime attribute to describe the creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "DataFile",
+ "MetadataRepository",
+ "GraphStore",
+ "CohortRegistryStore",
+ "FileFolder",
+ "DocumentStore",
+ "Database"
+ ],
+ "classificationNames": [
+ "DataStoreEncoding"
+ ],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "EventTypeList": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "77ccda3d-c4c6-464c-a424-4b2cb27ac06c",
+ "name": "EventTypeList",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "5caf954a-3e33-4cbd-b17d-8b8613bd2db8",
+ "name": "SchemaTypeChoice",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A list of event types that flow on a topic.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "APIResponse",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeDefinition",
+ "SchemaTypeOption",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "ImplementedBy",
+ "ImplementedBy",
+ "APIRequest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "SolutionPortSchema",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "Actor": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec",
+ "name": "Actor",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "The representation of a person or group of people that are identified to perform an action or take on a responsibility.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "UserIdentity",
+ "ActorProfile",
+ "PersonRole"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ProjectTeam",
+ "ActionAssignment",
+ "CrowdSourcingContribution",
+ "AgreementActor"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "InformationSupplyChainSegment": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "6d9980b2-5c0b-4314-8d8d-9fa45f8904d1",
+ "name": "InformationSupplyChainSegment",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A section of an information supply chain that has common characteristics.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2018-01-18T22:04:00.008+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PREPARED",
+ "PROPOSED",
+ "APPROVED",
+ "REJECTED",
+ "ACTIVE",
+ "DISABLED",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the segment.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Brief description of the segment.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of applicability of this segment to the organization.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "integrationStyle",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Mechanism to flow data along the segment.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "estimatedVolumetrics",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Properties that describe the expected volumes of data flowing through this segment.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "InformationSupplyChainComposition"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GovernanceProcedure": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "69055d10-51dc-4c2b-b21f-d76fad3f8ef3",
+ "name": "GovernanceProcedure",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "befa1458-79b8-446a-b813-536700e60fa8",
+ "name": "OrganizationalControl",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Describes set of tasks that a person, team or organization performs to support the implementation of a governance driver.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "implementationDescription",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of how this governance control should be implemented.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short summary of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "implications",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Impact on the organization, people and services when adopting the recommendation in this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "outcomes",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expected outcomes.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Scope of impact for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Detailed description of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "title",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Title describing the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "priority",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Relative importance of this governance definition compared to its peers.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "results",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Actual results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "GovernanceDefinitionMetric",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "GovernanceImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "ExecutionPointUse",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "GovernanceControlLink",
+ "GovernanceControlLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "RelationalTable": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "ce7e72b8-396a-4013-8688-f9d973067425",
+ "name": "RelationalTable",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9",
+ "name": "SchemaAttribute",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A table within a relational database schema type.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "aliases",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of aliases for attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "defaultValueOverride",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Initial value for the attribute (overriding the default value of its type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minimumLength",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum length of the data value (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "precision",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of digits after the decimal point.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "length",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Length of the data field (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "orderedValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether the values are ordered or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "allowsDuplicateValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether duplicates of the same value are allowed or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "significantDigits",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of significant digits before the decimal point (zero means it is an integer).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "maxCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Maximum number of occurrences of this attribute allowed (-1 = infinite).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "cardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "maxCardinality",
+ "attributeDescription": "Number of occurrences of this attribute allowed (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum number of occurrences of this attribute allowed (0 = optional, 1+ = mandatory).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "nativeClass",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Native class used by the client to represent this element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "sortOrder",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "aaa4df8f-1aca-4de8-9abd-1ef2aadba300",
+ "name": "DataItemSortOrder",
+ "description": "Defines the suggested order that data values in this data item should be sorted by.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Ascending",
+ "description": "Sort the data values so that they increase in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Descending",
+ "description": "Sort the data values so that they decrease in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Ignore",
+ "description": "No specific sort order."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Suggested ordering of values in this attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isNullable",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Accepts null values or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "displayName",
+ "attributeDescription": "Name of schema attribute (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "position",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Location of the attribute in the parent schema's list of attributes, starting at zero.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SchemaAttributeDefinition",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "NestedSchemaAttribute",
+ "NestedSchemaAttribute",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "TypeEmbeddedAttribute",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ImplementationSnippet": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "49990755-2faa-4a62-a1f3-9124b9c73df4",
+ "name": "ImplementationSnippet",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A concrete implementation example for a schema element.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "snippet",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Concrete implementation of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "curator",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that is maintaining the snippet.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "implementationLanguage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implementation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the snippet should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "snippetVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the snippet.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "version",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "snippetVersion",
+ "attributeDescription": "Deprecated attribute. Use the snippetVersion attribute to define the version number of the snippet.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "AssociatedSnippet"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "SubjectAreaDefinition": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "d28c3839-bc6f-41ad-a882-5667e01fea72",
+ "name": "SubjectAreaDefinition",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 4,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Defines a collection of glossary elements that are related to a topic.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2018-01-18T22:04:00.008+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "subjectAreaName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the subject area - if null use qualifiedName.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Consumable name for this subject area for user interfaces and reports.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "How and where the subject area contents should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of applicability of this subject area to the organization.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of this subject area.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "SubjectAreaHierarchy",
+ "SubjectAreaHierarchy"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "UserIdentity": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "fbe95779-1f3c-4ac6-aa9d-24963ff16282",
+ "name": "UserIdentity",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 4,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec",
+ "name": "Actor",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Name of the security account for a person or automated process.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "distinguishedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The LDAP distinguished name (DN) that gives a unique positional name in the LDAP DIT.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "userId",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the user account - if null use qualifiedName.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [
+ "SecurityGroupMembership"
+ ],
+ "relationshipNames": [
+ "ProfileIdentity"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ConceptBeadLink": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "13defd95-6452-4398-8382-e47f1a271eff",
+ "name": "ConceptBeadLink",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "06659195-3111-4c91-8931-a65f655378d9",
+ "name": "ConceptModelElement",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A relationship between concept beads.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the model element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "technicalName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Technical name (no spaces) that can be used in artifact generation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of what the model element represents.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the model element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the creator of the model (person or organization).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ConceptBeadRelationshipEnd"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "DesignModelGroupMembership",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "DesignModelImplementation",
+ "DesignModelElementsInScope",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "DesignModelOwnership",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "MetamodelInstance",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GovernanceDomainDescription": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "084cd115-5d0d-4f12-8093-697526a120ea",
+ "name": "GovernanceDomainDescription",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A description of a governance domain along with an identifier for use in governance definitions.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier used in governance definitions to show which governance domain they belong to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the domain in common use.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the domain to clarify its meaning/scope.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DesignModelScope": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "788957f7-a203-45bd-994d-0ab018275821",
+ "name": "DesignModelScope",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A selection of design model element needed for a project.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the model element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "technicalName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Technical name (no spaces) that can be used in artifact generation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of what the model element represents.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the model element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "UserId of the creator of the model element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "DesignModelElementsInScope"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "RequestForAction": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "f45765a9-f3ae-4686-983f-602c348e020d",
+ "name": "RequestForAction",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0",
+ "name": "DataFieldAnnotation",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A request for a stewardship action to be initiated against an Asset.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "discoveryActivity",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the discovery activity that revealed the need for action.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "actionRequested",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "What needs to be done.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "actionProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional information for use during action processing.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the findings.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "confidenceLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Level of certainty in the accuracy of the results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "analysisStep",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The step in the pipeline that produced the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "expression",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expression used to create the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "jsonProperties",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties used in the specification.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated attribute. Use the Anchors classification instead.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "annotationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the type of annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties discovered during the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "explanation",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Explanation of the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "DataFieldAnalysis",
+ "AnnotationReviewLink",
+ "AnnotationExtension",
+ "AnnotationExtension",
+ "RelatedIntegrationReport",
+ "DiscoveredAnnotation",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "Project": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd",
+ "name": "Project",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An organized activity, typically to achieve a well defined goal.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "projectStatus",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short description on current status of the project.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the project - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the project.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the project.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "startDate",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Start date of the project.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "plannedEndDate",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Planned completion data for the project.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "status",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "projectStatus",
+ "attributeDescription": "(Deprecated) Short description on current status of the project.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [
+ "GovernanceProject",
+ "Task",
+ "GlossaryProject"
+ ],
+ "relationshipNames": [
+ "ProjectCharterLink",
+ "ProjectHierarchy",
+ "ProjectHierarchy",
+ "ProjectManagement",
+ "ProjectDependency",
+ "ProjectDependency",
+ "ProjectTeam"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "SolutionBlueprint": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "4aa47799-5128-4eeb-bd72-e357b49f8bfe",
+ "name": "SolutionBlueprint",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Collection of solution components that make up a digital service.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2018-01-18T22:04:00.008+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PREPARED",
+ "PROPOSED",
+ "APPROVED",
+ "REJECTED",
+ "ACTIVE",
+ "DISABLED",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the solution.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the solution.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number (major.minor) of the solution.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "SolutionBlueprintComposition",
+ "DigitalServiceDesign"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "IntegrationConnector": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "759da11b-ebb6-4382-bdc9-72adc7c922db",
+ "name": "IntegrationConnector",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "c9a183ab-67f4-46a4-8836-16fa041769b7",
+ "name": "DeployedConnector",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A definition to control the execution of an integration connector.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "usesBlockingCalls",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The integration connector needs to use blocking calls to a third party technology and so needs to run in its own thread.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "implementationLanguage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the language used to implement this component.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula for the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "RegisteredIntegrationConnector",
+ "CatalogTarget"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "ProcessPort",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "GovernanceRuleImplementation",
+ "ServerAssetUse",
+ "SchemaTypeImplementation",
+ "ImplementedBy",
+ "ImplementedBy",
+ "GovernanceProcessImplementation",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "ProcessHierarchy",
+ "ProcessHierarchy",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GlossaryCategory": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672",
+ "name": "GlossaryCategory",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A collection of related glossary terms.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Consumable name for the glossary category, suitable for reports and user interfaces.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the glossary category.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "LibraryCategoryReference",
+ "CategoryHierarchyLink",
+ "CategoryHierarchyLink",
+ "TermCategorization",
+ "CategoryAnchor"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ConnectorCategory": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "fb60761f-7afd-4d3d-9efa-24bc85a7b22e",
+ "name": "ConnectorCategory",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A detailed description of the effect of some data processing.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Consumable name for the connector category, suitable for reports and user interfaces.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the connector category.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "targetTechnologySource",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the organization providing the technology that the connectors access. For example, Apache Software Foundation",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "targetTechnologyName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the technology that the connectors access. For example, Apache Kafka.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "recognizedAdditionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "8fa603dd-c2c5-43fc-8ff4-92141f2414ab",
+ "name": "map",
+ "description": "A map from String to Boolean.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_BOOLEAN"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of additional connection property names supported by the connector implementations.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "recognizedSecuredProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "8fa603dd-c2c5-43fc-8ff4-92141f2414ab",
+ "name": "map",
+ "description": "A map from String to Boolean.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_BOOLEAN"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of secured connection property names supported by the connector implementations.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "recognizedConfigurationProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "8fa603dd-c2c5-43fc-8ff4-92141f2414ab",
+ "name": "map",
+ "description": "A map from String to Boolean.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_BOOLEAN"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of secured connection property names supported by the connector implementations.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ConnectorImplementationChoice"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "NamingStandardRuleSet": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "ba70f506-1f81-4890-bb4f-1cb1d99c939e",
+ "name": "NamingStandardRuleSet",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7",
+ "name": "Collection",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Describes a collection of related naming standard rules.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the collection.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the collection.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "OperatingPlatformManifest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "GovernanceDomainSet",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "Set",
+ "PolicyRetrievalPoint",
+ "ConnectorTypeDirectory",
+ "ChangeManagementLibrary",
+ "Folder",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "IncidentClassifierSet",
+ "Impact",
+ "NotificationManager",
+ "SoftwarePackageManifest",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "GovernanceClassificationSet",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "GovernanceStatusSet",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "CrowdSourcingContributor": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "3a84c94c-ac6f-4be1-a72a-07dcec7b1fe3",
+ "name": "CrowdSourcingContributor",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285",
+ "name": "PersonRole",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Person contributing new content.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the role - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "headCount",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of people that can be appointed to the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of responsibility.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Brief description of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "CommunityMembership",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "ProjectManagement",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "PersonRoleAppointment",
+ "GovernanceResponsibilityAssignment",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "TeamMembership",
+ "TeamLeadership",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "DigitalServiceManagement",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "NoteLogAuthorship",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ConceptBeadAttribute": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "d804d406-ac74-4f92-9bde-2ba0793680ea",
+ "name": "ConceptBeadAttribute",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "06659195-3111-4c91-8931-a65f655378d9",
+ "name": "ConceptModelElement",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An abstract, but well-formed fact about a concept bead.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the model element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "technicalName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Technical name (no spaces) that can be used in artifact generation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of what the model element represents.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the model element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the creator of the model (person or organization).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [
+ "ConceptBeadAttributeCoverage"
+ ],
+ "relationshipNames": [
+ "ConceptBeadAttributeLink"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "DesignModelGroupMembership",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "DesignModelImplementation",
+ "DesignModelElementsInScope",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "DesignModelOwnership",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "MetamodelInstance",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "RegulationArticle": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "829a648d-f249-455d-8127-aeafa021f832",
+ "name": "RegulationArticle",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "c403c109-7b6b-48cd-8eee-df445b258b33",
+ "name": "GovernanceDriver",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An specific requirement in a regulation.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short summary of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "implications",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Impact on the organization, people and services when adopting the recommendation in this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "outcomes",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expected outcomes.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Scope of impact for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Detailed description of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "title",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Title describing the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "priority",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Relative importance of this governance definition compared to its peers.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "results",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Actual results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "GovernanceDriverLink",
+ "GovernanceDriverLink",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "GovernanceDefinitionMetric",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "ExecutionPointUse",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceResponse",
+ "GovernanceDefinitionScope",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GovernanceObligation": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "0cec20d3-aa29-41b7-96ea-1c544ed32537",
+ "name": "GovernanceObligation",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a7defa41-9cfa-4be5-9059-359022bb016d",
+ "name": "GovernancePolicy",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Defines a capability, rule or action that is required by a regulation or external party.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short summary of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "implications",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Impact on the organization, people and services when adopting the recommendation in this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "outcomes",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expected outcomes.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Scope of impact for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Detailed description of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "title",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Title describing the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "priority",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Relative importance of this governance definition compared to its peers.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "results",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Actual results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "GovernanceDefinitionMetric",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "GovernancePolicyLink",
+ "GovernancePolicyLink",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "GovernanceImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "ExecutionPointUse",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceResponse",
+ "GovernanceDefinitionScope",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "CSVFile": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "2ccb2117-9cee-47ca-8150-9b3a543adcec",
+ "name": "CSVFile",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f",
+ "name": "DataFile",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A description of a comma separated value (CSV) file",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "delimiterCharacter",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Character used between each column.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "quoteCharacter",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The character used to group the content of the column that contains one or more delimiter characters.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "fileName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The name of the file with extension.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "fileType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "File type descriptor typically extracted from the file name.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "pathName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The fully qualified physical location of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeUpdateTime attribute to define the last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeCreateTime attribute to describe the creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "NestedFile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LinkedFile",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "LineageLogFile",
+ "Criticality",
+ "DataStoreEncoding",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "AuditLogFile",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "ExceptionLogFile",
+ "Campaign",
+ "MeteringLogFile",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "IncidentReport": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e",
+ "name": "IncidentReport",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A description of an adverse situation or activity.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "5ce92a70-b86a-4e0d-a9d7-fc961121de97",
+ "name": "OwnerType",
+ "description": "Defines the type of identifier for a governance owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier used to show which governance domain this incident belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "background",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the background cause or activity.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the incident.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "completionDate",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Date and time when the governance action service completed.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "incidentClassifiers",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "8fa603dd-c2c5-43fc-8ff4-92141f2414ac",
+ "name": "map",
+ "description": "A map from String to int.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_INT"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Map of label to level indicator to provide customizable grouping of incidents.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "startDate",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Date and time when the governance action service started running.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "incidentStatus",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "a9d4f64b-fa24-4eb8-8bf6-308926ef2c14",
+ "name": "IncidentReportStatus",
+ "description": "Defines the status of an incident report.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Raised",
+ "description": "The incident report has been raised but no processing has occurred."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Reviewed",
+ "description": "The incident report has been reviewed, possibly classified but no action has been taken."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Validated",
+ "description": "The incident report records a valid incident and work is underway to resolve it."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Resolved",
+ "description": "The reported incident has been resolved."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "Invalid",
+ "description": "The incident report does not describe a valid incident and has been closed."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "Ignored",
+ "description": "The incident report is valid but has been closed with no action."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another incident report status."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Current lifecycle state of the incident report.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "IncidentDependency",
+ "IncidentDependency",
+ "IncidentOriginator",
+ "ImpactedResource"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "SoftwareServerPlatform": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "ba7c7884-32ce-4991-9c41-9778f1fec6aa",
+ "name": "SoftwareServerPlatform",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda",
+ "name": "ITInfrastructure",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Software services to support a runtime environment for a software server.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "platformVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the software server platform.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "source",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Supplier of the software server platform.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of software server platform.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "version",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "platformVersion",
+ "attributeDescription": "Deprecated attribute. Use the platformVersion attribute to define the version number of software server platform.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "userId",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Server platform's authentication name.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed software server platform.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [
+ "CloudPlatform"
+ ],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "ServerEndpoint",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "OperatingPlatformUse",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "StewardshipServer",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Webserver",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "RepositoryProxy",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "ApplicationServer",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "DatabaseServer",
+ "Impact",
+ "NotificationManager",
+ "ServerPurpose",
+ "MetadataServer",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "GovernanceDaemon",
+ "ExceptionBacklog",
+ "Ownership",
+ "IntegrationServer",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "NoteLogAuthor": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "3a84d94c-ac6f-4be1-a72a-07dbec7b1fe3",
+ "name": "NoteLogAuthor",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285",
+ "name": "PersonRole",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A person adding notes to a note log.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the role - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "headCount",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of people that can be appointed to the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of responsibility.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Brief description of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "CommunityMembership",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "ProjectManagement",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "PersonRoleAppointment",
+ "GovernanceResponsibilityAssignment",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "TeamMembership",
+ "TeamLeadership",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "DigitalServiceManagement",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "NoteLogAuthorship",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ExternalSchemaType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "78de00ea-3d69-47ff-a6d6-767587526624",
+ "name": "ExternalSchemaType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f",
+ "name": "SchemaType",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "The schema type is defined using an external schema.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "APIResponse",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeDefinition",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "ImplementedBy",
+ "ImplementedBy",
+ "APIRequest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "SolutionPortSchema",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DataFileCollection": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "962de053-ab51-40eb-b843-85b98013f5ca",
+ "name": "DataFileCollection",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1449911c-4f44-4c22-abc0-7540154feefb",
+ "name": "DataSet",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A data set that consists of a collection files (do not need to be co-located).",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula used to create the data set - can reference query identifiers located in DataContentForDataSet relationships.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "GovernanceResults",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "GovernanceMeasurementsResultsDataSet",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "HadoopCluster": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "abc27cf7-e526-4d1b-9c25-7dd60a7993e4",
+ "name": "HadoopCluster",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "9794f42f-4c9f-4fe6-be84-261f0a7de890",
+ "name": "HostCluster",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A cluster of nodes for big data workloads.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "ServerEndpoint",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "HostClusterMember",
+ "HostClusterMember",
+ "OperatingPlatformUse",
+ "DigitalServiceProduct",
+ "AttachedStorage",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "StewardshipServer",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Webserver",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "RepositoryProxy",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "ApplicationServer",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "CloudProvider",
+ "FileSystem",
+ "DatabaseServer",
+ "Impact",
+ "NotificationManager",
+ "ServerPurpose",
+ "MetadataServer",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "GovernanceDaemon",
+ "ExceptionBacklog",
+ "Ownership",
+ "IntegrationServer",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "KeystoreFile": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "17bee904-5b35-4c81-ac63-871c615424a2",
+ "name": "KeystoreFile",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f",
+ "name": "DataFile",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An encrypted data store containing authentication and related security information.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "fileName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The name of the file with extension.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "fileType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "File type descriptor typically extracted from the file name.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "pathName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The fully qualified physical location of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeUpdateTime attribute to define the last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeCreateTime attribute to describe the creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "NestedFile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LinkedFile",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "LineageLogFile",
+ "Criticality",
+ "DataStoreEncoding",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "AuditLogFile",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "ExceptionLogFile",
+ "Campaign",
+ "MeteringLogFile",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "MetadataRepository": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "c40397bd-eab0-4b2e-bffb-e7fa0f93a5a9",
+ "name": "MetadataRepository",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "30756d0b-362b-4bfa-a0de-fce6a8f47b47",
+ "name": "DataStore",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A data store containing metadata.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of metadata repository.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed metadata repository.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "pathName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The fully qualified physical location of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeUpdateTime attribute to define the last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeCreateTime attribute to describe the creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "DataStoreEncoding",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "EventSchemaAttribute": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "5be4ee8f-4d0c-45cd-a411-22a468950342",
+ "name": "EventSchemaAttribute",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9",
+ "name": "SchemaAttribute",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A data field in an event type.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "aliases",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of aliases for attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "defaultValueOverride",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Initial value for the attribute (overriding the default value of its type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minimumLength",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum length of the data value (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "precision",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of digits after the decimal point.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "length",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Length of the data field (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "orderedValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether the values are ordered or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "allowsDuplicateValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether duplicates of the same value are allowed or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "significantDigits",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of significant digits before the decimal point (zero means it is an integer).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "maxCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Maximum number of occurrences of this attribute allowed (-1 = infinite).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "cardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "maxCardinality",
+ "attributeDescription": "Number of occurrences of this attribute allowed (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum number of occurrences of this attribute allowed (0 = optional, 1+ = mandatory).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "nativeClass",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Native class used by the client to represent this element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "sortOrder",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "aaa4df8f-1aca-4de8-9abd-1ef2aadba300",
+ "name": "DataItemSortOrder",
+ "description": "Defines the suggested order that data values in this data item should be sorted by.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Ascending",
+ "description": "Sort the data values so that they increase in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Descending",
+ "description": "Sort the data values so that they decrease in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Ignore",
+ "description": "No specific sort order."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Suggested ordering of values in this attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isNullable",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Accepts null values or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "displayName",
+ "attributeDescription": "Name of schema attribute (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "position",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Location of the attribute in the parent schema's list of attributes, starting at zero.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SchemaAttributeDefinition",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "NestedSchemaAttribute",
+ "NestedSchemaAttribute",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "TypeEmbeddedAttribute",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DocumentSchemaType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "33da99cd-8d04-490c-9457-c58908da7794",
+ "name": "DocumentSchemaType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "126962bf-dd26-4fcf-97d8-d0ad1fdd2d50",
+ "name": "RootSchemaType",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A schema type for a hierarchical data structure.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "APIResponse",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeDefinition",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "ImplementedBy",
+ "ImplementedBy",
+ "APIRequest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "SolutionPortSchema",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "SecurityService": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "2df2069f-6475-400c-bf8c-6d2072a55d47",
+ "name": "SecurityService",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "f3f69251-adb1-4042-9d95-70082f95a028",
+ "name": "SoftwareService",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Provides security services - classifications identify specific capabilities.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "version",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "capabilityVersion",
+ "attributeDescription": "Deprecated attribute. Use the capabilityVersion attribute to define the version number of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "patchLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Patch level of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "source",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Supplier of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "CloudService",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ProcessingState",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "Infrastructure": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "c19746ac-b3ec-49ce-af4b-83348fc55e07",
+ "name": "Infrastructure",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "896d14c2-7522-4f6c-8519-757711943fe6",
+ "name": "Asset",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Physical infrastructure or software platform.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "ITInfrastructure"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "SchemaElement": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "718d4244-8559-49ed-ad5a-10e5c305a656",
+ "name": "SchemaElement",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 4,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An element that is part of a schema definition.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "SchemaType",
+ "SchemaAttribute"
+ ],
+ "classificationNames": [
+ "CalculatedValue",
+ "InstanceMetadata"
+ ],
+ "relationshipNames": [
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "LinkedExternalSchemaType",
+ "MapFromElementType",
+ "SchemaTypeOption"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "Team": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6",
+ "name": "Team",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35",
+ "name": "ActorProfile",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Group of people working together.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the team - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "teamType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of team, such as department.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the actor.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the actor.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "Organization"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "OrganizationalCapability",
+ "TeamMembership",
+ "TeamLeadership",
+ "TeamStructure",
+ "TeamStructure"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "ContactThrough",
+ "License",
+ "DigitalServiceProduct",
+ "ProfileIdentity",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProfileLocation",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "RelationalColumn": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9",
+ "name": "RelationalColumn",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "d81a0425-4e9b-4f31-bc1c-e18c3566da10",
+ "name": "TabularColumn",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A column within a relational table.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2018-01-18T22:04:00.008+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "isUnique",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "allowsDuplicateValues",
+ "attributeDescription": "Data is unique or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "fraction",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "significantDigits",
+ "attributeDescription": "Number of significant digits to the right of decimal point (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "aliases",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of aliases for attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "defaultValueOverride",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Initial value for the attribute (overriding the default value of its type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minimumLength",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum length of the data value (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "precision",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of digits after the decimal point.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "length",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Length of the data field (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "orderedValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether the values are ordered or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "allowsDuplicateValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether duplicates of the same value are allowed or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "significantDigits",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of significant digits before the decimal point (zero means it is an integer).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "maxCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Maximum number of occurrences of this attribute allowed (-1 = infinite).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "cardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "maxCardinality",
+ "attributeDescription": "Number of occurrences of this attribute allowed (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum number of occurrences of this attribute allowed (0 = optional, 1+ = mandatory).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "nativeClass",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Native class used by the client to represent this element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "sortOrder",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "aaa4df8f-1aca-4de8-9abd-1ef2aadba300",
+ "name": "DataItemSortOrder",
+ "description": "Defines the suggested order that data values in this data item should be sorted by.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Ascending",
+ "description": "Sort the data values so that they increase in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Descending",
+ "description": "Sort the data values so that they decrease in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Ignore",
+ "description": "No specific sort order."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Suggested ordering of values in this attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isNullable",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Accepts null values or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "displayName",
+ "attributeDescription": "Name of schema attribute (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "position",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Location of the attribute in the parent schema's list of attributes, starting at zero.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [
+ "PrimaryKey"
+ ],
+ "relationshipNames": [
+ "ForeignKey",
+ "ForeignKey"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SchemaAttributeDefinition",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "NestedSchemaAttribute",
+ "NestedSchemaAttribute",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "TypeEmbeddedAttribute",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "EventBroker": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "309dfc3c-663b-4732-957b-e4a084436314",
+ "name": "EventBroker",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "fe30a033-8f86-4d17-8986-e6166fa24177",
+ "name": "SoftwareServerCapability",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A capability that supports event-based services, typically around topics.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "version",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "capabilityVersion",
+ "attributeDescription": "Deprecated attribute. Use the capabilityVersion attribute to define the version number of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "patchLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Patch level of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "source",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Supplier of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "CloudService",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ProcessingState",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "MediaFile": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "c5ce5499-9582-42ea-936c-9771fbd475f8",
+ "name": "MediaFile",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f",
+ "name": "DataFile",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A data file containing unstructured data.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "embeddedMetadata",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Metadata properties embedded in the media file.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "fileName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The name of the file with extension.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "fileType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "File type descriptor typically extracted from the file name.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "pathName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The fully qualified physical location of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeUpdateTime attribute to define the last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeCreateTime attribute to describe the creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "Document"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "GroupedMedia",
+ "LinkedMedia",
+ "LinkedMedia"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "NestedFile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LinkedFile",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "LineageLogFile",
+ "Criticality",
+ "DataStoreEncoding",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "AuditLogFile",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "ExceptionLogFile",
+ "Campaign",
+ "MeteringLogFile",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "SubjectAreaOwner": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "c6fe40af-cdd6-4ca7-98c4-353d2612921f",
+ "name": "SubjectAreaOwner",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee",
+ "name": "GovernanceRole",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A role defining a responsibility to manage the development and maintenance of a subject area.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the role - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "headCount",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of people that can be appointed to the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of responsibility.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Brief description of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "CommunityMembership",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "ProjectManagement",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "PersonRoleAppointment",
+ "GovernanceResponsibilityAssignment",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "TeamMembership",
+ "TeamLeadership",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "DigitalServiceManagement",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "NoteLogAuthorship",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ConceptModelElement": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "06659195-3111-4c91-8931-a65f655378d9",
+ "name": "ConceptModelElement",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "492e343f-2516-43b8-94b0-5bae0760dda6",
+ "name": "DesignModelElement",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An abstract, but well-formed representation of a concept.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the model element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "technicalName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Technical name (no spaces) that can be used in artifact generation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of what the model element represents.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the model element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the creator of the model (person or organization).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "ConceptBeadLink",
+ "ConceptBeadAttribute",
+ "ConceptBead"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "DesignModelGroupMembership",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "DesignModelImplementation",
+ "DesignModelElementsInScope",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "DesignModelOwnership",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "MetamodelInstance",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ConnectorType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "954421eb-33a6-462d-a8ca-b5709a1bd0d4",
+ "name": "ConnectorType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A set of properties describing a type of connector.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "recognizedConfigurationProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of secured connection property names supported by the connector implementation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "targetTechnologyVersions",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of versions of the technology that the connector implementation supports.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "recognizedSecuredProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of secured connection property names supported by the connector implementation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "expectedDataFormat",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the format of the data expected by the connector implementation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Consumable name for the connector type, suitable for reports and user interfaces.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "connectorProviderClassName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the Java class that implements this connector type's open connector framework (OCF) connector provider.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the connector type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "connectorFrameworkName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the framework that the connector implements. The default is 'Open Connector Framework (OCF)'",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "connectorInterfaces",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of interfaces supported by the connector.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "supportedAssetTypeName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of asset supported by the connector implementation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "targetTechnologyName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the technology that the connectors access. For example, Apache Kafka.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "recognizedAdditionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of additional connection property names supported by the connector implementation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "connectorInterfaceLanguage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The programming language used to implement the connector's interface.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "targetTechnologyInterfaces",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Names of the technology's interfaces that the connectors use.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "targetTechnologySource",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the organization providing the technology that the connectors access. For example, Apache Software Foundation",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ConnectorImplementationChoice",
+ "ConnectionConnectorType"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DatabaseManager": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "68b35c1e-6c28-4ac3-94f9-2c3dbcbb79e9",
+ "name": "DatabaseManager",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "fe30a033-8f86-4d17-8986-e6166fa24177",
+ "name": "SoftwareServerCapability",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Defines a capability that manages data organized as relational schemas.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "version",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "capabilityVersion",
+ "attributeDescription": "Deprecated attribute. Use the capabilityVersion attribute to define the version number of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "patchLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Patch level of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "source",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Supplier of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "CloudService",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ProcessingState",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GovernanceMetric": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "9ada8e7b-823c-40f7-adf8-f164aabda77e",
+ "name": "GovernanceMetric",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 4,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A definition for how the effectiveness of the governance program is measured.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Consumable name suitable for user interfaces and reports.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the governance metric.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "measurement",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format or description of the measurements captured for this metric.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "target",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Definition of the measurement values that the governance definitions are trying to achieve.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "GovernanceDefinitionMetric",
+ "GovernanceResults"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "Connection": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253",
+ "name": "Connection",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A set of properties to identify and configure a connector instance.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Consumable name for the connection, suitable for reports and user interfaces.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the connection.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "securedProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "8fa603dd-c2c5-43fc-8ff4-92141f2414ad",
+ "name": "map",
+ "description": "A map from String to Object.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_UNKNOWN"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Private properties accessible only to the connector.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "configurationProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "8fa603dd-c2c5-43fc-8ff4-92141f2414ad",
+ "name": "map",
+ "description": "A map from String to Object.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_UNKNOWN"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Specific configuration properties for the underlying technology.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "userId",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User identity that the connector should use.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "clearPassword",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Password for the userId in clear text.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encryptedPassword",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Encrypted password that the connector needs to decrypt before use.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "VirtualConnection"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "EmbeddedConnection",
+ "ConnectionToAsset",
+ "ConnectionEndpoint",
+ "ConnectionConnectorType"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "RepositoryGovernanceEngine": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "2b3bed05-c227-47d7-87a3-139ab0568361",
+ "name": "RepositoryGovernanceEngine",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "3fa23d4a-aceb-422f-9301-04ed474c6f74",
+ "name": "GovernanceEngine",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A governance engine for open metadata repositories.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "version",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "capabilityVersion",
+ "attributeDescription": "Deprecated attribute. Use the capabilityVersion attribute to define the version number of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "patchLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Patch level of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "source",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Supplier of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "GovernanceActionTypeExecutor",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "SupportedGovernanceService",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "CloudService",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ProcessingState",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DataManager": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "82efa1fa-501f-4ac7-942c-6536c4a1cd61",
+ "name": "DataManager",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "fe30a033-8f86-4d17-8986-e6166fa24177",
+ "name": "SoftwareServerCapability",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A capability that manages collections of data.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "version",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "capabilityVersion",
+ "attributeDescription": "Deprecated attribute. Use the capabilityVersion attribute to define the version number of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "patchLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Patch level of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "source",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Supplier of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "CloudService",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ProcessingState",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "PortAlias": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "DFa5aEb1-bAb4-c25B-bDBD-B95Ce6fAB7F5",
+ "name": "PortAlias",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C",
+ "name": "Port",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Entity that describes the port for a composition process.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "portType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "b57Fbce7-42ac-71D1-D6a6-9f62Cb7C6dc3",
+ "name": "PortType",
+ "description": "Descriptor for a port that indicates its type.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "INPUT_PORT",
+ "description": "Data is passed into the process."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "OUTPUT_PORT",
+ "description": "Data is produced by the process."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "INOUT_PORT",
+ "description": "A request-response interface is provided by the process."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "OUTIN_PORT",
+ "description": "A request-response call is made by the process."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "OTHER",
+ "description": "None of the above."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of port",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the port",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "filterExpression",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expression used to filter data values passing through port.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "ProcessPort",
+ "PortDelegation",
+ "PortDelegation",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "APIManager": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "283a127d-3acd-4d64-b558-1fce9db9a35b",
+ "name": "APIManager",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "fe30a033-8f86-4d17-8986-e6166fa24177",
+ "name": "SoftwareServerCapability",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A capability that manages callable APIs.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "version",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "capabilityVersion",
+ "attributeDescription": "Deprecated attribute. Use the capabilityVersion attribute to define the version number of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "patchLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Patch level of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "source",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Supplier of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "CloudService",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ProcessingState",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GraphStore": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "86de3633-eec8-4bf9-aad1-e92df1ca2024",
+ "name": "GraphStore",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "30756d0b-362b-4bfa-a0de-fce6a8f47b47",
+ "name": "DataStore",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Identifies a data store as one that contains one or more graphs.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of graph store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed graph store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "pathName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The fully qualified physical location of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeUpdateTime attribute to define the last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeCreateTime attribute to describe the creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "DataStoreEncoding",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "MetadataRepositoryCohort": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "43e7dca2-c7b4-4cdf-a1ea-c9d4f7093893",
+ "name": "MetadataRepositoryCohort",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A group of collaborating open metadata repositories.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the scope of the open metadata repository cohort.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "topic",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the topic used to exchange registration, type definitions and metadata instances between the members of the open metadata repository cohort.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "MetadataCohortPeer"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "Agreement": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "88886b53-c839-48fa-bcfa-83ebcf8abbb5",
+ "name": "Agreement",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An agreement between parties.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "agreementType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The type of agreement - values typically defined in a valid value set.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short name for the terms and conditions.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "An overview of the terms and conditions.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "DigitalSubscription"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ContractLink",
+ "AgreementItem",
+ "AgreementActor"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "TransientEmbeddedProcess": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "9bd9d37a-b2ae-48ec-9776-080f667e91c5",
+ "name": "TransientEmbeddedProcess",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "8145967e-bb83-44b2-bc8c-68112c6a5a06",
+ "name": "EmbeddedProcess",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A child process that runs for a short period of time.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula for the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "ProcessPort",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "SchemaTypeImplementation",
+ "ImplementedBy",
+ "ImplementedBy",
+ "GovernanceProcessImplementation",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "ProcessHierarchy",
+ "ProcessHierarchy",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "JSONFile": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "baa608fa-510e-42d7-95cd-7c12fa37bb35",
+ "name": "JSONFile",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f",
+ "name": "DataFile",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A description of a file that follows the JavaScript Object Notation specification.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "fileName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The name of the file with extension.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "fileType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "File type descriptor typically extracted from the file name.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "pathName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The fully qualified physical location of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeUpdateTime attribute to define the last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeCreateTime attribute to describe the creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "NestedFile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LinkedFile",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "LineageLogFile",
+ "Criticality",
+ "DataStoreEncoding",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "AuditLogFile",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "ExceptionLogFile",
+ "Campaign",
+ "MeteringLogFile",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "KafkaTopic": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "f2f5dae9-8410-420f-81f4-5d08543e07aa",
+ "name": "KafkaTopic",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "29100f49-338e-4361-b05d-7e4e8e818325",
+ "name": "Topic",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An event topic supported by Apache Kafka.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "partitions",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of Kafka partitions.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "replicas",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of Kafka replicas.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "topicType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of topic.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula used to create the data set - can reference query identifiers located in DataContentForDataSet relationships.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "TopicSubscribers",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "GovernanceResults",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "GovernanceMeasurementsResultsDataSet",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "LocationOwner": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "3437fd1d-5098-426c-9b55-c94d1fc5dc0e",
+ "name": "LocationOwner",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee",
+ "name": "GovernanceRole",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A role defining a responsibility for activity at a particular location.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the role - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "headCount",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of people that can be appointed to the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of responsibility.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Brief description of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "CommunityMembership",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "ProjectManagement",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "PersonRoleAppointment",
+ "GovernanceResponsibilityAssignment",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "TeamMembership",
+ "TeamLeadership",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "DigitalServiceManagement",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "NoteLogAuthorship",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "BusinessCapability": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "7cc6bcb2-b573-4719-9412-cf6c3f4bbb15",
+ "name": "BusinessCapability",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 4,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Describes a function, capability or skill set.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the business capability - if null use qualifiedName.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short displayable name for the business capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "businessCapabilityType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "fb7c40cf-8d95-48ff-ba8b-e22bff6f5a91",
+ "name": "BusinessCapabilityType",
+ "description": "Defines the type or category of business capability.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Unclassified",
+ "description": "The business capability has not been classified."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "BusinessService",
+ "description": "A functional business capability."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "BusinessArea",
+ "description": "A collection of related business services."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance definition status."
+ }
+ ],
+ "defaultValue": {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Unclassified",
+ "description": "The business capability has not been classified."
+ }
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of business capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the business capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "fb7c40cf-8d95-48ff-ba8b-e22bff6f5a91",
+ "name": "BusinessCapabilityType",
+ "description": "Defines the type or category of business capability.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Unclassified",
+ "description": "The business capability has not been classified."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "BusinessService",
+ "description": "A functional business capability."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "BusinessArea",
+ "description": "A collection of related business services."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance definition status."
+ }
+ ],
+ "defaultValue": {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Unclassified",
+ "description": "The business capability has not been classified."
+ }
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of business capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "fb7c40cf-8d95-48ff-ba8b-e22bff6f5a91",
+ "name": "BusinessCapabilityType",
+ "description": "Defines the type or category of business capability.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Unclassified",
+ "description": "The business capability has not been classified."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "BusinessService",
+ "description": "A functional business capability."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "BusinessArea",
+ "description": "A collection of related business services."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance definition status."
+ }
+ ],
+ "defaultValue": {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Unclassified",
+ "description": "The business capability has not been classified."
+ }
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the businessCapabilityType attribute to describe the type of business capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "OrganizationalCapability",
+ "DigitalSupport"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "CohortRegistryStore": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "2bfdcd0d-68bb-42c3-ae75-e9fb6c3dff70",
+ "name": "CohortRegistryStore",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "30756d0b-362b-4bfa-a0de-fce6a8f47b47",
+ "name": "DataStore",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A data store containing cohort membership registration details.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "pathName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The fully qualified physical location of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeUpdateTime attribute to define the last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeCreateTime attribute to describe the creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "DataStoreEncoding",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GovernanceActionProcess": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "4d3a2b8d-9e2e-4832-b338-21c74e45b238",
+ "name": "GovernanceActionProcess",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050",
+ "name": "Process",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A process implemented by chained governance actions.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that recognizes this process.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula for the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "GovernanceActionFlow"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "ProcessPort",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "SchemaTypeImplementation",
+ "ImplementedBy",
+ "ImplementedBy",
+ "GovernanceProcessImplementation",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "ProcessHierarchy",
+ "ProcessHierarchy",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GovernanceRepresentative": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "6046bdf8-a37e-4bc4-b51d-325d8c31a96c",
+ "name": "GovernanceRepresentative",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee",
+ "name": "GovernanceRole",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A role defining a responsibility to contribute to the operation of a governance activity. Often represents the views of one or more interested parties.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the role - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "headCount",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of people that can be appointed to the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of responsibility.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Brief description of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "CommunityMembership",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "ProjectManagement",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "PersonRoleAppointment",
+ "GovernanceResponsibilityAssignment",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "TeamMembership",
+ "TeamLeadership",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "DigitalServiceManagement",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "NoteLogAuthorship",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "Port": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C",
+ "name": "Port",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An interface where data flows in and/or out of the process.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "portType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "b57Fbce7-42ac-71D1-D6a6-9f62Cb7C6dc3",
+ "name": "PortType",
+ "description": "Descriptor for a port that indicates its type.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "INPUT_PORT",
+ "description": "Data is passed into the process."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "OUTPUT_PORT",
+ "description": "Data is produced by the process."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "INOUT_PORT",
+ "description": "A request-response interface is provided by the process."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "OUTIN_PORT",
+ "description": "A request-response call is made by the process."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "OTHER",
+ "description": "None of the above."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of port",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the port",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "filterExpression",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expression used to filter data values passing through port.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "PortAlias",
+ "PortImplementation"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ProcessPort",
+ "PortDelegation",
+ "PortDelegation",
+ "PortSchema"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "QuerySchemaType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "4d11bdbb-5d4a-488b-9f16-bf1e34d34dd9",
+ "name": "QuerySchemaType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "126962bf-dd26-4fcf-97d8-d0ad1fdd2d50",
+ "name": "RootSchemaType",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A structure describing data that being queried and formatted to support a user display or report.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "APIResponse",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeDefinition",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "ImplementedBy",
+ "ImplementedBy",
+ "APIRequest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "SolutionPortSchema",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "PortImplementation": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "ADbbdF06-a6A3-4D5F-7fA3-DB4Cb0eDeC0E",
+ "name": "PortImplementation",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C",
+ "name": "Port",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Entity that describes a port with a concrete implementation.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "portType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "b57Fbce7-42ac-71D1-D6a6-9f62Cb7C6dc3",
+ "name": "PortType",
+ "description": "Descriptor for a port that indicates its type.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "INPUT_PORT",
+ "description": "Data is passed into the process."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "OUTPUT_PORT",
+ "description": "Data is produced by the process."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "INOUT_PORT",
+ "description": "A request-response interface is provided by the process."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "OUTIN_PORT",
+ "description": "A request-response call is made by the process."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "OTHER",
+ "description": "None of the above."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of port",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the port",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "filterExpression",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expression used to filter data values passing through port.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "ProcessPort",
+ "PortDelegation",
+ "PortDelegation",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DataClassAnnotation": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "0c8a3673-04ef-406f-899d-e88de67f6176",
+ "name": "DataClassAnnotation",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0",
+ "name": "DataFieldAnnotation",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An assessment of the match between a data class and the values stored in a data field, or number of data fields, in an Asset.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "candidateDataClassGUIDs",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of possible matching data classes.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "matchingValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "33a91510-92ee-4825-9f49-facd7a6f9db6",
+ "name": "long",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_LONG"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of values that match the data class specification.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "nonMatchingValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "33a91510-92ee-4825-9f49-facd7a6f9db6",
+ "name": "long",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_LONG"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of values that don't match the data class specification.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the findings.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "confidenceLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Level of certainty in the accuracy of the results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "analysisStep",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The step in the pipeline that produced the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "expression",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expression used to create the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "jsonProperties",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties used in the specification.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated attribute. Use the Anchors classification instead.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "annotationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the type of annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties discovered during the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "explanation",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Explanation of the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "DataFieldAnalysis",
+ "AnnotationReviewLink",
+ "AnnotationExtension",
+ "AnnotationExtension",
+ "RelatedIntegrationReport",
+ "DiscoveredAnnotation",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "RepositoryGovernanceService": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "978e7674-8231-4158-a4e3-a5ccdbcad60e",
+ "name": "RepositoryGovernanceService",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "191d870c-26f4-4310-a021-b8ca8772719d",
+ "name": "GovernanceService",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A governance service for open metadata repositories.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "implementationLanguage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the language used to implement this component.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula for the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "ProcessPort",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "GovernanceRuleImplementation",
+ "ServerAssetUse",
+ "SchemaTypeImplementation",
+ "ImplementedBy",
+ "ImplementedBy",
+ "GovernanceProcessImplementation",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "SupportedGovernanceService",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "ProcessHierarchy",
+ "ProcessHierarchy",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DisplayDataField": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "46f9ea33-996e-4c62-a67d-803df75ef9d4",
+ "name": "DisplayDataField",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9",
+ "name": "SchemaAttribute",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A data display field.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "inputField",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Is this data field accepting new data from the end user or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "aliases",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of aliases for attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "defaultValueOverride",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Initial value for the attribute (overriding the default value of its type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minimumLength",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum length of the data value (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "precision",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of digits after the decimal point.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "length",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Length of the data field (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "orderedValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether the values are ordered or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "allowsDuplicateValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether duplicates of the same value are allowed or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "significantDigits",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of significant digits before the decimal point (zero means it is an integer).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "maxCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Maximum number of occurrences of this attribute allowed (-1 = infinite).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "cardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "maxCardinality",
+ "attributeDescription": "Number of occurrences of this attribute allowed (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum number of occurrences of this attribute allowed (0 = optional, 1+ = mandatory).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "nativeClass",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Native class used by the client to represent this element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "sortOrder",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "aaa4df8f-1aca-4de8-9abd-1ef2aadba300",
+ "name": "DataItemSortOrder",
+ "description": "Defines the suggested order that data values in this data item should be sorted by.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Ascending",
+ "description": "Sort the data values so that they increase in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Descending",
+ "description": "Sort the data values so that they decrease in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Ignore",
+ "description": "No specific sort order."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Suggested ordering of values in this attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isNullable",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Accepts null values or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "displayName",
+ "attributeDescription": "Name of schema attribute (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "position",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Location of the attribute in the parent schema's list of attributes, starting at zero.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SchemaAttributeDefinition",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "NestedSchemaAttribute",
+ "NestedSchemaAttribute",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "TypeEmbeddedAttribute",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "Process": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050",
+ "name": "Process",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "896d14c2-7522-4f6c-8519-757711943fe6",
+ "name": "Asset",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Well-defined sequence of activities performed by people or software components.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula for the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "DeployedSoftwareComponent",
+ "GovernanceActionProcess",
+ "EmbeddedProcess"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ProcessPort",
+ "SchemaTypeImplementation",
+ "GovernanceProcessImplementation",
+ "ProcessOutput",
+ "ProcessHierarchy",
+ "ProcessHierarchy"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "RootSchemaType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "126962bf-dd26-4fcf-97d8-d0ad1fdd2d50",
+ "name": "RootSchemaType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "786a6199-0ce8-47bf-b006-9ace1c5510e4",
+ "name": "ComplexSchemaType",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "The root of a complex schema - normally attaches to an asset or port.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "APISchemaType",
+ "DocumentSchemaType",
+ "QuerySchemaType",
+ "DisplayDataSchemaType",
+ "EventType",
+ "TabularSchemaType",
+ "RelationalDBSchemaType",
+ "ObjectSchemaType"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "APIResponse",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeDefinition",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "ImplementedBy",
+ "ImplementedBy",
+ "APIRequest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "SolutionPortSchema",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GovernanceActionType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "92e20083-0393-40c0-a95b-090724a91ddc",
+ "name": "GovernanceActionType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 4,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A description of a governance action that acts as a template when creating governance action instances.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "5ce92a70-b86a-4e0d-a9d7-fc961121de97",
+ "name": "OwnerType",
+ "description": "Defines the type of identifier for a governance owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier used to show which governance domain this action type belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "producedGuards",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of guards that this action type produces.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ignoreMultipleTriggers",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Trigger one or many governance action instances?",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the action type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the action type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "supportedGuards",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "producedGuards",
+ "attributeDescription": "Deprecated attribute. Use the producedGuards attribute to describe the supported guards.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "waitTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The minimum number of minutes that the governance engine should wait before calling the governance service.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "GovernanceActionFlow",
+ "GovernanceActionTypeExecutor",
+ "NextGovernanceActionType",
+ "NextGovernanceActionType"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "MetadataAccessService": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "0bc3a16a-e8ed-4ad0-a302-0773365fdef0",
+ "name": "MetadataAccessService",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "f3f69251-adb1-4042-9d95-70082f95a028",
+ "name": "SoftwareService",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Defines a capability that provides access to stored metadata.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "version",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "capabilityVersion",
+ "attributeDescription": "Deprecated attribute. Use the capabilityVersion attribute to define the version number of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "patchLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Patch level of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "source",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Supplier of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "CloudService",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ProcessingState",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "SearchKeyword": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e",
+ "name": "SearchKeyword",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d",
+ "name": "OpenMetadataRoot",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A shareable keyword to help locating relevant assets.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "ODPi Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "keyword",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the keyword.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the keyword to clarify its meaning/uses.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "RelatedKeyword",
+ "RelatedKeyword",
+ "SearchKeywordLink"
+ ],
+ "inheritedRelationshipNames": [
+ "RelatedIntegrationReport",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "SchemaType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f",
+ "name": "SchemaType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "718d4244-8559-49ed-ad5a-10e5c305a656",
+ "name": "SchemaElement",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A specific type description.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "LiteralSchemaType",
+ "ExternalSchemaType",
+ "SimpleSchemaType",
+ "ComplexSchemaType",
+ "MapSchemaType",
+ "SchemaTypeChoice",
+ "APIOperation"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "APIResponse",
+ "AssetSchemaType",
+ "LinkedExternalSchemaType",
+ "SchemaTypeDefinition",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "APIRequest",
+ "SolutionPortSchema",
+ "SchemaAttributeType",
+ "PortSchema"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DeployedReportType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "ed53a480-e6d4-44f1-aac7-3fac60bbb00e",
+ "name": "DeployedReportType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "896d14c2-7522-4f6c-8519-757711943fe6",
+ "name": "Asset",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A template for generating report.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "id",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Id of report.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Author of the report.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "url",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "url of the report.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createdTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Report create time.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "lastModifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Report last modified time.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "lastModifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Report last modifier.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "InformationSupplyChain": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "fa6de61d-98cb-48c4-b21f-ab7186235fd4",
+ "name": "InformationSupplyChain",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A description of a managed flow of information between multiple systems.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2018-01-18T22:04:00.008+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PREPARED",
+ "PROPOSED",
+ "APPROVED",
+ "REJECTED",
+ "ACTIVE",
+ "DISABLED",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the information supply chain.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Brief description of the information supply chain.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of applicability of the information supply chain to the organization.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "purposes",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Reasons to have this information supply chain.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "InformationSupplyChainComposition"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DigitalServiceManager": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "6dfba6ce-e925-4281-880d-d04100c5b991",
+ "name": "DigitalServiceManager",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285",
+ "name": "PersonRole",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Person managing a digital service.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2018-01-18T22:04:00.008+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the role - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "headCount",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of people that can be appointed to the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of responsibility.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Brief description of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "CommunityMembership",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "ProjectManagement",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "PersonRoleAppointment",
+ "GovernanceResponsibilityAssignment",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "TeamMembership",
+ "TeamLeadership",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "DigitalServiceManagement",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "NoteLogAuthorship",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "FileFolder": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "229ed5cc-de31-45fc-beb4-9919fd247398",
+ "name": "FileFolder",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "30756d0b-362b-4bfa-a0de-fce6a8f47b47",
+ "name": "DataStore",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A description of a folder (directory) in a file system.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "pathName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The fully qualified physical location of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeUpdateTime attribute to define the last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeCreateTime attribute to describe the creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "DataFolder"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "NestedFile",
+ "FolderHierarchy",
+ "FolderHierarchy",
+ "LinkedFile"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "DataStoreEncoding",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ActorProfile": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35",
+ "name": "ActorProfile",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec",
+ "name": "Actor",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Description of a person, team or automated process that is working with data.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the actor.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the actor.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "Team",
+ "Person",
+ "ITProfile"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ContactThrough",
+ "ProfileIdentity",
+ "ProfileLocation"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ClassificationAnnotation": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "23e8287f-5c7e-4e03-8bd3-471fc7fc029c",
+ "name": "ClassificationAnnotation",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0",
+ "name": "DataFieldAnnotation",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A recommendation for classifications that could be added to all or part of an Asset.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "candidateClassifications",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Potential classification names and properties as JSON.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the findings.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "confidenceLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Level of certainty in the accuracy of the results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "analysisStep",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The step in the pipeline that produced the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "expression",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expression used to create the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "jsonProperties",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties used in the specification.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated attribute. Use the Anchors classification instead.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "annotationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the type of annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties discovered during the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "explanation",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Explanation of the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "DataFieldAnalysis",
+ "AnnotationReviewLink",
+ "AnnotationExtension",
+ "AnnotationExtension",
+ "RelatedIntegrationReport",
+ "DiscoveredAnnotation",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "ToDo": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "93dbc58d-c826-4bc2-b36f-195148d46f86",
+ "name": "ToDo",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An action assigned to an individual.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "completionTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When the requested action was completed.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "creationTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When the requested action was identified.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name or title of the todo/action.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the required action.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "toDoType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of to do - typically managed in a valid value set and used in stewardship automation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "priority",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "How urgent is this action?",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "dueTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When the requested action needs to be completed.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "status",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "7197ea39-334d-403f-a70b-d40231092df7",
+ "name": "ToDoStatus",
+ "description": "Progress on completing an action (to do).",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Open",
+ "description": "No action has been taken."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "InProgress",
+ "description": "Work is underway to complete the action."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Waiting",
+ "description": "Work is blocked waiting for resource of another action to complete."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Complete",
+ "description": "The action has been completed successfully."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Abandoned",
+ "description": "Work has stopped on the action and will not recommence."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "How complete is the action?",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ToDoSource",
+ "Actions",
+ "ActionTarget"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "SimpleSchemaType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "b5ec6e07-6419-4225-9dc4-fb55aba255c6",
+ "name": "SimpleSchemaType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f",
+ "name": "SchemaType",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A single valued type.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "dataType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type name for the data stored in this schema element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "defaultValue",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Initial value for data stored in this schema element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "EnumSchemaType",
+ "PrimitiveSchemaType"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "APIResponse",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeDefinition",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "ImplementedBy",
+ "ImplementedBy",
+ "APIRequest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "SolutionPortSchema",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DesignModelElement": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "492e343f-2516-43b8-94b0-5bae0760dda6",
+ "name": "DesignModelElement",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An abstract, but well-formed representation of a concept, activity, architecture or other design element.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the model element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "technicalName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Technical name (no spaces) that can be used in artifact generation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of what the model element represents.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the model element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the creator of the model (person or organization).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "ConceptModelElement",
+ "DesignModelGroup"
+ ],
+ "classificationNames": [
+ "MetamodelInstance"
+ ],
+ "relationshipNames": [
+ "DesignModelGroupMembership",
+ "DesignModelImplementation",
+ "DesignModelElementsInScope",
+ "DesignModelOwnership"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ReferenceCodeMappingTable": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "9c6ec0c6-0b26-4414-bffe-089144323213",
+ "name": "ReferenceCodeMappingTable",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1449911c-4f44-4c22-abc0-7540154feefb",
+ "name": "DataSet",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A data set containing mappings between code values from different data sets.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula used to create the data set - can reference query identifiers located in DataContentForDataSet relationships.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "GovernanceResults",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "GovernanceMeasurementsResultsDataSet",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "BareMetalComputer": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "8ef355d4-5cd7-4038-8337-62671b088920",
+ "name": "BareMetalComputer",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1abd16db-5b8a-4fd9-aee5-205db3febe99",
+ "name": "Host",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A computer that is hosting software directly on its operating system.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "ServerEndpoint",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "HostClusterMember",
+ "OperatingPlatformUse",
+ "DigitalServiceProduct",
+ "AttachedStorage",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "StewardshipServer",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Webserver",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "RepositoryProxy",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "ApplicationServer",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "CloudProvider",
+ "FileSystem",
+ "DatabaseServer",
+ "Impact",
+ "NotificationManager",
+ "ServerPurpose",
+ "MetadataServer",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "GovernanceDaemon",
+ "ExceptionBacklog",
+ "Ownership",
+ "IntegrationServer",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "SecurityGroup": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "042d9b5c-677e-477b-811f-1c39bf716759",
+ "name": "SecurityGroup",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "d8f6eb5b-36f0-49bd-9b25-bf16f370d1ec",
+ "name": "TechnicalControl",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A collection of users that should be given the same security privileges.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "distinguishedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The LDAP distinguished name (DN) that gives a unique positional name in the LDAP DIT.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "implementationDescription",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of how this governance control should be implemented.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short summary of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "implications",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Impact on the organization, people and services when adopting the recommendation in this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "outcomes",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expected outcomes.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Scope of impact for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Detailed description of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "title",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Title describing the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "priority",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Relative importance of this governance definition compared to its peers.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "results",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Actual results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "AssociatedGroup"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "GovernanceDefinitionMetric",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "GovernanceImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "ExecutionPointUse",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "GovernanceControlLink",
+ "GovernanceControlLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DataFolder": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "9f1fb984-db15-43ee-85fb-f8b0353bfb8b",
+ "name": "DataFolder",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "229ed5cc-de31-45fc-beb4-9919fd247398",
+ "name": "FileFolder",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A folder (directory) in a file system that contains a collection of data.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "pathName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The fully qualified physical location of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeUpdateTime attribute to define the last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeCreateTime attribute to describe the creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "NestedFile",
+ "ReferenceableFacet",
+ "License",
+ "FolderHierarchy",
+ "FolderHierarchy",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LinkedFile",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "DataStoreEncoding",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ProjectManager": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "0798569f-0c16-4a1f-86d9-e2e89568f7fd",
+ "name": "ProjectManager",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285",
+ "name": "PersonRole",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An person with overall responsibility for one or more project.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the role - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "headCount",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of people that can be appointed to the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of responsibility.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Brief description of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "CommunityMembership",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "ProjectManagement",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "PersonRoleAppointment",
+ "GovernanceResponsibilityAssignment",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "TeamMembership",
+ "TeamLeadership",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "DigitalServiceManagement",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "NoteLogAuthorship",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GraphSchemaType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "983c5e72-801b-4e42-bc51-f109527f2317",
+ "name": "GraphSchemaType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "786a6199-0ce8-47bf-b006-9ace1c5510e4",
+ "name": "ComplexSchemaType",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A schema type for a graph data structure.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "APIResponse",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeDefinition",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "ImplementedBy",
+ "ImplementedBy",
+ "APIRequest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "SolutionPortSchema",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "Glossary": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4",
+ "name": "Glossary",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A collection of related glossary terms.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Consumable name for the glossary, suitable for reports and user interfaces.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the glossary.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "language",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Natural language used in the glossary.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on the usage of this glossary content.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [
+ "Taxonomy",
+ "CanonicalVocabulary",
+ "EditingGlossary"
+ ],
+ "relationshipNames": [
+ "TermAnchor",
+ "ExternallySourcedGlossary",
+ "CategoryAnchor"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "APIParameter": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "10277b13-509c-480e-9829-bc16d0eafc53",
+ "name": "APIParameter",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9",
+ "name": "SchemaAttribute",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A data value that is part of a API definition.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "parameterType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "What type of parameter is it",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "aliases",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of aliases for attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "defaultValueOverride",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Initial value for the attribute (overriding the default value of its type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minimumLength",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum length of the data value (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "precision",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of digits after the decimal point.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "length",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Length of the data field (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "orderedValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether the values are ordered or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "allowsDuplicateValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether duplicates of the same value are allowed or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "significantDigits",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of significant digits before the decimal point (zero means it is an integer).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "maxCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Maximum number of occurrences of this attribute allowed (-1 = infinite).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "cardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "maxCardinality",
+ "attributeDescription": "Number of occurrences of this attribute allowed (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum number of occurrences of this attribute allowed (0 = optional, 1+ = mandatory).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "nativeClass",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Native class used by the client to represent this element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "sortOrder",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "aaa4df8f-1aca-4de8-9abd-1ef2aadba300",
+ "name": "DataItemSortOrder",
+ "description": "Defines the suggested order that data values in this data item should be sorted by.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Ascending",
+ "description": "Sort the data values so that they increase in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Descending",
+ "description": "Sort the data values so that they decrease in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Ignore",
+ "description": "No specific sort order."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Suggested ordering of values in this attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isNullable",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Accepts null values or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "displayName",
+ "attributeDescription": "Name of schema attribute (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "position",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Location of the attribute in the parent schema's list of attributes, starting at zero.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SchemaAttributeDefinition",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "NestedSchemaAttribute",
+ "NestedSchemaAttribute",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "TypeEmbeddedAttribute",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "FingerprintAnnotation": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "b3adca2a-ce66-4b29-bf2e-7406ada8ab49",
+ "name": "FingerprintAnnotation",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0",
+ "name": "DataFieldAnnotation",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An annotation capturing asset fingerprint information.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "fingerprint",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "A string value that represents the content of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "hash",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "An integer value that represents the content of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "fingerprintAlgorithm",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The algorithm use to generate either the fingerprint.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "hashAlgorithm",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The algorithm use to generate either the hash.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the findings.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "confidenceLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Level of certainty in the accuracy of the results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "analysisStep",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The step in the pipeline that produced the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "expression",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expression used to create the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "jsonProperties",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties used in the specification.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated attribute. Use the Anchors classification instead.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "annotationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the type of annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties discovered during the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "explanation",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Explanation of the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "DataFieldAnalysis",
+ "AnnotationReviewLink",
+ "AnnotationExtension",
+ "AnnotationExtension",
+ "RelatedIntegrationReport",
+ "DiscoveredAnnotation",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "QueryDataField": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "0eb92215-52b1-4fac-92e7-ff02ff385a68",
+ "name": "QueryDataField",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9",
+ "name": "SchemaAttribute",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A data field that is returned by a query.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "aliases",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of aliases for attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "defaultValueOverride",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Initial value for the attribute (overriding the default value of its type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minimumLength",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum length of the data value (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "precision",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of digits after the decimal point.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "length",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Length of the data field (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "orderedValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether the values are ordered or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "allowsDuplicateValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether duplicates of the same value are allowed or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "significantDigits",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of significant digits before the decimal point (zero means it is an integer).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "maxCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Maximum number of occurrences of this attribute allowed (-1 = infinite).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "cardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "maxCardinality",
+ "attributeDescription": "Number of occurrences of this attribute allowed (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum number of occurrences of this attribute allowed (0 = optional, 1+ = mandatory).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "nativeClass",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Native class used by the client to represent this element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "sortOrder",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "aaa4df8f-1aca-4de8-9abd-1ef2aadba300",
+ "name": "DataItemSortOrder",
+ "description": "Defines the suggested order that data values in this data item should be sorted by.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Ascending",
+ "description": "Sort the data values so that they increase in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Descending",
+ "description": "Sort the data values so that they decrease in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Ignore",
+ "description": "No specific sort order."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Suggested ordering of values in this attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isNullable",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Accepts null values or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "displayName",
+ "attributeDescription": "Name of schema attribute (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "position",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Location of the attribute in the parent schema's list of attributes, starting at zero.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SchemaAttributeDefinition",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "NestedSchemaAttribute",
+ "NestedSchemaAttribute",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "TypeEmbeddedAttribute",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ComponentOwner": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "21756af1-06c9-4b06-87d2-3ef911f0a58a",
+ "name": "ComponentOwner",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee",
+ "name": "GovernanceRole",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An ownership role for a component - typically part of an asset.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the role - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "headCount",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of people that can be appointed to the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of responsibility.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Brief description of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "CommunityMembership",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "ProjectManagement",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "PersonRoleAppointment",
+ "GovernanceResponsibilityAssignment",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "TeamMembership",
+ "TeamLeadership",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "DigitalServiceManagement",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "NoteLogAuthorship",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ValidValueDefinition": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "09b2133a-f045-42cc-bb00-ee602b74c618",
+ "name": "ValidValueDefinition",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A single valid value for a referenceable.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Indicates that this value is deprecated and all uses should be discontinued as soon as possible.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "preferredValue",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Preferred implementation value.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of how to use the valid value.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Situations where this value can be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the valid value.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of what the value represents.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "ValidValuesSet"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ValidValueMember",
+ "ReferenceValueAssignment",
+ "ValidValuesImplementation",
+ "ValidValuesAssignment",
+ "ValidValuesMapping",
+ "ValidValuesMapping"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DivergentRelationshipAnnotation": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "b6c6938a-fdc9-438f-893c-0b5b1d4a5bb3",
+ "name": "DivergentRelationshipAnnotation",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "251e443c-dee0-47fa-8a73-1a9d511915a0",
+ "name": "DivergentDuplicateAnnotation",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Annotation documenting differences in a relationships of acknowledged duplicates.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2018-01-18T22:04:00.008+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "divergentRelationshipGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier of the relationship where a difference has been found.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "divergentRelationshipPropertyNames",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Names of the properties where a difference has been found.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "duplicateAnchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier of the duplicate where the differences have been found.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the findings.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "confidenceLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Level of certainty in the accuracy of the results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "analysisStep",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The step in the pipeline that produced the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "expression",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expression used to create the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "jsonProperties",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties used in the specification.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated attribute. Use the Anchors classification instead.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "annotationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the type of annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties discovered during the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "explanation",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Explanation of the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "AnnotationReviewLink",
+ "AnnotationExtension",
+ "AnnotationExtension",
+ "RelatedIntegrationReport",
+ "DiscoveredAnnotation",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "Form": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "8078e3d1-0c63-4ace-aafa-68498b39ccd6",
+ "name": "Form",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1449911c-4f44-4c22-abc0-7540154feefb",
+ "name": "DataSet",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A collection of data items used to request activity.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula used to create the data set - can reference query identifiers located in DataContentForDataSet relationships.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "GovernanceResults",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "GovernanceMeasurementsResultsDataSet",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "EnumSchemaType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "24b092ac-42e9-43dc-aeca-eb034ce307d9",
+ "name": "EnumSchemaType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "b5ec6e07-6419-4225-9dc4-fb55aba255c6",
+ "name": "SimpleSchemaType",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A single valued type with fixed list of valid values.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "dataType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type name for the data stored in this schema element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "defaultValue",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Initial value for data stored in this schema element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "APIResponse",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeDefinition",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "ImplementedBy",
+ "ImplementedBy",
+ "APIRequest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "SolutionPortSchema",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "Rating": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "7299d721-d17f-4562-8286-bcd451814478",
+ "name": "Rating",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 3,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d",
+ "name": "OpenMetadataRoot",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Quantitative feedback related to an item.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "review",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional comments associated with the rating.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated attribute. Use the Anchors classification instead.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "stars",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "77fea3ef-6ec1-4223-8408-38567e9d3c93",
+ "name": "StarRating",
+ "description": "Level of support or appreciation for an item.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "NotRecommended",
+ "description": "This content is not recommended."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "OneStar",
+ "description": "One star rating."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "TwoStar",
+ "description": "Two star rating."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "ThreeStar",
+ "description": "Three star rating."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "FourStar",
+ "description": "Four star rating."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "FiveStar",
+ "description": "Five star rating."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Rating level provided.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "AttachedRating"
+ ],
+ "inheritedRelationshipNames": [
+ "RelatedIntegrationReport",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "PrimitiveSchemaType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "f0f75fba-9136-4082-8352-0ad74f3c36ed",
+ "name": "PrimitiveSchemaType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "b5ec6e07-6419-4225-9dc4-fb55aba255c6",
+ "name": "SimpleSchemaType",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A specific primitive type.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "dataType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type name for the data stored in this schema element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "defaultValue",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Initial value for data stored in this schema element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "APIResponse",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeDefinition",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "ImplementedBy",
+ "ImplementedBy",
+ "APIRequest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "SolutionPortSchema",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DesignPattern": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "6b60a73e-47bc-4096-9073-f94cab975958",
+ "name": "DesignPattern",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A description of a common solution with details of the problems it solves and its pros and cons.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "context",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the situation where this pattern may be useful.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "forces",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the aspects of the situation that make the problem hard to solve.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "problemStatement",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the types of problem that this design pattern provides a solution to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "problemExample",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "One or more examples of the problem and its consequences.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "solutionDescription",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of how the solution works.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "solutionExample",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Illustrations of how the solution resolves the problem examples.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "benefits",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The positive outcomes from using this pattern.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "liabilities",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The additional issues that need to be considered when using this pattern.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "RelatedDesignPattern",
+ "RelatedDesignPattern"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DisplayDataSchemaType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "2f5796f5-3fac-4501-9d0d-207aa8620d16",
+ "name": "DisplayDataSchemaType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "126962bf-dd26-4fcf-97d8-d0ad1fdd2d50",
+ "name": "RootSchemaType",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A structure describing data that is to be displayed.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "APIResponse",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeDefinition",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "ImplementedBy",
+ "ImplementedBy",
+ "APIRequest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "SolutionPortSchema",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DisplayDataContainer": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "f2a4ff99-1954-48c0-8081-92d1a4dfd910",
+ "name": "DisplayDataContainer",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9",
+ "name": "SchemaAttribute",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A grouping of display data fields (and nested containers) for a report, form or similar data display asset.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "aliases",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of aliases for attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "defaultValueOverride",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Initial value for the attribute (overriding the default value of its type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minimumLength",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum length of the data value (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "precision",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of digits after the decimal point.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "length",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Length of the data field (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "orderedValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether the values are ordered or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "allowsDuplicateValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether duplicates of the same value are allowed or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "significantDigits",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of significant digits before the decimal point (zero means it is an integer).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "maxCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Maximum number of occurrences of this attribute allowed (-1 = infinite).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "cardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "maxCardinality",
+ "attributeDescription": "Number of occurrences of this attribute allowed (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum number of occurrences of this attribute allowed (0 = optional, 1+ = mandatory).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "nativeClass",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Native class used by the client to represent this element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "sortOrder",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "aaa4df8f-1aca-4de8-9abd-1ef2aadba300",
+ "name": "DataItemSortOrder",
+ "description": "Defines the suggested order that data values in this data item should be sorted by.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Ascending",
+ "description": "Sort the data values so that they increase in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Descending",
+ "description": "Sort the data values so that they decrease in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Ignore",
+ "description": "No specific sort order."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Suggested ordering of values in this attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isNullable",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Accepts null values or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "displayName",
+ "attributeDescription": "Name of schema attribute (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "position",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Location of the attribute in the parent schema's list of attributes, starting at zero.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SchemaAttributeDefinition",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "NestedSchemaAttribute",
+ "NestedSchemaAttribute",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "TypeEmbeddedAttribute",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DeployedReport": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "e9077f4f-955b-4d7b-b1f7-12ee769ff0c3",
+ "name": "DeployedReport",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1449911c-4f44-4c22-abc0-7540154feefb",
+ "name": "DataSet",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A collection if data items that describe a situation. This is an instance of a report.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "id",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Id of report.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Author of the report.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "url",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "url of the report.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createdTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Report create time.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "lastModifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Report last modified time.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "lastModifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Report last modifier.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula used to create the data set - can reference query identifiers located in DataContentForDataSet relationships.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "GovernanceResults",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "GovernanceMeasurementsResultsDataSet",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ProjectCharter": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "f96b5a32-42c1-4a74-8f77-70a81cec783d",
+ "name": "ProjectCharter",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Describes the goals, scope and authority of a project.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "mission",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The high-level goal of the project.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "projectType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short description of type of the project.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "purposes",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of purposes for having the project.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "ProjectCharterLink"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "SoftwareServerCapability": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "fe30a033-8f86-4d17-8986-e6166fa24177",
+ "name": "SoftwareServerCapability",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 3,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69",
+ "name": "SoftwareCapability",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A software capability such as an application, that is deployed to a software server.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "version",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "capabilityVersion",
+ "attributeDescription": "Deprecated attribute. Use the capabilityVersion attribute to define the version number of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "patchLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Patch level of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "source",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Supplier of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "IntegrationGroup",
+ "EventBroker",
+ "DatabaseManager",
+ "DataManager",
+ "APIManager",
+ "CohortMember",
+ "SoftwareService",
+ "NetworkGateway",
+ "Application",
+ "EnterpriseAccessLayer",
+ "Engine",
+ "Catalog",
+ "GovernanceEngine"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "CloudService",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ProcessingState",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "PersonRole": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285",
+ "name": "PersonRole",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 3,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec",
+ "name": "Actor",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A role performed by one or more individuals.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the role - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "headCount",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of people that can be appointed to the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of responsibility.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Brief description of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "CrowdSourcingContributor",
+ "NoteLogAuthor",
+ "DigitalServiceManager",
+ "ProjectManager",
+ "GovernanceRole",
+ "TeamLeader",
+ "TeamMember",
+ "CommunityMember"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "CommunityMembership",
+ "ProjectManagement",
+ "PersonRoleAppointment",
+ "GovernanceResponsibilityAssignment",
+ "TeamMembership",
+ "TeamLeadership",
+ "ActionAssignment",
+ "DigitalServiceManagement",
+ "NoteLogAuthorship"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "SchemaAnalysisAnnotation": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "3c5aa68b-d562-4b04-b189-c7b7f0bf2ced",
+ "name": "SchemaAnalysisAnnotation",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4",
+ "name": "Annotation",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A description of the internal structure of an Asset.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "schemaName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the discovered schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "schemaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type name for the discovered schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the findings.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "confidenceLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Level of certainty in the accuracy of the results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "analysisStep",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The step in the pipeline that produced the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "expression",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expression used to create the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "jsonProperties",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties used in the specification.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated attribute. Use the Anchors classification instead.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "annotationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the type of annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties discovered during the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "explanation",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Explanation of the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "DiscoveredDataField",
+ "SchemaTypeDefinition"
+ ],
+ "inheritedRelationshipNames": [
+ "AnnotationReviewLink",
+ "AnnotationExtension",
+ "AnnotationExtension",
+ "RelatedIntegrationReport",
+ "DiscoveredAnnotation",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "GraphVertex": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "1252ce12-540c-4724-ad70-f70940956de0",
+ "name": "GraphVertex",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9",
+ "name": "SchemaAttribute",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A schema attribute for a graph data structure.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "aliases",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "List of aliases for attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "defaultValueOverride",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Initial value for the attribute (overriding the default value of its type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minimumLength",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum length of the data value (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "precision",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of digits after the decimal point.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "length",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Length of the data field (zero means unlimited).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "orderedValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether the values are ordered or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "allowsDuplicateValues",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When multiple occurrences are allowed, indicates whether duplicates of the same value are allowed or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "significantDigits",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of significant digits before the decimal point (zero means it is an integer).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "maxCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Maximum number of occurrences of this attribute allowed (-1 = infinite).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "cardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "maxCardinality",
+ "attributeDescription": "Number of occurrences of this attribute allowed (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "minCardinality",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Minimum number of occurrences of this attribute allowed (0 = optional, 1+ = mandatory).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "nativeClass",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Native class used by the client to represent this element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "sortOrder",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "aaa4df8f-1aca-4de8-9abd-1ef2aadba300",
+ "name": "DataItemSortOrder",
+ "description": "Defines the suggested order that data values in this data item should be sorted by.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "Ascending",
+ "description": "Sort the data values so that they increase in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Descending",
+ "description": "Sort the data values so that they decrease in value."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Ignore",
+ "description": "No specific sort order."
+ }
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Suggested ordering of values in this attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isNullable",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Accepts null values or not.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "displayName",
+ "attributeDescription": "Name of schema attribute (deprecated).",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "position",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Location of the attribute in the parent schema's list of attributes, starting at zero.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "GraphEdgeLink"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SchemaAttributeDefinition",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "NestedSchemaAttribute",
+ "NestedSchemaAttribute",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AttributeForSchema",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "TypeEmbeddedAttribute",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DataSourcePhysicalStatusAnnotation": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "e9ba276e-6d9f-4999-a5a9-9ddaaabfae23",
+ "name": "DataSourcePhysicalStatusAnnotation",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "c85bea73-d7af-46d7-8a7e-cb745910b1df",
+ "name": "DataSourceMeasurementAnnotation",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A set of summary properties about the physical status of an Asset.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "sourceUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the sourceUpdateTime attribute to describe when the data source was last modified.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "size",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Size of the data source.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "sourceCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the sourceCreateTime attribute to describe when the data source was created.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "sourceUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When the data source was last modified.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encoding",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Encoding scheme used on the data.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "sourceCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "When the data source was created.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "dataSourceProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Discovered properties of the data source.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the findings.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "confidenceLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Level of certainty in the accuracy of the results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "analysisStep",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The step in the pipeline that produced the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "expression",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expression used to create the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "jsonProperties",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties used in the specification.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated attribute. Use the Anchors classification instead.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "annotationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the type of annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties discovered during the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "explanation",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Explanation of the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "AnnotationReviewLink",
+ "AnnotationExtension",
+ "AnnotationExtension",
+ "RelatedIntegrationReport",
+ "DiscoveredAnnotation",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "MetadataCollection": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "ea3b15af-ed0e-44f7-91e4-bdb299dd4976",
+ "name": "MetadataCollection",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1449911c-4f44-4c22-abc0-7540154feefb",
+ "name": "DataSet",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A data set containing metadata.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "metadataCollectionId",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "managedMetadataCollectionId",
+ "attributeDescription": "Deprecated attribute. Use the managedMetadataCollectionId attribute to define the unique identifier for the metadata collection managed in the local repository.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "managedMetadataCollectionId",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the metadata collection managed in the local repository.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula used to create the data set - can reference query identifiers located in DataContentForDataSet relationships.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "CohortMemberMetadataCollection"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "GovernanceResults",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "GovernanceMeasurementsResultsDataSet",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GovernanceControl": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3",
+ "name": "GovernanceControl",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8",
+ "name": "GovernanceDefinition",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "An implementation of a governance capability.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "implementationDescription",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of how this governance control should be implemented.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short summary of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "implications",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Impact on the organization, people and services when adopting the recommendation in this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "outcomes",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expected outcomes.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Scope of impact for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Detailed description of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "title",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Title describing the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "priority",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Relative importance of this governance definition compared to its peers.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "results",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Actual results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "OrganizationalControl",
+ "TechnicalControl"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "GovernanceImplementation",
+ "GovernanceControlLink",
+ "GovernanceControlLink"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "GovernanceDefinitionMetric",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "ExecutionPointUse",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DeployedDatabaseSchema": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "eab811ec-556a-45f1-9091-bc7ac8face0f",
+ "name": "DeployedDatabaseSchema",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "1449911c-4f44-4c22-abc0-7540154feefb",
+ "name": "DataSet",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A collection of database tables and views running in a database server.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula used to create the data set - can reference query identifiers located in DataContentForDataSet relationships.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "GovernanceResults",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "GovernanceMeasurementsResultsDataSet",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DeployedAPI": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "7dbb3e63-138f-49f1-97b4-66313871fc14",
+ "name": "DeployedAPI",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "896d14c2-7522-4f6c-8519-757711943fe6",
+ "name": "Asset",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A callable interface running at an endpoint.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [
+ "RequestResponseInterface",
+ "PublisherInterface",
+ "ListenerInterface"
+ ],
+ "relationshipNames": [
+ "APIEndpoint"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DivergentAttachmentClassificationAnnotation": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "a2a5cb74-f8e0-470f-be71-26b7e32166a6",
+ "name": "DivergentAttachmentClassificationAnnotation",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "f3ed48bc-b0ea-4e1f-a8ab-75f9f3cf87a6",
+ "name": "DivergentAttachmentAnnotation",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Annotation documenting differences in a classification of an attachment of acknowledged duplicates.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2018-01-18T22:04:00.008+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "divergentClassificationName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the classification where a difference has been found.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "divergentClassificationPropertyNames",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Names of the properties where a difference has been found.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "attachmentGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier of the attachment where the differences have been found.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "duplicateAttachmentGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier of the attachment in the duplicate where the differences have been found.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "duplicateAnchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier of the duplicate where the differences have been found.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the findings.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "confidenceLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Level of certainty in the accuracy of the results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "analysisStep",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The step in the pipeline that produced the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "expression",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expression used to create the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "jsonProperties",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties used in the specification.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated attribute. Use the Anchors classification instead.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "annotationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the type of annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties discovered during the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "explanation",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Explanation of the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "AnnotationReviewLink",
+ "AnnotationExtension",
+ "AnnotationExtension",
+ "RelatedIntegrationReport",
+ "DiscoveredAnnotation",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "TermsAndConditions": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "2ddc42d3-7791-4b4e-a064-91df9300290a",
+ "name": "TermsAndConditions",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "The set of entitlements, restrictions and obligations associated with an agreement, license etc.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "entitlements",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The list of rights and permissions granted.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "restrictions",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The list of limiting conditions or measures imposed.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "obligations",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The list of actions, duties or commitments required.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short name for the terms and conditions.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "An overview of the terms and conditions.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "AttachedTermsAndConditions"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ComplexSchemaType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "786a6199-0ce8-47bf-b006-9ace1c5510e4",
+ "name": "ComplexSchemaType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f",
+ "name": "SchemaType",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A schema type that has a complex structure of nested attributes and types.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "namespace",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Prefix for element names to ensure uniqueness.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionNumber",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version of the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "author",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "User name of the person or process that created the schema type.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Guidance on how the schema should be used.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "encodingStandard",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the schema.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "isDeprecated",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "3863f010-611c-41fe-aaae-5d4d427f863b",
+ "name": "boolean",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_BOOLEAN"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "This element may still be used but is flagged that it will be removed at some point in the future.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Optional identification of the Asset that this schema element is a part of.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "RootSchemaType",
+ "GraphSchemaType",
+ "RelationalTableType",
+ "StructSchemaType",
+ "APIParameterList"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [
+ "AttributeForSchema"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "APIResponse",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "DerivedSchemaTypeQueryTarget",
+ "DerivedSchemaTypeQueryTarget",
+ "MapToElementType",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "LinkedExternalSchemaType",
+ "LinkedExternalSchemaType",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "MapFromElementType",
+ "SchemaTypeDefinition",
+ "SchemaTypeOption",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "SchemaTypeImplementation",
+ "APIHeader",
+ "ImplementedBy",
+ "ImplementedBy",
+ "APIRequest",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "SolutionPortSchema",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "SchemaAttributeType",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "PortSchema",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "CalculatedValue",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "InstanceMetadata",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "CohortMember": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "42063797-a78a-4720-9353-52026c75f667",
+ "name": "CohortMember",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "fe30a033-8f86-4d17-8986-e6166fa24177",
+ "name": "SoftwareServerCapability",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A capability enabling a server to access an open metadata repository cohort.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "protocolVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the protocol supported by the cohort registry.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "version",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "capabilityVersion",
+ "attributeDescription": "Deprecated attribute. Use the capabilityVersion attribute to define the version number of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "patchLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Patch level of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "source",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Supplier of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "MetadataCohortPeer",
+ "CohortMemberMetadataCollection"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "CloudService",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ProcessingState",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GovernanceRole": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee",
+ "name": "GovernanceRole",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 3,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285",
+ "name": "PersonRole",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Describes a set of goals, tasks and skills that can be assigned a person and contribute to the governance of a resource.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the role - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "headCount",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of people that can be appointed to the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of responsibility.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Brief description of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "SubjectAreaOwner",
+ "LocationOwner",
+ "GovernanceRepresentative",
+ "ComponentOwner",
+ "BusinessOwner",
+ "AssetOwner",
+ "DataItemOwner",
+ "SolutionOwner",
+ "GovernanceOfficer"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "CommunityMembership",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "ProjectManagement",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "PersonRoleAppointment",
+ "GovernanceResponsibilityAssignment",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "TeamMembership",
+ "TeamLeadership",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "DigitalServiceManagement",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "NoteLogAuthorship",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "OrganizationalControl": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "befa1458-79b8-446a-b813-536700e60fa8",
+ "name": "OrganizationalControl",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3",
+ "name": "GovernanceControl",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A governance control that is implemented using organization structure, training, roles manual procedures and reviews.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "implementationDescription",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of how this governance control should be implemented.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short summary of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "implications",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Impact on the organization, people and services when adopting the recommendation in this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "outcomes",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expected outcomes.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Scope of impact for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Detailed description of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "title",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Title describing the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "priority",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Relative importance of this governance definition compared to its peers.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "results",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Actual results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "GovernanceProcedure",
+ "GovernanceResponsibility"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "GovernanceDefinitionMetric",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "GovernanceImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "ExecutionPointUse",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "GovernanceControlLink",
+ "GovernanceControlLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "ControlledGlossaryTerm": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "c04e29b2-2d66-48fc-a20d-e59895de6040",
+ "name": "ControlledGlossaryTerm",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a",
+ "name": "GlossaryTerm",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Defines a glossary term that is developed through a controlled workflow.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PREPARED",
+ "PROPOSED",
+ "APPROVED",
+ "REJECTED",
+ "ACTIVE",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "userDefinedStatus",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Extend or replace the valid instance statuses with additional statuses controlled through valid metadata values.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Consumable name for the glossary term, suitable for reports and user interfaces.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short description of the glossary term.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Full description of the glossary term.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "examples",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Examples of this glossary term in use.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "abbreviation",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "How this glossary term is abbreviated.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "usage",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Further guidance on the use of this glossary term.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "GlossaryTermEvolution"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "ReplacementTerm",
+ "ReplacementTerm",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "TermTYPEDBYRelationship",
+ "TermTYPEDBYRelationship",
+ "Synonym",
+ "Synonym",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "IsATypeOfRelationship",
+ "IsATypeOfRelationship",
+ "RelatedTerm",
+ "RelatedTerm",
+ "LibraryTermReference",
+ "ImplementedBy",
+ "ImplementedBy",
+ "TermAnchor",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "Translation",
+ "Translation",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "PreferredTerm",
+ "PreferredTerm",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "ValidValue",
+ "ValidValue",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "TermCategorization",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Antonym",
+ "Antonym",
+ "GlossaryTermEvolution",
+ "ISARelationship",
+ "ISARelationship",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "TermHASARelationship",
+ "TermHASARelationship",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "SpineAttribute",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "ContextDefinition",
+ "FileManager",
+ "GovernanceExpectations",
+ "SpineObject",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "PrimaryCategory",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "ObjectIdentifier",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "DataValue",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "ActivityDescription",
+ "PrimeWord",
+ "AbstractConcept",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "ElementSupplement",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "EmbeddedProcess": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "8145967e-bb83-44b2-bc8c-68112c6a5a06",
+ "name": "EmbeddedProcess",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050",
+ "name": "Process",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A child process.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "formulaType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Format of the expression provided in the formula attribute.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name of the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "formula",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Formula for the process",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [
+ "TransientEmbeddedProcess"
+ ],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "ProcessPort",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "SchemaTypeImplementation",
+ "ImplementedBy",
+ "ImplementedBy",
+ "GovernanceProcessImplementation",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "ProcessHierarchy",
+ "ProcessHierarchy",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "MetadataRepositoryService": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "27891e52-1255-4a33-98a2-377717a25334",
+ "name": "MetadataRepositoryService",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "f3f69251-adb1-4042-9d95-70082f95a028",
+ "name": "SoftwareService",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Provides access to a metadata repository - either local or remote.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "type",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "deployedImplementationType",
+ "attributeDescription": "Deprecated attribute. Use the deployedImplementationType attribute to describe the type of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "version",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "capabilityVersion",
+ "attributeDescription": "Deprecated attribute. Use the capabilityVersion attribute to define the version number of software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "deployedImplementationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of implemented or deployed software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "capabilityVersion",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version number of the software capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "patchLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Patch level of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "source",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Supplier of the software server capability.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "SupportedSoftwareCapability",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "CloudService",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ProcessingState",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "QualityAnnotation": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "72e6473d-4ce0-4609-80a4-e6e949a7f520",
+ "name": "QualityAnnotation",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0",
+ "name": "DataFieldAnnotation",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A calculation of the level of quality found in the values stored in an Asset.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualityDimension",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Type of quality calculation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualityScore",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Calculated quality value.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the findings.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "confidenceLevel",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Level of certainty in the accuracy of the results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "analysisStep",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The step in the pipeline that produced the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "expression",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expression used to create the annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "jsonProperties",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties used in the specification.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "anchorGUID",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated attribute. Use the Anchors classification instead.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "annotationType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the type of annotation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties discovered during the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "explanation",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Explanation of the analysis.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "DataFieldAnalysis",
+ "AnnotationReviewLink",
+ "AnnotationExtension",
+ "AnnotationExtension",
+ "RelatedIntegrationReport",
+ "DiscoveredAnnotation",
+ "TranslationLink",
+ "GovernanceActionRequestSource",
+ "ExternalIdLink",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "Memento",
+ "Anchors"
+ ]
+ },
+ "Regulation": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "e3c4293d-8846-4500-b0c0-197d73aba8b0",
+ "name": "Regulation",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "c403c109-7b6b-48cd-8eee-df445b258b33",
+ "name": "GovernanceDriver",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Identifies a regulation related to data that must be supported.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "jurisdiction",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Issuing authority for the regulation.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short summary of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "implications",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Impact on the organization, people and services when adopting the recommendation in this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "outcomes",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expected outcomes.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Scope of impact for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Detailed description of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "title",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Title describing the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "priority",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Relative importance of this governance definition compared to its peers.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "results",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Actual results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "RegulationCertificationType"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "GovernanceDriverLink",
+ "GovernanceDriverLink",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "GovernanceDefinitionMetric",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "ExecutionPointUse",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceResponse",
+ "GovernanceDefinitionScope",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "GovernanceProcess": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "b68b5d9d-6b79-4f3a-887f-ec0f81c54aea",
+ "name": "GovernanceProcess",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "d8f6eb5b-36f0-49bd-9b25-bf16f370d1ec",
+ "name": "TechnicalControl",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "Technical control expressed as a sequence of tasks.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "implementationDescription",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of how this governance control should be implemented.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short summary of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "implications",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Impact on the organization, people and services when adopting the recommendation in this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "outcomes",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expected outcomes.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Scope of impact for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Detailed description of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "title",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Title describing the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "priority",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Relative importance of this governance definition compared to its peers.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "results",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Actual results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "GovernanceProcessImplementation"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "GovernanceDefinitionMetric",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "GovernanceImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "ExecutionPointUse",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "GovernanceControlLink",
+ "GovernanceControlLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "Community": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "fbd42379-f6c3-4f08-b6f7-378565cda993",
+ "name": "Community",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A group of people with a common interest or skill.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the community.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the community.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "mission",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Purpose of the community.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [
+ "CommunityMembership"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "BusinessOwner": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "0e83bb5f-f2f5-4a85-92eb-f71e92a181f5",
+ "name": "BusinessOwner",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee",
+ "name": "GovernanceRole",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A role defining a responsibility to manage a part of the organization's business. Often responsible for profit and loss",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the role - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "headCount",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Number of people that can be appointed to the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Breadth of responsibility.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Name of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Brief description of the role.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "CommunityMembership",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "ProjectManagement",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "PersonRoleAppointment",
+ "GovernanceResponsibilityAssignment",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "TeamMembership",
+ "TeamLeadership",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProjectTeam",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "ActionAssignment",
+ "ActionAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "DigitalServiceManagement",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "AgreementActor",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "NoteLogAuthorship",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "DataFeed": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "e87836ad-f8bd-4c52-aecd-0f1872c692e5",
+ "name": "DataFeed",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "896d14c2-7522-4f6c-8519-757711943fe6",
+ "name": "Asset",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A data source that provides a constant stream of data, such as a sensor monitoring the environment.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "Egeria",
+ "createTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "Location": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628",
+ "name": "Location",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 2,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf",
+ "name": "Referenceable",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A physical place, digital location or area.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "updatedBy": "Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "updateTime": "2020-04-30T15:42:46.992+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "identifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Code value or symbol used to identify the location - typically unique.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "displayName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Consumable name for reports and user interfaces.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the location.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [
+ "CyberLocation",
+ "SecureLocation",
+ "FixedLocation"
+ ],
+ "relationshipNames": [
+ "AssetLocation",
+ "NestedLocation",
+ "NestedLocation",
+ "ProfileLocation",
+ "AdjacentLocation",
+ "AdjacentLocation"
+ ],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "GovernanceActionRequestSource",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "Criticality",
+ "UserProfileManager",
+ "FileManager",
+ "GovernanceExpectations",
+ "VerificationPoint",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "PolicyAdministrationPoint",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "Campaign",
+ "PolicyDecisionPoint",
+ "Ownership",
+ "PrimeWord",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "AvroFile": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "75293260-3373-4777-af7d-7274d5c0b9a5",
+ "name": "AvroFile",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f",
+ "name": "DataFile",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A description of a file that follows the Apache Avro specification.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "ACTIVE",
+ "DELETED"
+ ],
+ "initialStatus": "ACTIVE"
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "fileName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The name of the file with extension.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "fileType",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "File type descriptor typically extracted from the file name.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "pathName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "The fully qualified physical location of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "modifiedTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeUpdateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeUpdateTime attribute to define the last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeUpdateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Last known modification time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "createTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "storeCreateTime",
+ "attributeDescription": "Deprecated attribute. Use the storeCreateTime attribute to describe the creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "storeCreateTime",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "1bef35ca-d4f9-48db-87c2-afce4649362d",
+ "name": "date",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_DATE"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Creation time of the data store.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "owner",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Person, team or engine responsible for this type of action. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "ownerType",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "9548390c-69f5-4dc6-950d-6feeee257b56",
+ "name": "AssetOwnerType",
+ "description": "Defines the type of identifier for an asset's owner.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "UserId",
+ "description": "The owner's userId is specified (default)."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "ProfileId",
+ "description": "The unique identifier (guid) of the profile of the owner."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another type of owner identifier, probably not supported by open metadata."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Type of element representing the owner. Use Ownership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "latestChange",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. Description of the last change to the asset's metadata. Use LatestChange classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "zoneMembership",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "attributeDescription": "Deprecated Attribute. The list of zones that this asset belongs to. Use AssetZoneMembership classification",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "versionIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Version identifier to allow different versions of the same resource to appear in the catalog as separate assets.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "name",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Display name for the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the asset.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map",
+ "description": "A map from String to String.",
+ "collectionDefCategory": "OM_COLLECTION_MAP",
+ "argumentCount": 2,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING",
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Additional properties for the element.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ],
+ "subTypeNames": [],
+ "classificationNames": [],
+ "relationshipNames": [],
+ "inheritedRelationshipNames": [
+ "UsedInContext",
+ "AttachedComment",
+ "DeployedOn",
+ "DataContentForDataSet",
+ "MoreInformation",
+ "MoreInformation",
+ "DigitalServiceOperator",
+ "ProcessCall",
+ "ProcessCall",
+ "PeerDuplicateLink",
+ "PeerDuplicateLink",
+ "RelatedIntegrationReport",
+ "SourcedFrom",
+ "SourcedFrom",
+ "TranslationLink",
+ "ExternalIdScope",
+ "AssetSchemaType",
+ "DataFlow",
+ "DataFlow",
+ "CollectionMembership",
+ "ApprovedPurpose",
+ "TargetForAction",
+ "Stakeholder",
+ "Stakeholder",
+ "RelationshipAnnotation",
+ "RelationshipAnnotation",
+ "DataProcessingSpecification",
+ "ConnectionToAsset",
+ "GovernanceActionRequestSource",
+ "ServerAssetUse",
+ "ImplementedBy",
+ "ImplementedBy",
+ "ITInfrastructureProfile",
+ "NestedFile",
+ "ReferenceableFacet",
+ "License",
+ "DigitalServiceProduct",
+ "ToDoSource",
+ "DataProcessingTarget",
+ "ReferenceValueAssignment",
+ "Actions",
+ "SoftwarePackageDependency",
+ "ControlFlow",
+ "ControlFlow",
+ "AssociatedSnippet",
+ "ExternalIdLink",
+ "ResourceList",
+ "ResourceList",
+ "DesignModelImplementation",
+ "AssetLocation",
+ "AssignmentScope",
+ "AssignmentScope",
+ "ValidValuesImplementation",
+ "AssociatedLog",
+ "AssociatedLog",
+ "ExternalReferenceLink",
+ "MediaReference",
+ "AgreementItem",
+ "AttachedTermsAndConditions",
+ "InformationSupplyChainLink",
+ "InformationSupplyChainLink",
+ "GovernedBy",
+ "LinkedFile",
+ "ProcessOutput",
+ "LineageMapping",
+ "LineageMapping",
+ "ValidValuesAssignment",
+ "Certification",
+ "ConsolidatedDuplicateLink",
+ "ConsolidatedDuplicateLink",
+ "Meetings",
+ "SearchKeywordLink",
+ "AttachedRating",
+ "DataClassAssignment",
+ "AttachedNoteLog",
+ "CrowdSourcingContribution",
+ "SemanticAssignment",
+ "IncidentOriginator",
+ "AttachedTag",
+ "ActionTarget",
+ "GovernanceDefinitionScope",
+ "ImpactedResource",
+ "AssetDiscoveryReport",
+ "AttachedLike",
+ "SupplementaryProperties",
+ "DigitalSubscriber",
+ "CatalogTarget"
+ ],
+ "inheritedClassificationNames": [
+ "LineageLog",
+ "KnownDuplicate",
+ "PolicyEnforcementPoint",
+ "BusinessSignificant",
+ "LineageLogFile",
+ "Criticality",
+ "DataStoreEncoding",
+ "MeteringLog",
+ "UserProfileManager",
+ "AssetOrigin",
+ "FileManager",
+ "GovernanceExpectations",
+ "LogAnalysis",
+ "VerificationPoint",
+ "MobileAsset",
+ "GovernanceMeasurements",
+ "DigitalProduct",
+ "PolicyRetrievalPoint",
+ "ChangeManagementLibrary",
+ "Retention",
+ "SourceControlLibrary",
+ "LatestChange",
+ "ClassWord",
+ "AuditLogFile",
+ "SoftwareLibrary",
+ "AssetManager",
+ "ControlPoint",
+ "SecurityTags",
+ "ReferenceData",
+ "PolicyAdministrationPoint",
+ "AuditLog",
+ "Template",
+ "EnforcementPoint",
+ "ContentCollectionManager",
+ "Confidence",
+ "FileSystem",
+ "Impact",
+ "NotificationManager",
+ "ExceptionLogFile",
+ "Campaign",
+ "MeteringLogFile",
+ "PolicyDecisionPoint",
+ "ExceptionBacklog",
+ "Ownership",
+ "PrimeWord",
+ "AssetZoneMembership",
+ "Memento",
+ "SubjectArea",
+ "ConsolidatedDuplicate",
+ "Modifier",
+ "Incomplete",
+ "MasterDataManager",
+ "UserAccessDirectory",
+ "PolicyInformationPoint",
+ "Anchors",
+ "Confidentiality"
+ ]
+ },
+ "CertificationType": {
+ "entityDef": {
+ "class": "EntityDef",
+ "headerVersion": 1,
+ "guid": "97f9ffc9-e2f7-4557-ac12-925257345eea",
+ "name": "CertificationType",
+ "status": "ACTIVE_TYPEDEF",
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENTITY_DEF",
+ "superType": {
+ "headerVersion": 1,
+ "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8",
+ "name": "GovernanceDefinition",
+ "status": "ACTIVE_TYPEDEF"
+ },
+ "description": "A specific type of certification required by a regulation.",
+ "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e",
+ "createdBy": "ODPi Egeria",
+ "createTime": "2020-01-01T13:42:11.090+00:00",
+ "validInstanceStatusList": [
+ "DRAFT",
+ "PROPOSED",
+ "APPROVED",
+ "ACTIVE",
+ "DEPRECATED",
+ "OTHER",
+ "DELETED"
+ ],
+ "initialStatus": "DRAFT",
+ "propertiesDefinition": [
+ {
+ "headerVersion": 1,
+ "attributeName": "details",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Description of the requirements associated with the certification.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ }
+ ]
+ },
+ "inheritedAttributes": [
+ {
+ "headerVersion": 1,
+ "attributeName": "summary",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Short summary of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "implications",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Impact on the organization, people and services when adopting the recommendation in this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domainIdentifier",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35",
+ "name": "int",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Identifier of the governance domain that this definition belongs to.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "outcomes",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Expected outcomes.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "scope",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Scope of impact for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "domain",
+ "attributeType": {
+ "class": "EnumDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "ENUM_DEF",
+ "guid": "baa31998-f3cb-47b0-9123-674a701e87bc",
+ "name": "GovernanceDomain",
+ "description": "Defines the governance domains that open metadata seeks to unite.",
+ "elementDefs": [
+ {
+ "headerVersion": 1,
+ "ordinal": 0,
+ "value": "All",
+ "description": "Relevant to all governance domains."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 1,
+ "value": "Data",
+ "description": "The data (information) governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 2,
+ "value": "Privacy",
+ "description": "The data privacy domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 3,
+ "value": "Security",
+ "description": "The security governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 4,
+ "value": "ITInfrastructure",
+ "description": "The IT infrastructure governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 5,
+ "value": "SoftwareDevelopment",
+ "description": "The software development lifecycle governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 6,
+ "value": "Corporate",
+ "description": "The corporate governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 7,
+ "value": "AssetManagement",
+ "description": "The physical asset management governance domain."
+ },
+ {
+ "headerVersion": 1,
+ "ordinal": 99,
+ "value": "Other",
+ "description": "Another governance domain."
+ }
+ ]
+ },
+ "attributeStatus": "DEPRECATED_ATTRIBUTE",
+ "replacedByAttribute": "domainIdentifier",
+ "attributeDescription": "Deprecated. Governance domain for this governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "description",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Detailed description of the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "title",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Title describing the governance definition.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "priority",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Relative importance of this governance definition compared to its peers.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "results",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "0428b5d3-f824-459c-b7f5-f8151de59707",
+ "name": "array",
+ "description": "An array of Strings.",
+ "collectionDefCategory": "OM_COLLECTION_ARRAY",
+ "argumentCount": 1,
+ "argumentTypes": [
+ "OM_PRIMITIVE_TYPE_STRING"
+ ]
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Actual results.",
+ "valuesMinCount": 0,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "AT_MOST_ONE",
+ "unique": false,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "qualifiedName",
+ "attributeType": {
+ "class": "PrimitiveDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "PRIMITIVE",
+ "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4",
+ "name": "string",
+ "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING"
+ },
+ "attributeStatus": "ACTIVE_ATTRIBUTE",
+ "attributeDescription": "Unique identifier for the entity.",
+ "valuesMinCount": 1,
+ "valuesMaxCount": 1,
+ "attributeCardinality": "ONE_ONLY",
+ "unique": true,
+ "indexable": true
+ },
+ {
+ "headerVersion": 1,
+ "attributeName": "additionalProperties",
+ "attributeType": {
+ "class": "CollectionDef",
+ "headerVersion": 1,
+ "version": 1,
+ "versionName": "1.0",
+ "category": "COLLECTION",
+ "guid": "005c7c14-ac84-4136-beed-959401b041f8",
+ "name": "map